Skip to content
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

Support standard library (Attempt 3) #109

Closed
Show file tree
Hide file tree
Changes from 17 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
187fb13
Support standard library (attempt two, with customizable class attrib…
tristanlatr Apr 15, 2024
b2c6064
Fix compat
tristanlatr Apr 15, 2024
b6e6375
Fix _validate_comprehension
tristanlatr Apr 15, 2024
1902d9d
Typo
tristanlatr Apr 19, 2024
c174074
Make Def, DefUseChains, UseDefChains and Ancestors work out of the bo…
tristanlatr May 3, 2024
797ee08
Remove useless code
tristanlatr May 3, 2024
75dcbaa
Update README.rst
tristanlatr May 7, 2024
1e0e8c8
Fix typo
tristanlatr May 7, 2024
7a3a3e9
Fix typo
tristanlatr May 7, 2024
51f3af8
Merge branch 'master' into 45-stdlib-support
tristanlatr May 8, 2024
81c5f73
Fix syntax
tristanlatr May 8, 2024
e25d395
Fix match statement support compat
tristanlatr May 8, 2024
602a7b1
Compta with older versions of python
tristanlatr May 8, 2024
e2d4a59
Merge branch 'master' into 45-stdlib-support
tristanlatr May 23, 2024
6f02909
Fix Def.name()
tristanlatr May 23, 2024
0d8ba55
[WIP] automatically compute the parent ast package instead of hardcod…
serge-sans-paille May 28, 2024
76afa83
Suport the standard library with the dynamic pkg() function way.
tristanlatr Sep 16, 2024
24789ff
Do not redifine declaration and definition steps.
tristanlatr Oct 1, 2024
7fba2e2
Adjust a few little things as pointed by Serge.
tristanlatr Oct 1, 2024
7e2876e
Use pytest in the Github CI so it's closer to what is used in local d…
tristanlatr Oct 1, 2024
591bb5e
Merge branch 'master' into support-standard-library
tristanlatr Oct 1, 2024
8035863
Fix python 3.13 version string
tristanlatr Oct 1, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,5 @@ beniget.egg-info

.pytest_cache
.vscode
.tox
build
2 changes: 2 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ It's a building block to write static analyzer or compiler for Python.
Beniget relies on `gast <https://pypi.org/project/gast/>`_ to provide a cross
version abstraction of the AST, effectively working across all Python 3 versions greater than 3.6.

Since version 0.5.0, beniget works with the standard library `ast <https://docs.python.org/3/library/ast.html#module-ast>`_ as well 🥳!

API
---

Expand Down
Loading
Loading