oasm 0.1.0__tar.gz → 0.1.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.
- {oasm-0.1.0 → oasm-0.1.2}/PKG-INFO +1 -1
- {oasm-0.1.0 → oasm-0.1.2}/pyproject.toml +1 -1
- {oasm-0.1.0 → oasm-0.1.2}/src/oasm/__init__.py +21 -0
- {oasm-0.1.0 → oasm-0.1.2}/src/oasm.egg-info/PKG-INFO +1 -1
- {oasm-0.1.0 → oasm-0.1.2}/README.md +0 -0
- {oasm-0.1.0 → oasm-0.1.2}/setup.cfg +0 -0
- {oasm-0.1.0 → oasm-0.1.2}/src/oasm.egg-info/SOURCES.txt +0 -0
- {oasm-0.1.0 → oasm-0.1.2}/src/oasm.egg-info/dependency_links.txt +0 -0
- {oasm-0.1.0 → oasm-0.1.2}/src/oasm.egg-info/top_level.txt +0 -0
|
@@ -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)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|