This commit is contained in:
Carlos Horn 2025-06-22 02:57:08 +02:00 committed by GitHub
commit f555ffedd3
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):