We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2894552 commit 6864aabCopy full SHA for 6864aab
tlz/_build_tlz.py
@@ -63,7 +63,10 @@ def exec_module(self, module):
63
module.__doc__ = fast_mod.__doc__
64
65
# show file from toolz during introspection
66
- module.__file__ = slow_mod.__file__
+ try:
67
+ module.__file__ = slow_mod.__file__
68
+ except AttributeError:
69
+ pass
70
71
for k, v in fast_mod.__dict__.items():
72
tv = slow_mod.__dict__.get(k)
0 commit comments