IncludeCPP 3.4.21__py3-none-any.whl → 3.6.0__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.
@@ -149,6 +149,111 @@ class CsslLang:
149
149
  """
150
150
  ...
151
151
 
152
+ def share(self, instance: Any, name: str = ...) -> str:
153
+ """
154
+ Share a Python object with CSSL (LIVE sharing).
155
+
156
+ Changes in CSSL reflect back to Python immediately.
157
+
158
+ Args can be passed in either order:
159
+ cssl.share(my_object, "name") # Preferred
160
+ cssl.share("name", my_object) # Also works
161
+
162
+ Usage:
163
+ class Counter:
164
+ def __init__(self):
165
+ self.value = 0
166
+
167
+ counter = Counter()
168
+ cssl.share(counter, "cnt")
169
+ cssl.exec('''
170
+ $cnt.value = $cnt.value + 1;
171
+ ''')
172
+ print(counter.value) # 1
173
+
174
+ Args:
175
+ instance: Python object to share
176
+ name: Name to reference in CSSL as $name
177
+
178
+ Returns:
179
+ Path to the shared object marker file
180
+ """
181
+ ...
182
+
183
+ def unshare(self, name: str) -> bool:
184
+ """
185
+ Remove a shared object.
186
+
187
+ Args:
188
+ name: Name of the shared object to remove
189
+
190
+ Returns:
191
+ True if removed, False if not found
192
+ """
193
+ ...
194
+
195
+ def code(self, name: str, code: str) -> None:
196
+ """
197
+ Register inline CSSL code as a named payload.
198
+
199
+ Usage:
200
+ cssl.code("helpers", '''
201
+ void log(string msg) {
202
+ printl("[LOG] " + msg);
203
+ }
204
+ ''')
205
+ cssl.exec('''
206
+ payload("helpers");
207
+ @log("Hello");
208
+ ''')
209
+
210
+ Args:
211
+ name: Name for the payload
212
+ code: CSSL code string
213
+ """
214
+ ...
215
+
216
+ def get_shared(self, name: str) -> Optional[Any]:
217
+ """
218
+ Get a shared object by name (for Python-side access).
219
+
220
+ Returns the actual live object reference, not a copy.
221
+
222
+ Args:
223
+ name: Name of the shared object
224
+
225
+ Returns:
226
+ The live shared object or None if not found
227
+ """
228
+ ...
229
+
230
+ def shared(self, name: str) -> Optional[Any]:
231
+ """
232
+ Get a shared object by name (alias for get_shared).
233
+
234
+ Returns the actual live object reference, not a copy.
235
+ Works with both Python cssl.share() and CSSL ==> $name shared objects.
236
+
237
+ Usage:
238
+ from includecpp import CSSL
239
+ cssl = CSSL.CsslLang()
240
+
241
+ # Share an object
242
+ my_obj = {"value": 42}
243
+ cssl.share(my_obj, "data")
244
+
245
+ # Retrieve it later
246
+ obj = cssl.shared("data")
247
+ print(obj["value"]) # 42
248
+
249
+ Args:
250
+ name: Name of the shared object (without $ prefix)
251
+
252
+ Returns:
253
+ The live shared object or None if not found
254
+ """
255
+ ...
256
+
152
257
 
153
258
  def get_cssl() -> CsslLang:
154
259
  """Get default CSSL instance."""
@@ -308,4 +413,76 @@ def makemodule(code: str) -> CSSLFunctionModule:
308
413
  ...
309
414
 
310
415
 
416
+ def share(instance: Any, name: str = ...) -> str:
417
+ """
418
+ Share a Python object globally for all CSSL instances (LIVE sharing).
419
+
420
+ Changes made through CSSL will reflect back to the original object.
421
+
422
+ Args can be passed in either order:
423
+ share(my_object, "name") # Preferred
424
+ share("name", my_object) # Also works
425
+
426
+ Args:
427
+ instance: Python object to share
428
+ name: Name to reference in CSSL as $name
429
+
430
+ Returns:
431
+ Path to the shared object marker file
432
+ """
433
+ ...
434
+
435
+
436
+ def unshare(name: str) -> bool:
437
+ """
438
+ Remove a globally shared object.
439
+
440
+ Args:
441
+ name: Name of the shared object to remove
442
+
443
+ Returns:
444
+ True if removed, False if not found
445
+ """
446
+ ...
447
+
448
+
449
+ def get_shared(name: str) -> Optional[Any]:
450
+ """
451
+ Get a globally shared object by name.
452
+
453
+ Args:
454
+ name: Name of the shared object
455
+
456
+ Returns:
457
+ The live shared object or None if not found
458
+ """
459
+ ...
460
+
461
+
462
+ def shared(name: str) -> Optional[Any]:
463
+ """
464
+ Get a shared object by name (alias for get_shared).
465
+
466
+ Works with both Python share() and CSSL ==> $name shared objects.
467
+
468
+ Usage:
469
+ from includecpp import CSSL
470
+
471
+ # Share an object
472
+ my_obj = {"value": 42}
473
+ CSSL.share(my_obj, "data")
474
+
475
+ # Retrieve it later
476
+ obj = CSSL.shared("data")
477
+ print(obj["value"]) # 42
478
+
479
+ Args:
480
+ name: Name of the shared object (without $ prefix)
481
+
482
+ Returns:
483
+ The live shared object or None if not found
484
+ """
485
+ ...
486
+
487
+
311
488
  __all__: List[str]
@@ -0,0 +1 @@
1
+ # VSCode extension resources for CSSL
@@ -0,0 +1 @@
1
+ # CSSL VSCode extension files
@@ -0,0 +1,38 @@
1
+ {
2
+ "comments": {
3
+ "lineComment": "//",
4
+ "blockComment": ["/*", "*/"]
5
+ },
6
+ "brackets": [
7
+ ["{", "}"],
8
+ ["[", "]"],
9
+ ["(", ")"],
10
+ ["<", ">"]
11
+ ],
12
+ "autoClosingPairs": [
13
+ { "open": "{", "close": "}" },
14
+ { "open": "[", "close": "]" },
15
+ { "open": "(", "close": ")" },
16
+ { "open": "<", "close": ">" },
17
+ { "open": "\"", "close": "\"", "notIn": ["string"] },
18
+ { "open": "'", "close": "'", "notIn": ["string", "comment"] }
19
+ ],
20
+ "surroundingPairs": [
21
+ ["{", "}"],
22
+ ["[", "]"],
23
+ ["(", ")"],
24
+ ["<", ">"],
25
+ ["\"", "\""],
26
+ ["'", "'"]
27
+ ],
28
+ "folding": {
29
+ "markers": {
30
+ "start": "^\\s*//\\s*#?region\\b",
31
+ "end": "^\\s*//\\s*#?endregion\\b"
32
+ }
33
+ },
34
+ "indentationRules": {
35
+ "increaseIndentPattern": "^.*\\{[^}]*$",
36
+ "decreaseIndentPattern": "^\\s*\\}"
37
+ }
38
+ }
@@ -0,0 +1,30 @@
1
+ {
2
+ "name": "cssl",
3
+ "displayName": "CSSL - CSO Service Script Language",
4
+ "description": "Syntax highlighting and language support for CSSL scripts",
5
+ "version": "1.0.0",
6
+ "publisher": "IncludeCPP",
7
+ "engines": {
8
+ "vscode": "^1.60.0"
9
+ },
10
+ "categories": [
11
+ "Programming Languages"
12
+ ],
13
+ "contributes": {
14
+ "languages": [
15
+ {
16
+ "id": "cssl",
17
+ "aliases": ["CSSL", "cssl", "CSO Service Script"],
18
+ "extensions": [".cssl", ".cssl-pl", ".cssl-mod"],
19
+ "configuration": "./language-configuration.json"
20
+ }
21
+ ],
22
+ "grammars": [
23
+ {
24
+ "language": "cssl",
25
+ "scopeName": "source.cssl",
26
+ "path": "./syntaxes/cssl.tmLanguage.json"
27
+ }
28
+ ]
29
+ }
30
+ }
@@ -0,0 +1,221 @@
1
+ {
2
+ "$schema": "https://raw.githubusercontent.com/martinring/tmlanguage/master/tmlanguage.json",
3
+ "name": "CSSL",
4
+ "scopeName": "source.cssl",
5
+ "patterns": [
6
+ { "include": "#comments" },
7
+ { "include": "#strings" },
8
+ { "include": "#numbers" },
9
+ { "include": "#keywords" },
10
+ { "include": "#types" },
11
+ { "include": "#function-modifiers" },
12
+ { "include": "#injection-operators" },
13
+ { "include": "#filter-helpers" },
14
+ { "include": "#global-references" },
15
+ { "include": "#shared-references" },
16
+ { "include": "#module-references" },
17
+ { "include": "#function-calls" },
18
+ { "include": "#operators" },
19
+ { "include": "#constants" }
20
+ ],
21
+ "repository": {
22
+ "comments": {
23
+ "patterns": [
24
+ {
25
+ "name": "comment.line.double-slash.cssl",
26
+ "match": "//.*$"
27
+ },
28
+ {
29
+ "name": "comment.block.cssl",
30
+ "begin": "/\\*",
31
+ "end": "\\*/"
32
+ }
33
+ ]
34
+ },
35
+ "strings": {
36
+ "patterns": [
37
+ {
38
+ "name": "string.quoted.double.cssl",
39
+ "begin": "\"",
40
+ "end": "\"",
41
+ "patterns": [
42
+ {
43
+ "name": "constant.character.escape.cssl",
44
+ "match": "\\\\."
45
+ },
46
+ {
47
+ "name": "variable.other.interpolated.cssl",
48
+ "match": "<[a-zA-Z_][a-zA-Z0-9_]*>"
49
+ }
50
+ ]
51
+ },
52
+ {
53
+ "name": "string.quoted.single.cssl",
54
+ "begin": "'",
55
+ "end": "'",
56
+ "patterns": [
57
+ {
58
+ "name": "constant.character.escape.cssl",
59
+ "match": "\\\\."
60
+ }
61
+ ]
62
+ }
63
+ ]
64
+ },
65
+ "numbers": {
66
+ "patterns": [
67
+ {
68
+ "name": "constant.numeric.float.cssl",
69
+ "match": "\\b[0-9]+\\.[0-9]+\\b"
70
+ },
71
+ {
72
+ "name": "constant.numeric.integer.cssl",
73
+ "match": "\\b[0-9]+\\b"
74
+ }
75
+ ]
76
+ },
77
+ "keywords": {
78
+ "patterns": [
79
+ {
80
+ "name": "keyword.control.cssl",
81
+ "match": "\\b(if|else|elif|while|for|foreach|in|range|switch|case|default|break|continue|return|try|catch|finally|throw)\\b"
82
+ },
83
+ {
84
+ "name": "keyword.other.cssl",
85
+ "match": "\\b(service-init|service-run|service-include|struct|structure|define|main|package|package-includes|exec|as|global|include|get|payload)\\b"
86
+ },
87
+ {
88
+ "name": "keyword.operator.logical.cssl",
89
+ "match": "\\b(and|or|not)\\b"
90
+ },
91
+ {
92
+ "name": "keyword.other.async.cssl",
93
+ "match": "\\b(start|stop|wait_for|on_event|emit_event|await)\\b"
94
+ }
95
+ ]
96
+ },
97
+ "types": {
98
+ "patterns": [
99
+ {
100
+ "name": "storage.type.primitive.cssl",
101
+ "match": "\\b(int|string|float|bool|void|json|dynamic)\\b"
102
+ },
103
+ {
104
+ "name": "storage.type.container.cssl",
105
+ "match": "\\b(array|vector|stack|datastruct|dataspace|shuffled|iterator|combo|openquote)\\b"
106
+ },
107
+ {
108
+ "name": "storage.type.generic.cssl",
109
+ "match": "\\b(array|vector|stack|datastruct|dataspace|shuffled|iterator|combo|openquote)\\s*<",
110
+ "captures": {
111
+ "1": { "name": "storage.type.container.cssl" }
112
+ }
113
+ }
114
+ ]
115
+ },
116
+ "function-modifiers": {
117
+ "patterns": [
118
+ {
119
+ "name": "storage.modifier.cssl",
120
+ "match": "\\b(undefined|open|closed|private|virtual|meta|super|sqlbased)\\b"
121
+ }
122
+ ]
123
+ },
124
+ "injection-operators": {
125
+ "patterns": [
126
+ {
127
+ "name": "keyword.operator.injection.cssl",
128
+ "match": "(\\+<<==|<<==|-<<==|==>>\\+|==>>|-==>>)"
129
+ },
130
+ {
131
+ "name": "keyword.operator.brute-injection.cssl",
132
+ "match": "(\\+<==|<==|-<==|==>\\+|==>|-==>)"
133
+ }
134
+ ]
135
+ },
136
+ "filter-helpers": {
137
+ "patterns": [
138
+ {
139
+ "name": "support.function.filter.cssl",
140
+ "match": "\\b(string|integer|json|array|vector|combo|dynamic|sql)::(where|contains|not|startsWith|endsWith|length|lenght|key|value|index|filterdb|blocked|data)\\b"
141
+ }
142
+ ]
143
+ },
144
+ "global-references": {
145
+ "patterns": [
146
+ {
147
+ "name": "variable.other.global.cssl",
148
+ "match": "@[a-zA-Z_][a-zA-Z0-9_]*"
149
+ },
150
+ {
151
+ "name": "variable.other.global-decl.cssl",
152
+ "match": "r@[a-zA-Z_][a-zA-Z0-9_]*"
153
+ },
154
+ {
155
+ "name": "variable.other.self-ref.cssl",
156
+ "match": "s@[a-zA-Z_][a-zA-Z0-9_]*"
157
+ }
158
+ ]
159
+ },
160
+ "shared-references": {
161
+ "patterns": [
162
+ {
163
+ "name": "variable.other.shared.cssl",
164
+ "match": "\\$[a-zA-Z_][a-zA-Z0-9_]*"
165
+ }
166
+ ]
167
+ },
168
+ "module-references": {
169
+ "patterns": [
170
+ {
171
+ "name": "entity.name.type.module.cssl",
172
+ "match": "@[A-Z][a-zA-Z0-9_]*"
173
+ }
174
+ ]
175
+ },
176
+ "function-calls": {
177
+ "patterns": [
178
+ {
179
+ "name": "entity.name.function.cssl",
180
+ "match": "\\b([a-zA-Z_][a-zA-Z0-9_]*)\\s*(?=\\()"
181
+ },
182
+ {
183
+ "name": "support.function.builtin.cssl",
184
+ "match": "\\b(printl|print|println|len|type|toInt|toFloat|toString|toBool|range|input|exit|sleep|OpenFind|parameter\\.get|parameter\\.return)\\b"
185
+ }
186
+ ]
187
+ },
188
+ "operators": {
189
+ "patterns": [
190
+ {
191
+ "name": "keyword.operator.comparison.cssl",
192
+ "match": "(==|!=|<=|>=|<|>)"
193
+ },
194
+ {
195
+ "name": "keyword.operator.arithmetic.cssl",
196
+ "match": "(\\+\\+|--|\\+=|-=|\\+|-|\\*|/|%)"
197
+ },
198
+ {
199
+ "name": "keyword.operator.logical.cssl",
200
+ "match": "(&&|\\|\\||!)"
201
+ },
202
+ {
203
+ "name": "keyword.operator.assignment.cssl",
204
+ "match": "="
205
+ }
206
+ ]
207
+ },
208
+ "constants": {
209
+ "patterns": [
210
+ {
211
+ "name": "constant.language.boolean.cssl",
212
+ "match": "\\b(true|false|True|False)\\b"
213
+ },
214
+ {
215
+ "name": "constant.language.null.cssl",
216
+ "match": "\\b(null|None)\\b"
217
+ }
218
+ ]
219
+ }
220
+ }
221
+ }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: IncludeCPP
3
- Version: 3.4.21
3
+ Version: 3.6.0
4
4
  Summary: Professional C++ Python bindings with type-generic templates, pystubs and native threading
5
5
  Home-page: https://github.com/liliassg/IncludeCPP
6
6
  Author: Lilias Hatterscheidt
@@ -1,9 +1,9 @@
1
- includecpp/__init__.py,sha256=LEEUAR8w2v0NHGgMiOX2nK47f4KlzUvZCq7mAIa-8bU,1673
1
+ includecpp/__init__.py,sha256=1pUwTIyhcdJlS4hNJ6GlsB5dzeOuVEZnlrV6NiI9rqE,1672
2
2
  includecpp/__init__.pyi,sha256=c4gZW7_XQXcp6FBcTi5W7zXTmCtbgQhlC4cyeVqtRRM,7253
3
3
  includecpp/__main__.py,sha256=d6QK0PkvUe1ENofpmHRAg3bwNbZr8PiRscfI3-WRfVg,72
4
4
  includecpp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
5
  includecpp/cli/__init__.py,sha256=Yda-4a5QJb_tKu35YQNfc5lu-LewTsM5abqNNkzS47M,113
6
- includecpp/cli/commands.py,sha256=_KnxbpgUUdqdzEYGeHRSafXF0o9qt8JCfnM9l10gbh0,321214
6
+ includecpp/cli/commands.py,sha256=RsG1ixzxSnnHHb1a42x_4hBapV1i360AIK9swQVZBRQ,324721
7
7
  includecpp/cli/config_parser.py,sha256=KveeYUg2TA9sC5hKVzYYfgdNm2WfLG5y7_yxgBWn9yM,4886
8
8
  includecpp/core/__init__.py,sha256=L1bT6oikTjdto-6Px7DpjePtM07ymo3Bnov1saZzsGg,390
9
9
  includecpp/core/ai_integration.py,sha256=PW6yFDqdXjfchpfKTKg59AOLhLry9kqJEGf_65BztrY,87603
@@ -11,32 +11,37 @@ includecpp/core/build_manager.py,sha256=uLuYsuiC6OsOGaU5wAJfl4M3IbdnIDgogfMd8VsV
11
11
  includecpp/core/cpp_api.py,sha256=8y_B1L18rhSBZln654xPPzqO2PdvAlLpJrfEjzl7Wnc,14039
12
12
  includecpp/core/cpp_api.pyi,sha256=IEiaKqaPItnn6rjL7aK32D3o9FYmRYCgCZbqiQNUwdc,3496
13
13
  includecpp/core/cppy_converter.py,sha256=b7yqu-aoa0wShNY0GvQT67TnNhYya4GyYmG7oDdqDV4,156686
14
- includecpp/core/cssl_bridge.py,sha256=1l4okSND3EAtdf4M_QVq3pOWfiPtE_Ei30LMGORRvEQ,24157
15
- includecpp/core/cssl_bridge.pyi,sha256=Q4zjc2Kf2wPJPnfgHS-koPEon3Kty6o3mCvp9E5Q8tE,7635
14
+ includecpp/core/cssl_bridge.py,sha256=xF2AinLlhxwcG9ZM2F0AjLc1dnJOSnRBja2-wEm0vog,27474
15
+ includecpp/core/cssl_bridge.pyi,sha256=tQxb3lneufgVmXSAqDUwjoluUNo8Wa5QIOnaL8ai6q0,12055
16
16
  includecpp/core/error_catalog.py,sha256=VS3N-P0yEbiHimsDPtcaYfrUb7mXQ-7pqw18PtSngaU,33869
17
17
  includecpp/core/error_formatter.py,sha256=7-MzRIT8cM4uODxy0IZ9pu7pqR4Pq2I8Si0QQZHjmVc,39239
18
18
  includecpp/core/exceptions.py,sha256=szeF4qdzi_q8hBBZi7mJxkliyQ0crplkLYe0ymlBGtk,2459
19
19
  includecpp/core/path_discovery.py,sha256=jI0oSq6Hsd4LKXmU4dOiGSrXcEO_KWMXfQ5_ylBmXvU,2561
20
20
  includecpp/core/project_ui.py,sha256=la2EQZKmUkJGuJxnbs09hH1ZhBh9bfndo6okzZsk2dQ,141134
21
21
  includecpp/core/settings_ui.py,sha256=B2SlwgdplF2KiBk5UYf2l8Jjifjd0F-FmBP0DPsVCEQ,11798
22
- includecpp/core/cssl/CSSL_DOCUMENTATION.md,sha256=ibtovYOCM4pJqOOGPGJyWL40N3D0Vm5RgQzzh4mJGr8,26198
22
+ includecpp/core/cssl/CSSL_DOCUMENTATION.md,sha256=1fyL6ZmWi3e6YiXlJxcF0yn7XifL9_IG2101xfNgMgg,34484
23
23
  includecpp/core/cssl/__init__.py,sha256=TYRlyheTw5OYkkmUxJYpAjyyQShu6NF4igYZYE76eR0,1811
24
- includecpp/core/cssl/cssl_builtins.py,sha256=WJtSWPsNNOSYtXBHK0h4ImXLrqId8ElfykQ2pBbhD3c,71368
24
+ includecpp/core/cssl/cssl_builtins.py,sha256=nUU-lwHhOJfQNV_OLLFFJNllJsUyw-vq55PAoubyWJI,80420
25
25
  includecpp/core/cssl/cssl_events.py,sha256=nupIcXW_Vjdud7zCU6hdwkQRQ0MujlPM7Tk2u7eDAiY,21013
26
26
  includecpp/core/cssl/cssl_modules.py,sha256=cUg0-zdymMnWWTsA_BUrW5dx4R04dHpKcUhm-Wfiwwo,103006
27
- includecpp/core/cssl/cssl_parser.py,sha256=TxkqYHSGoY8ddHupD7qfaBgwKTCofhpmApzN-rWFCnY,91644
28
- includecpp/core/cssl/cssl_runtime.py,sha256=Mchv9eutE8x-y_XAUBKzRPwzyATe4dtjAIttcBmC3mQ,93608
27
+ includecpp/core/cssl/cssl_parser.py,sha256=0Yd9zHDbVLzRAAChppkPy6j9iqwLd9qJcznyTqU3DtE,100400
28
+ includecpp/core/cssl/cssl_runtime.py,sha256=c9r1Xrr5sHtCFSpjUw1u_IvttD4ghOQ3eR1e2lv2cNo,114067
29
29
  includecpp/core/cssl/cssl_syntax.py,sha256=vgI-dgj6gs9cOHwNRff6JbwZZYW_fYutnwCkznlgZiE,17006
30
- includecpp/core/cssl/cssl_types.py,sha256=JaBhVFcByaC-Thdkd0J9IMkUzLkxriBWx1XfwPr6knM,30561
30
+ includecpp/core/cssl/cssl_types.py,sha256=j-qiMKYMSXLLxx19pgHHbXuPYgiPL2QcwvCmG6pc1vw,40629
31
31
  includecpp/generator/__init__.py,sha256=Rsy41bwimaEloD3gDRR_znPfIJzIsCFuWZgCTJBLJlc,62
32
32
  includecpp/generator/parser.cpp,sha256=hbhHdtFH65rzp6prnARN9pNFF_ssr0NseVVcxq0fJh4,76833
33
33
  includecpp/generator/parser.h,sha256=EDm0b-pEesIIIQQ2PvH5h2qwlqJU9BH8SiMV7MWbsTo,11073
34
34
  includecpp/generator/type_resolver.cpp,sha256=MmFK_4HXd1wqxALDiDyXVuU397SXoQL_o5zb_8N8Hzs,12346
35
35
  includecpp/generator/type_resolver.h,sha256=ZsaxQqcCcKJJApYn7KOp2dLlQ1VFVG_oZDjaK5LhBSg,2590
36
36
  includecpp/templates/cpp.proj.template,sha256=Iy-L8I4Cl3tIgBMx1Qp5h6gURvkqOAqyodVHuDJ0Luw,359
37
- includecpp-3.4.21.dist-info/licenses/LICENSE,sha256=fWCsGGsiWZir0UzDd20Hh-3wtRyk1zqUntvtVuAWhvc,1093
38
- includecpp-3.4.21.dist-info/METADATA,sha256=_C5lYdo9fpO18toixnsaWR0_thu6oPVQ9wvpapiqc8E,32123
39
- includecpp-3.4.21.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
40
- includecpp-3.4.21.dist-info/entry_points.txt,sha256=6A5Mif9gi0139Bf03W5plAb3wnAgbNaEVe1HJoGE-2o,59
41
- includecpp-3.4.21.dist-info/top_level.txt,sha256=RFUaR1KG-M6mCYwP6w4ydP5Cgc8yNbP78jxGAvyjMa8,11
42
- includecpp-3.4.21.dist-info/RECORD,,
37
+ includecpp/vscode/__init__.py,sha256=yLKw-_7MTX1Rx3jLk5JjharJQfFXbwtZVE7YqHpM7yg,39
38
+ includecpp/vscode/cssl/__init__.py,sha256=rQJAx5X05v-mAwqX1Qb-rbZO219iR73MziFNRUCNUIo,31
39
+ includecpp/vscode/cssl/language-configuration.json,sha256=vBZSVBpV0UFlTO4d0aQrhTpR4lHje0Tb2n889k9W_Uc,986
40
+ includecpp/vscode/cssl/package.json,sha256=t_xEMMew3ohtxv9riyPdGo_T6TMJi-REJ-GDS_GYbCk,872
41
+ includecpp/vscode/cssl/syntaxes/cssl.tmLanguage.json,sha256=lvg2EHN8If1Hw0RY_EqatLupclQmhq3oZlnBA0Zi-54,8023
42
+ includecpp-3.6.0.dist-info/licenses/LICENSE,sha256=fWCsGGsiWZir0UzDd20Hh-3wtRyk1zqUntvtVuAWhvc,1093
43
+ includecpp-3.6.0.dist-info/METADATA,sha256=CbUV6R8D4J3MsNdSHbyBVUwuJuNRv9orybf1BqxoGZg,32122
44
+ includecpp-3.6.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
45
+ includecpp-3.6.0.dist-info/entry_points.txt,sha256=6A5Mif9gi0139Bf03W5plAb3wnAgbNaEVe1HJoGE-2o,59
46
+ includecpp-3.6.0.dist-info/top_level.txt,sha256=RFUaR1KG-M6mCYwP6w4ydP5Cgc8yNbP78jxGAvyjMa8,11
47
+ includecpp-3.6.0.dist-info/RECORD,,