oasm 0.1.0__py3-none-any.whl → 0.1.2__py3-none-any.whl

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.
oasm/__init__.py CHANGED
@@ -1,6 +1,27 @@
1
+ import pkgutil
2
+ __path__ = pkgutil.extend_path(__path__,__name__)
3
+ __path__.reverse()
4
+
1
5
  __all__ = ['table','config','equal','expr','sym','context','flow','meta','multi','domain']
2
6
  from pprint import pformat
3
7
 
8
+ """
9
+ Open Assembly Tools (OASM) Core Module
10
+
11
+ This module provides fundamental data structures and utility classes that support
12
+ assembler configuration, expression processing, and flow control.
13
+
14
+ The module includes:
15
+ - table: Flexible list-dictionary hybrid container
16
+ - config: Configuration management with JSON persistence
17
+ - expr: Expression evaluation system
18
+ - context: Context management for assembly operations
19
+ - flow: Control flow management
20
+ - meta: Metaprogramming utilities
21
+ - multi: Multi-node assembly support
22
+ - domain: Domain-specific language constructs
23
+ """
24
+
4
25
  class table(list):
5
26
  def __init__(self, *args, **kwargs):
6
27
  super().__init__(args)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: oasm
3
- Version: 0.1.0
3
+ Version: 0.1.2
4
4
  Summary: Open ASseMbly tools
5
5
  Author-email: nzturn <nzturn@gmail.com>
6
6
  Keywords: asm,dsl
@@ -0,0 +1,5 @@
1
+ oasm/__init__.py,sha256=Q0G6HilXbVsaW9BdQgV9YYzfxCJUo6qz1VDUyZ1Bvh0,28753
2
+ oasm-0.1.2.dist-info/METADATA,sha256=78ArYUMb3d55G8dBQqOgSO6VF12sqKaNge-sMcVk-OI,370
3
+ oasm-0.1.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
4
+ oasm-0.1.2.dist-info/top_level.txt,sha256=EacQcwgujQK1Vg--A4w6awZ2LPUTDx7kHNRd9BsavOc,5
5
+ oasm-0.1.2.dist-info/RECORD,,
@@ -1,5 +0,0 @@
1
- oasm/__init__.py,sha256=2Zg2kwWBs1khFXkREzyAljGuJnnqKqpNGmcmUtH3PDk,28080
2
- oasm-0.1.0.dist-info/METADATA,sha256=e0zuFe5q8CkTxAMagX7hvv5XTd2UcG_hamjpeCnO4Zs,370
3
- oasm-0.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
4
- oasm-0.1.0.dist-info/top_level.txt,sha256=EacQcwgujQK1Vg--A4w6awZ2LPUTDx7kHNRd9BsavOc,5
5
- oasm-0.1.0.dist-info/RECORD,,
File without changes