IncludeCPP 3.7.13__py3-none-any.whl → 3.7.15__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 +1 -1
- includecpp/__init__.pyi +2 -2
- includecpp/core/cssl/__init__.py +1 -1
- includecpp/core/cssl/cssl_builtins.py +3 -3
- includecpp/core/cssl/cssl_builtins.pyi +3218 -393
- includecpp/core/cssl/cssl_parser.py +1 -1
- includecpp/core/cssl/cssl_syntax.py +7 -7
- includecpp/core/cssl/cssl_types.py +1 -1
- includecpp/vscode/cssl/package.json +3 -4
- {includecpp-3.7.13.dist-info → includecpp-3.7.15.dist-info}/METADATA +2 -2
- {includecpp-3.7.13.dist-info → includecpp-3.7.15.dist-info}/RECORD +15 -15
- {includecpp-3.7.13.dist-info → includecpp-3.7.15.dist-info}/WHEEL +0 -0
- {includecpp-3.7.13.dist-info → includecpp-3.7.15.dist-info}/entry_points.txt +0 -0
- {includecpp-3.7.13.dist-info → includecpp-3.7.15.dist-info}/licenses/LICENSE +0 -0
- {includecpp-3.7.13.dist-info → includecpp-3.7.15.dist-info}/top_level.txt +0 -0
includecpp/__init__.py
CHANGED
includecpp/__init__.pyi
CHANGED
|
@@ -13,7 +13,7 @@ except ImportError:
|
|
|
13
13
|
pass # Generated during rebuild
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
# ========== CSSL Module
|
|
16
|
+
# ========== CSSL Module ==========
|
|
17
17
|
class _CSSLModule:
|
|
18
18
|
"""CSSL callable module created via CSSL.module()"""
|
|
19
19
|
def __call__(self, *args: Any) -> Any:
|
|
@@ -139,7 +139,7 @@ class _CSSLBridge:
|
|
|
139
139
|
...
|
|
140
140
|
|
|
141
141
|
|
|
142
|
-
# CSSL module instance
|
|
142
|
+
# CSSL module instance
|
|
143
143
|
CSSL: _CSSLBridge
|
|
144
144
|
|
|
145
145
|
__version__: str
|
includecpp/core/cssl/__init__.py
CHANGED
|
@@ -1680,7 +1680,7 @@ class CSSLBuiltins:
|
|
|
1680
1680
|
|
|
1681
1681
|
def builtin_cso_root(self, path: str = "") -> str:
|
|
1682
1682
|
"""
|
|
1683
|
-
Get absolute path relative to
|
|
1683
|
+
Get absolute path relative to project root directory
|
|
1684
1684
|
Usage: cso_root('/services/myservice.cssl')
|
|
1685
1685
|
Returns: Full absolute path to the file
|
|
1686
1686
|
"""
|
|
@@ -1729,7 +1729,7 @@ class CSSLBuiltins:
|
|
|
1729
1729
|
if os.path.exists(cwd_path):
|
|
1730
1730
|
filepath = cwd_path
|
|
1731
1731
|
else:
|
|
1732
|
-
# Fall back to cso_root for
|
|
1732
|
+
# Fall back to cso_root for service context
|
|
1733
1733
|
filepath = self.builtin_cso_root(filepath)
|
|
1734
1734
|
|
|
1735
1735
|
# Check file exists
|
|
@@ -1923,7 +1923,7 @@ class CSSLBuiltins:
|
|
|
1923
1923
|
if os.path.exists(cwd_path):
|
|
1924
1924
|
filepath = cwd_path
|
|
1925
1925
|
else:
|
|
1926
|
-
# Fall back to cso_root for
|
|
1926
|
+
# Fall back to cso_root for service context
|
|
1927
1927
|
filepath = self.builtin_cso_root(filepath)
|
|
1928
1928
|
|
|
1929
1929
|
# Check file exists
|