-
Notifications
You must be signed in to change notification settings - Fork 65
New issue
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
Circular fix applied involving Path and ComparePrimitivesByEqual #375
Labels
bug
Something isn't working
Comments
llllvvuu
added a commit
to llllvvuu/Fixit
that referenced
this issue
Sep 7, 2023
…d of QualifiedName fixes Instagram#378 and Instagram#375 which are caused by Instagram/LibCST#389. Qualifying a name will never make some thing that wasn't already True/False/None into a True/False/None: ```python import libcst as cst from libcst.metadata.name_provider import QualifiedNameProvider from textwrap import dedent wrapper = cst.MetadataWrapper( cst.parse_module(dedent( ''' x = None x() ''' )) ) x_ref = wrapper.module.body[1].body[0].value print(wrapper.resolve(QualifiedNameProvider)[x_ref]()) ``` prints: ```python {QualifiedName(name='x', source=<QualifiedNameSource.LOCAL: 3>)} ```
amyreese
added a commit
to llllvvuu/Fixit
that referenced
this issue
Oct 17, 2023
…d of QualifiedName fixes Instagram#378 and Instagram#375 which are caused by Instagram/LibCST#389. Qualifying a name will never make some thing that wasn't already True/False/None into a True/False/None: ```python import libcst as cst from libcst.metadata.name_provider import QualifiedNameProvider from textwrap import dedent wrapper = cst.MetadataWrapper( cst.parse_module(dedent( ''' x = None x() ''' )) ) x_ref = wrapper.module.body[1].body[0].value print(wrapper.resolve(QualifiedNameProvider)[x_ref]()) ``` prints: ```python {QualifiedName(name='x', source=<QualifiedNameSource.LOCAL: 3>)} ``` Co-authored-by: Amethyst Reese <[email protected]>
amyreese
added a commit
that referenced
this issue
Oct 17, 2023
…d of QualifiedName (#391) fixes #378 and #375 which are caused by Instagram/LibCST#389. Qualifying a name will never make some thing that wasn't already True/False/None into a True/False/None: ```python import libcst as cst from libcst.metadata.name_provider import QualifiedNameProvider from textwrap import dedent wrapper = cst.MetadataWrapper( cst.parse_module(dedent( ''' x = None x() ''' )) ) x_ref = wrapper.module.body[1].body[0].value print(wrapper.resolve(QualifiedNameProvider)[x_ref]()) ``` prints: ```python {QualifiedName(name='x', source=<QualifiedNameSource.LOCAL: 3>)} ``` Co-authored-by: Amethyst Reese <[email protected]>
This should be fixed by #391 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Create a
testcase.py
file:Run the following command once:
You will get the first output:
Run the command again, you will get this second set of fixes back to the original:
Run the command over and over again, it will keep suggesting and applying the fix in the circular manner repeatedly.
libcst 1.0.1
fixit 2.0.0.post1
The text was updated successfully, but these errors were encountered: