This commit is contained in:
Carlos Horn 2025-12-18 10:30:42 +01:00 committed by GitHub
commit de219f460a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4951,7 +4951,7 @@ def _resolve_calling_module():
def _resolve_calling_package_name():
module = _resolve_calling_module()
return module.__package__
return getattr(module, "__package__", None)
cpdef _copy_parent(object from_, object to, dict memo):