IncludeCPP 3.3.11__py3-none-any.whl → 3.4.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.
- includecpp/__init__.py +4 -3
- includecpp/cli/commands.py +665 -62
- includecpp/core/ai_integration.py +69 -34
- includecpp/core/cppy_converter.py +570 -31
- includecpp/core/cssl/__init__.py +40 -0
- includecpp/core/cssl/cssl_builtins.py +1693 -0
- includecpp/core/cssl/cssl_events.py +621 -0
- includecpp/core/cssl/cssl_modules.py +2803 -0
- includecpp/core/cssl/cssl_parser.py +1493 -0
- includecpp/core/cssl/cssl_runtime.py +1549 -0
- includecpp/core/cssl/cssl_syntax.py +488 -0
- includecpp/core/cssl/cssl_types.py +390 -0
- includecpp/core/cssl_bridge.py +132 -0
- includecpp/core/error_formatter.py +50 -19
- includecpp/core/project_ui.py +3370 -0
- includecpp/core/settings_ui.py +127 -48
- includecpp/generator/parser.cpp +81 -0
- {includecpp-3.3.11.dist-info → includecpp-3.4.2.dist-info}/METADATA +160 -18
- includecpp-3.4.2.dist-info/RECORD +40 -0
- includecpp-3.3.11.dist-info/RECORD +0 -30
- {includecpp-3.3.11.dist-info → includecpp-3.4.2.dist-info}/WHEEL +0 -0
- {includecpp-3.3.11.dist-info → includecpp-3.4.2.dist-info}/entry_points.txt +0 -0
- {includecpp-3.3.11.dist-info → includecpp-3.4.2.dist-info}/licenses/LICENSE +0 -0
- {includecpp-3.3.11.dist-info → includecpp-3.4.2.dist-info}/top_level.txt +0 -0
includecpp/__init__.py
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
from .core.cpp_api import CppApi
|
|
2
|
+
from .core import cssl_bridge as CSSL
|
|
2
3
|
import warnings
|
|
3
4
|
|
|
4
|
-
__version__ = "3.
|
|
5
|
-
__all__ = ["CppApi"]
|
|
5
|
+
__version__ = "3.4.2"
|
|
6
|
+
__all__ = ["CppApi", "CSSL"]
|
|
6
7
|
|
|
7
8
|
# Module-level cache for C++ modules
|
|
8
9
|
_api_instance = None
|
|
@@ -50,7 +51,7 @@ def __getattr__(name: str):
|
|
|
50
51
|
|
|
51
52
|
def __dir__():
|
|
52
53
|
"""List available attributes including C++ modules."""
|
|
53
|
-
base = ['CppApi', '__version__']
|
|
54
|
+
base = ['CppApi', 'CSSL', '__version__']
|
|
54
55
|
try:
|
|
55
56
|
api = _get_api()
|
|
56
57
|
return sorted(set(base + list(api.registry.keys())))
|