-
Notifications
You must be signed in to change notification settings - Fork 29
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
Hundread of files that are properly parsed(or not) in opposite to Python 3.11.2 #66
Comments
Compilation involves further processing. Something might be valid syntactically but in later stages the compiler might reject it due to additional rules that come into play when bytecode is to be generated. This comparison might make more sense using the rest of the implementation in RustPython whereby you can actually test compile vs compile instead of compile vs parse. If you only care about parsing, you could re-do the test using CPython's parser. I'll close for now, feel free to open again if I missed something or if you re-run the test with CPython's parser and you do actually find discrepancies. Thanks! |
@DimitrisJim Because we actually have parser incompatibility, the test set looks very useful. @qarmin Rather than py_compile, using ast will make more sense to exclude compile step |
@qarmin Do you know about the license of the test set? It will be helpful if we can include it to our test suite. |
This files(or minimized part of them) I took from most popular pypi libraries, so licenses are mixed. How to parse file in python? Chatgpt provide this solution, but don't know if this is proper
|
When using |
Thanks a lot! I am sorry for late response. I am also trying to make a tool to do it easier. |
You can make a compatibility test like this: |
d23611d
When parsing with this repo multiple files, I found that sometimes python cannot parse file but this library can and vice versa.
Command to check if python can parse file
Code to check if parser can parse file
Only ~3% files from pack, can be parsed by python, but not rustpython parser
Pack 644 files - OUTPUT_FILES.zip
Example files and errors
The text was updated successfully, but these errors were encountered: