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
# source: pypa/setuptools, copyright their, license: MIT import ast m = ast.parse(""" import setuptools if __name__ == '__main__': here and os.chdir(here) dist = setuptools.setup(**setup_params) """) import peval from peval.highlevelapi import _run_components import astor r, v = _run_components(m, {}) print(astor.to_source(r, indent_with='\t',), v)
results in
import setuptools if __name__ == '__main__': here and os.chdir(here)
and the dict is {}
{}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
results in
and the dict is
{}
The text was updated successfully, but these errors were encountered: