Add __reduce__ method in virtual pip root due to lazy loading
Fixes pickling issue #32159 Tested manually: just applied patch to tensorflow nightly and checked required imports. PiperOrigin-RevId: 276301497 Change-Id: I6b3b6ae8b1218b43c31403ea7cc595ed11136ff9
This commit is contained in:
parent
f11328078f
commit
353b8a1adc
@ -54,6 +54,9 @@ class _LazyLoader(_types.ModuleType):
|
||||
module = self._load()
|
||||
return dir(module)
|
||||
|
||||
def __reduce__(self):
|
||||
return __import__, (self.__name__,)
|
||||
|
||||
|
||||
# Forwarding a module is as simple as lazy loading the module from the new path
|
||||
# and then registering it to sys.modules using the old path
|
||||
|
@ -54,6 +54,9 @@ class _LazyLoader(_types.ModuleType):
|
||||
module = self._load()
|
||||
return dir(module)
|
||||
|
||||
def __reduce__(self):
|
||||
return __import__, (self.__name__,)
|
||||
|
||||
|
||||
# Forwarding a module is as simple as lazy loading the module from the new path
|
||||
# and then registering it to sys.modules using the old path
|
||||
|
Loading…
Reference in New Issue
Block a user