concurrent-c-node 0.18.0__tar.gz → 0.20.0__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.
- {concurrent_c_node-0.18.0 → concurrent_c_node-0.20.0}/PKG-INFO +3 -2
- {concurrent_c_node-0.18.0 → concurrent_c_node-0.20.0}/README.md +2 -1
- {concurrent_c_node-0.18.0 → concurrent_c_node-0.20.0}/cc_node/__init__.py +1 -1
- {concurrent_c_node-0.18.0 → concurrent_c_node-0.20.0}/concurrent_c_node.egg-info/PKG-INFO +3 -2
- {concurrent_c_node-0.18.0 → concurrent_c_node-0.20.0}/pyproject.toml +1 -1
- {concurrent_c_node-0.18.0 → concurrent_c_node-0.20.0}/cc_node/benchmarks/__init__.py +0 -0
- {concurrent_c_node-0.18.0 → concurrent_c_node-0.20.0}/cc_node/benchmarks/multi_domain.py +0 -0
- {concurrent_c_node-0.18.0 → concurrent_c_node-0.20.0}/cc_node/broker.cjs +0 -0
- {concurrent_c_node-0.18.0 → concurrent_c_node-0.20.0}/cc_node/examples/__init__.py +0 -0
- {concurrent_c_node-0.18.0 → concurrent_c_node-0.20.0}/cc_node/examples/bench_wire.py +0 -0
- {concurrent_c_node-0.18.0 → concurrent_c_node-0.20.0}/cc_node/examples/use_node.py +0 -0
- {concurrent_c_node-0.18.0 → concurrent_c_node-0.20.0}/concurrent_c_node.egg-info/SOURCES.txt +0 -0
- {concurrent_c_node-0.18.0 → concurrent_c_node-0.20.0}/concurrent_c_node.egg-info/dependency_links.txt +0 -0
- {concurrent_c_node-0.18.0 → concurrent_c_node-0.20.0}/concurrent_c_node.egg-info/top_level.txt +0 -0
- {concurrent_c_node-0.18.0 → concurrent_c_node-0.20.0}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: concurrent-c-node
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.20.0
|
|
4
4
|
Summary: JavaScript and npm packages from Python over the Concurrent-C bridge: one spawned Node child per domain, host-controlled lifetime.
|
|
5
5
|
License: MIT
|
|
6
6
|
Project-URL: Repository, https://github.com/sreekotay/concurrent-c
|
|
@@ -87,7 +87,8 @@ Wire: line-JSON on dedicated fds (stdio stays yours). Bulk spill: private
|
|
|
87
87
|
### Promises
|
|
88
88
|
|
|
89
89
|
Awaited in the child before the reply — no `async`/`await` on the
|
|
90
|
-
Python side
|
|
90
|
+
Python side. Same honesty as `concurrent-c-python`: a call blocks until
|
|
91
|
+
the other runtime answers.
|
|
91
92
|
|
|
92
93
|
```python
|
|
93
94
|
fetchish = js.eval('async (x) => { return { doubled: x * 2 } }')
|
|
@@ -76,7 +76,8 @@ Wire: line-JSON on dedicated fds (stdio stays yours). Bulk spill: private
|
|
|
76
76
|
### Promises
|
|
77
77
|
|
|
78
78
|
Awaited in the child before the reply — no `async`/`await` on the
|
|
79
|
-
Python side
|
|
79
|
+
Python side. Same honesty as `concurrent-c-python`: a call blocks until
|
|
80
|
+
the other runtime answers.
|
|
80
81
|
|
|
81
82
|
```python
|
|
82
83
|
fetchish = js.eval('async (x) => { return { doubled: x * 2 } }')
|
|
@@ -30,7 +30,7 @@ import subprocess
|
|
|
30
30
|
import tempfile
|
|
31
31
|
|
|
32
32
|
__all__ = ["create", "JsError", "JsHandle", "__version__"]
|
|
33
|
-
__version__ = "0.
|
|
33
|
+
__version__ = "0.20.0"
|
|
34
34
|
|
|
35
35
|
# Typed buffers cross as typed arrays; big ones spill through shared
|
|
36
36
|
# memory (tmpfs where available) — one memcpy per side, receiver
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: concurrent-c-node
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.20.0
|
|
4
4
|
Summary: JavaScript and npm packages from Python over the Concurrent-C bridge: one spawned Node child per domain, host-controlled lifetime.
|
|
5
5
|
License: MIT
|
|
6
6
|
Project-URL: Repository, https://github.com/sreekotay/concurrent-c
|
|
@@ -87,7 +87,8 @@ Wire: line-JSON on dedicated fds (stdio stays yours). Bulk spill: private
|
|
|
87
87
|
### Promises
|
|
88
88
|
|
|
89
89
|
Awaited in the child before the reply — no `async`/`await` on the
|
|
90
|
-
Python side
|
|
90
|
+
Python side. Same honesty as `concurrent-c-python`: a call blocks until
|
|
91
|
+
the other runtime answers.
|
|
91
92
|
|
|
92
93
|
```python
|
|
93
94
|
fetchish = js.eval('async (x) => { return { doubled: x * 2 } }')
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "concurrent-c-node"
|
|
7
|
-
version = "0.
|
|
7
|
+
version = "0.20.0"
|
|
8
8
|
description = "JavaScript and npm packages from Python over the Concurrent-C bridge: one spawned Node child per domain, host-controlled lifetime."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.8"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{concurrent_c_node-0.18.0 → concurrent_c_node-0.20.0}/concurrent_c_node.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{concurrent_c_node-0.18.0 → concurrent_c_node-0.20.0}/concurrent_c_node.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|