This commit is contained in:
Carlos Horn 2025-03-06 17:05:49 +03:00 committed by GitHub
commit c3fca19a01
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -5042,7 +5042,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):