We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Python 3.9.5 (default, Jun 4 2021, 12:28:51) Type 'copyright', 'credits' or 'license' for more information IPython 8.1.1 -- An enhanced Interactive Python. Type '?' for help. In [1]: import sys ...: from executing import Source, __version__ ...: ...: ...: def get_node(): ...: frame = sys._getframe(1) ...: return Source.executing(frame).node ...: ...: ...: node = get_node() ...: print(node) ...: None In [2]: __version__ Out[2]: '1.1.0'
Used to work with v1.0.0
Python 3.9.5 (default, Jun 4 2021, 12:28:51) Type 'copyright', 'credits' or 'license' for more information IPython 8.1.1 -- An enhanced Interactive Python. Type '?' for help. In [1]: import sys ...: from executing import Source, __version__ ...: ...: ...: def get_node(): ...: frame = sys._getframe(1) ...: return Source.executing(frame).node ...: ...: ...: node = get_node() ...: print(node) ...: <ast.Call object at 0x7fb7de6748b0> In [2]: __version__ Out[2]: '1.0.0'
The text was updated successfully, but these errors were encountered:
Related: pwwang/datar#149
Sorry, something went wrong.
2858910
Released fix in 1.1.1
No branches or pull requests
Used to work with v1.0.0
The text was updated successfully, but these errors were encountered: