llparse 0.3.1__tar.gz → 0.3.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. {llparse-0.3.1 → llparse-0.3.2}/PKG-INFO +1 -1
  2. {llparse-0.3.1 → llparse-0.3.2}/llparse/__init__.py +1 -1
  3. {llparse-0.3.1 → llparse-0.3.2}/llparse.egg-info/PKG-INFO +1 -1
  4. {llparse-0.3.1 → llparse-0.3.2}/LICENSE +0 -0
  5. {llparse-0.3.1 → llparse-0.3.2}/README.md +0 -0
  6. {llparse-0.3.1 → llparse-0.3.2}/llparse/C_compiler.py +0 -0
  7. {llparse-0.3.1 → llparse-0.3.2}/llparse/_tempita/__init__.py +0 -0
  8. {llparse-0.3.1 → llparse-0.3.2}/llparse/_tempita/__init__.pyi +0 -0
  9. {llparse-0.3.1 → llparse-0.3.2}/llparse/_tempita/__main__.py +0 -0
  10. {llparse-0.3.1 → llparse-0.3.2}/llparse/_tempita/_looper.py +0 -0
  11. {llparse-0.3.1 → llparse-0.3.2}/llparse/_tempita/_looper.pyi +0 -0
  12. {llparse-0.3.1 → llparse-0.3.2}/llparse/_tempita/compat3.py +0 -0
  13. {llparse-0.3.1 → llparse-0.3.2}/llparse/capi_builder.py +0 -0
  14. {llparse-0.3.1 → llparse-0.3.2}/llparse/compilator.py +0 -0
  15. {llparse-0.3.1 → llparse-0.3.2}/llparse/constants.py +0 -0
  16. {llparse-0.3.1 → llparse-0.3.2}/llparse/debug.py +0 -0
  17. {llparse-0.3.1 → llparse-0.3.2}/llparse/dot.py +0 -0
  18. {llparse-0.3.1 → llparse-0.3.2}/llparse/enumerator.py +0 -0
  19. {llparse-0.3.1 → llparse-0.3.2}/llparse/errors.py +0 -0
  20. {llparse-0.3.1 → llparse-0.3.2}/llparse/frontend.py +0 -0
  21. {llparse-0.3.1 → llparse-0.3.2}/llparse/header.py +0 -0
  22. {llparse-0.3.1 → llparse-0.3.2}/llparse/llparse.py +0 -0
  23. {llparse-0.3.1 → llparse-0.3.2}/llparse/pybuilder/__init__.py +0 -0
  24. {llparse-0.3.1 → llparse-0.3.2}/llparse/pybuilder/builder.py +0 -0
  25. {llparse-0.3.1 → llparse-0.3.2}/llparse/pybuilder/loopchecker.py +0 -0
  26. {llparse-0.3.1 → llparse-0.3.2}/llparse/pybuilder/main_code.py +0 -0
  27. {llparse-0.3.1 → llparse-0.3.2}/llparse/pybuilder/parsemap.py +0 -0
  28. {llparse-0.3.1 → llparse-0.3.2}/llparse/pyfront/__init__.py +0 -0
  29. {llparse-0.3.1 → llparse-0.3.2}/llparse/pyfront/code.py +0 -0
  30. {llparse-0.3.1 → llparse-0.3.2}/llparse/pyfront/implementation.py +0 -0
  31. {llparse-0.3.1 → llparse-0.3.2}/llparse/pyfront/namespace.py +0 -0
  32. {llparse-0.3.1 → llparse-0.3.2}/llparse/pyfront/nodes.py +0 -0
  33. {llparse-0.3.1 → llparse-0.3.2}/llparse/pyfront/peephole.py +0 -0
  34. {llparse-0.3.1 → llparse-0.3.2}/llparse/pyfront/transform.py +0 -0
  35. {llparse-0.3.1 → llparse-0.3.2}/llparse/spanalloc.py +0 -0
  36. {llparse-0.3.1 → llparse-0.3.2}/llparse/trie.py +0 -0
  37. {llparse-0.3.1 → llparse-0.3.2}/llparse.egg-info/SOURCES.txt +0 -0
  38. {llparse-0.3.1 → llparse-0.3.2}/llparse.egg-info/dependency_links.txt +0 -0
  39. {llparse-0.3.1 → llparse-0.3.2}/llparse.egg-info/requires.txt +0 -0
  40. {llparse-0.3.1 → llparse-0.3.2}/llparse.egg-info/top_level.txt +0 -0
  41. {llparse-0.3.1 → llparse-0.3.2}/pyproject.toml +0 -0
  42. {llparse-0.3.1 → llparse-0.3.2}/setup.cfg +0 -0
  43. {llparse-0.3.1 → llparse-0.3.2}/tests/test_capi.py +0 -0
  44. {llparse-0.3.1 → llparse-0.3.2}/tests/test_compilator.py +0 -0
  45. {llparse-0.3.1 → llparse-0.3.2}/tests/test_frontend.py +0 -0
  46. {llparse-0.3.1 → llparse-0.3.2}/tests/test_loop_checker.py +0 -0
  47. {llparse-0.3.1 → llparse-0.3.2}/tests/test_span_allocator.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: llparse
3
- Version: 0.3.1
3
+ Version: 0.3.2
4
4
  Summary: A Parody of llparse written for writing C Parsers with Python
5
5
  Author-email: Vizonex <VizonexBusiness@gmail.com>
6
6
  Requires-Python: >=3.10
@@ -8,5 +8,5 @@ A Pythonic version of the typescript llparse library.
8
8
  from .dot import Dot
9
9
  from .llparse import LLParse
10
10
 
11
- __version__ = "0.3.1"
11
+ __version__ = "0.3.2"
12
12
  __all__ = ("Dot", "LLParse")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: llparse
3
- Version: 0.3.1
3
+ Version: 0.3.2
4
4
  Summary: A Parody of llparse written for writing C Parsers with Python
5
5
  Author-email: Vizonex <VizonexBusiness@gmail.com>
6
6
  Requires-Python: >=3.10
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes