xasm 1.1.1__tar.gz → 1.2.1__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 (69) hide show
  1. xasm-1.2.1/.editorconfig +28 -0
  2. xasm-1.2.1/.github/FUNDING.yml +12 -0
  3. xasm-1.2.1/.gitignore +17 -0
  4. xasm-1.2.1/.pre-commit-config.yaml +22 -0
  5. xasm-1.2.1/ChangeLog +803 -0
  6. {xasm-1.1.1 → xasm-1.2.1}/HOW-TO-USE.rst +70 -39
  7. xasm-1.2.1/Makefile +30 -0
  8. xasm-1.2.1/NEWS.md +44 -0
  9. xasm-1.2.1/PKG-INFO +233 -0
  10. {xasm-1.1.1 → xasm-1.2.1}/README.rst +40 -23
  11. xasm-1.2.1/admin-tools/check-versions.sh +25 -0
  12. xasm-1.2.1/admin-tools/make-dist.sh +36 -0
  13. xasm-1.2.1/admin-tools/setup-master.sh +16 -0
  14. xasm-1.2.1/pyproject.toml +63 -0
  15. xasm-1.2.1/pytest/.gitignore +2 -0
  16. xasm-1.2.1/pytest/test_write_pyc.py +48 -0
  17. xasm-1.2.1/pytest/testdata/test_pyc.pyc +0 -0
  18. xasm-1.2.1/requirements-dev.txt +1 -0
  19. xasm-1.2.1/setup.cfg +34 -0
  20. xasm-1.2.1/setup.py +7 -0
  21. xasm-1.2.1/test/.gitignore +5 -0
  22. xasm-1.2.1/test/Makefile +4 -0
  23. {xasm-1.1.1 → xasm-1.2.1}/test/columnize.py +170 -110
  24. {xasm-1.1.1 → xasm-1.2.1}/test/fn.py +3 -1
  25. {xasm-1.1.1 → xasm-1.2.1}/test/gcd.py +9 -6
  26. {xasm-1.1.1 → xasm-1.2.1}/test/multi-fns.py +5 -5
  27. {xasm-1.1.1 → xasm-1.2.1}/test/run-test.py +22 -15
  28. xasm-1.2.1/test/tasm-3.10-bad.pyasm +55 -0
  29. xasm-1.2.1/test/tasm-3.10.pyasm +55 -0
  30. {xasm-1.1.1 → xasm-1.2.1}/test/test_all.py +6 -2
  31. xasm-1.2.1/xasm/.gitignore +2 -0
  32. {xasm-1.1.1 → xasm-1.2.1}/xasm/__init__.py +1 -1
  33. xasm-1.2.1/xasm/assemble.py +722 -0
  34. {xasm-1.1.1 → xasm-1.2.1}/xasm/pyc_convert.py +37 -34
  35. {xasm-1.1.1 → xasm-1.2.1}/xasm/version.py +3 -1
  36. {xasm-1.1.1 → xasm-1.2.1}/xasm/write_pyc.py +18 -12
  37. xasm-1.2.1/xasm/xasm_cli.py +61 -0
  38. xasm-1.2.1/xasm.egg-info/PKG-INFO +233 -0
  39. {xasm-1.1.1 → xasm-1.2.1}/xasm.egg-info/SOURCES.txt +22 -3
  40. xasm-1.2.1/xasm.egg-info/entry_points.txt +2 -0
  41. xasm-1.2.1/xasm.egg-info/requires.txt +8 -0
  42. xasm-1.1.1/NEWS.md +0 -20
  43. xasm-1.1.1/PKG-INFO +0 -210
  44. xasm-1.1.1/__pkginfo__.py +0 -68
  45. xasm-1.1.1/setup.cfg +0 -4
  46. xasm-1.1.1/setup.py +0 -44
  47. xasm-1.1.1/xasm/assemble.py +0 -500
  48. xasm-1.1.1/xasm/xasm_cli.py +0 -45
  49. xasm-1.1.1/xasm.egg-info/PKG-INFO +0 -210
  50. xasm-1.1.1/xasm.egg-info/entry_points.txt +0 -5
  51. xasm-1.1.1/xasm.egg-info/zip-safe +0 -1
  52. {xasm-1.1.1 → xasm-1.2.1}/LICENSE.gpl2 +0 -0
  53. {xasm-1.1.1 → xasm-1.2.1}/MANIFEST.in +0 -0
  54. {xasm-1.1.1 → xasm-1.2.1}/test/comp.py +0 -0
  55. {xasm-1.1.1 → xasm-1.2.1}/test/fn-2.6.pyasm +0 -0
  56. {xasm-1.1.1 → xasm-1.2.1}/test/multi-assign-2.7.pyasm +0 -0
  57. {xasm-1.1.1 → xasm-1.2.1}/test/multi-assign.py +0 -0
  58. {xasm-1.1.1 → xasm-1.2.1}/test/multi-assign2-2.7.pyasm +0 -0
  59. {xasm-1.1.1 → xasm-1.2.1}/test/multi-fns-2.7.pyasm +0 -0
  60. {xasm-1.1.1 → xasm-1.2.1}/test/multi-line.py +0 -0
  61. {xasm-1.1.1 → xasm-1.2.1}/test/run-pyc.py +0 -0
  62. {xasm-1.1.1 → xasm-1.2.1}/test/tasm-2.5.pyasm +0 -0
  63. {xasm-1.1.1 → xasm-1.2.1}/test/tasm-2.6.pyasm +0 -0
  64. {xasm-1.1.1 → xasm-1.2.1}/test/tasm-2.7.pyasm +0 -0
  65. {xasm-1.1.1 → xasm-1.2.1}/test/tasm-3.5.pyasm +0 -0
  66. {xasm-1.1.1 → xasm-1.2.1}/test/tasm.py +0 -0
  67. {xasm-1.1.1 → xasm-1.2.1}/test/tasm3-3.4.pyasm +0 -0
  68. {xasm-1.1.1 → xasm-1.2.1}/xasm.egg-info/dependency_links.txt +0 -0
  69. {xasm-1.1.1 → xasm-1.2.1}/xasm.egg-info/top_level.txt +0 -0
