-
Notifications
You must be signed in to change notification settings - Fork 59
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
Help wanted - sign up here! #94
Comments
Hello, I am a frequent user of this tool and would really love to help out. I can start with investigating what support is needed for anything after Python 3.6 as well as adding automated tests. |
@mschleu Hi! Thanks for the interest! Automated tests would be much appreciated! If I recall, Python 3.7 didn't change the AST, but 3.8 did. To help get started on support for 3.8+, see my notes in #51, in Technologicat/unpythonic#1 (comment), and optionally also the source code of mcpyrate.unparser. |
@Technologicat Great, thank you for the material. I will get started on it this week. |
@mschleu Ok. Let me know if you have any questions. I've done a fair bit of work with the AST (up to Python 3.10) in |
Hello! Thank you for your hard work! |
For several years now, I have no longer had the resources to actively contribute to the codebase of
pyan
, as I have not needed the tool myself.Since there is a continuing community interest in
pyan
, I would like to hand over development to the community. Therefore, as posted in README.md as of November 2023, thepyan
project is looking for volunteer contributors.While I have no time to work on the codebase, I will remain available to discuss the design and issues, review PRs, and possibly provide help with Python metaprogramming, provided that my free time allows (which is not 100% guaranteed).
If you are interested in helping, post a comment here, and we'll work out the details. See also #52 (general discussion of the future of
pyan
) and #63 (setting up PyPI write access).What you will need to be prepared for:
:=
walrus operator.pyan
's analyzer does not know about it, thus missing some assignments. Adding that would be a good place to start.symtable
to not report the scopes for comprehensions (issue with list comprehension in python 3.12 #93).pyan
.Examples of things that need doing:
pyan
is trying too hard to be a dynamic analyzer (simple is better than complex). Briefly put, it shouldn't even attempt anything that, if done manually, would require running code in your head. Looking at definitions, and at their placement in the source code, and drawing conclusions from that information, is all that a static analyzer should do.The text was updated successfully, but these errors were encountered: