This commit is contained in:
Carlos Horn 2025-06-10 22:08:16 +07:00 committed by GitHub
commit 5813524d3d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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