@@ -0,0 +1,28 @@
1
+ # This is an EditorConfig file
2
+ # https://EditorConfig.org
3
+
4
+ root = true
5
+
6
+ [*]
7
+ end_of_line = lf
8
+ insert_final_newline = true
9
+ charset = utf-8
10
+ indent_style = tab
11
+ indent_size = 4
12
+ insert_final_newline = true
13
+
14
+ [*.yml]
15
+ indent_style = space
16
+ indent_size = 2
17
+ end_of_line = lf
18
+ insert_final_newline = true
19
+
20
+ [*.py]
21
+ indent_style = space
22
+ indent_size = 4
23
+ end_of_line = lf
24
+ insert_final_newline = true
25
+
26
+ # Tab indentation (no size specified)
27
+ [Makefile]
28
+ indent_style = tab
@@ -0,0 +1,12 @@
1
+ # These are supported funding model platforms
2
+
3
+ github: ['rocky']
4
+ patreon: # Replace with a single Patreon username
5
+ open_collective: # Replace with a single Open Collective username
6
+ ko_fi: # Replace with a single Ko-fi username
7
+ tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8
+ community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9
+ liberapay: # Replace with a single Liberapay username
10
+ issuehunt: # Replace with a single IssueHunt username
11
+ otechie: # Replace with a single Otechie username
12
+ custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
xasm-1.2.1/.gitignore ADDED
@@ -0,0 +1,17 @@
1
+ *.pyc
2
+ *~
3
+ /.cache
4
+ /.eggs
5
+ /.idea
6
+ /.mypy_cache
7
+ /.pytest_cache
8
+ /.python-version
9
+ /ChangeLog-spell-corrected
10
+ /README.html
11
+ /build
12
+ /dist
13
+ /how-to-make-a-release.txt
14
+ /pyxasm.egg-info
15
+ /tmp
16
+ /xasm.egg-info
17
+ /xdis.egg-info
@@ -0,0 +1,22 @@
1
+ default_language_version:
2
+ python: python
3
+ repos:
4
+ - repo: https://github.com/pre-commit/pre-commit-hooks
5
+ rev: v4.5.0
6
+ hooks:
7
+ - id: check-merge-conflict
8
+ - id: debug-statements
9
+ stages: [pre-commit]
10
+ - id: end-of-file-fixer
11
+ stages: [pre-commit]
12
+ # - repo: https://github.com/pycqa/isort
13
+ # rev: 5.13.2
14
+ # hooks:
15
+ # - id: isort
16
+ # stages: [pre-commit]
17
+ - repo: https://github.com/psf/black
18
+ rev: 23.12.1
19
+ hooks:
20
+ - id: black
21
+ language_version: python3
22
+ stages: [pre-commit]