| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| Expand Up | @@ -606,7 +606,10 @@ def __init__(self, name, *constraints, bound=None, | |
| self.__bound__ = _type_check(bound, "Bound must be a type.") | ||
| else: | ||
| self.__bound__ = None | ||
| def_mod = sys._getframe(1).f_globals['__name__'] # for pickling | ||
| try: | ||
| def_mod = sys._getframe(1).f_globals.get('__name__', '__main__') # for pickling | ||
|
Comment thread
Copy link
Copy Markdown
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Choose a reason Spam Abuse Off Topic Outdated Duplicate Resolved Low QualityI don't think it's safe to assume __name__ is __main__ when it's not defined here. I think other classes like enums make the class unpickable when __name__ cannot be determined.
Sorry, something went wrong.
All reactions
Copy link
Copy Markdown
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Choose a reason Spam Abuse Off Topic Outdated Duplicate Resolved Low QualityI think '__main__' is fine. By the way a similar code is used by TypedDict and NamedTuple, so you can copy it here. Or maybe it would even make sense to factor this out in an internal helper function doing this: try:
module = sys._getframe(1).f_globals.get('__name__', '__main__')
except (AttributeError, ValueError):
module = None
Sorry, something went wrong.
All reactions
|
||
| except (AttributeError, ValueError): | ||
| def_mod = None | ||
| if def_mod != 'typing': | ||
| self.__module__ = def_mod | ||
|
|
||
| Expand Down | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| Set "__main__" as the default module name when "__name__" is missing in | ||
| :class:`typing.TypeVar`. Patch by Weipeng Hong. |
| Back | FazBrowse Home | New Git URL |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Choose a reason Spam Abuse Off Topic Outdated Duplicate Resolved Low Qualitywould be more like the other tests
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.