concurrent-c-node 0.6.0__tar.gz → 0.7.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: concurrent-c-node
3
- Version: 0.6.0
3
+ Version: 0.7.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
@@ -129,8 +129,8 @@ Run Python in your project, get your project's packages: `npm install`
129
129
  next to your program is the whole setup.
130
130
 
131
131
  (Writing Concurrent-C itself rather than Python? There is a zero-IPC
132
- tier: `cc_js_host_new(&a)` boots libnode *inside* your CC program — see
133
- [`examples/recipe_js_host.ccs`](https://github.com/sreekotay/concurrent-c/blob/main/examples/recipe_js_host.ccs).)
132
+ tier: `cc_js_new(false, &a)` boots libnode *inside* your CC program — see
133
+ [`examples/js/jsdemo.shcc`](https://github.com/sreekotay/concurrent-c/blob/main/examples/js/jsdemo.shcc).)
134
134
 
135
135
  ## Publishing
136
136
 
@@ -118,8 +118,8 @@ Run Python in your project, get your project's packages: `npm install`
118
118
  next to your program is the whole setup.
119
119
 
120
120
  (Writing Concurrent-C itself rather than Python? There is a zero-IPC
121
- tier: `cc_js_host_new(&a)` boots libnode *inside* your CC program — see
122
- [`examples/recipe_js_host.ccs`](https://github.com/sreekotay/concurrent-c/blob/main/examples/recipe_js_host.ccs).)
121
+ tier: `cc_js_new(false, &a)` boots libnode *inside* your CC program — see
122
+ [`examples/js/jsdemo.shcc`](https://github.com/sreekotay/concurrent-c/blob/main/examples/js/jsdemo.shcc).)
123
123
 
124
124
  ## Publishing
125
125
 
@@ -10,7 +10,11 @@
10
10
  * Python callable crosses as {$f: id}; invoking it sends a nested `cb`
11
11
  * request and BLOCKS on a synchronous read for the answer — legal
12
12
  * because the protocol is strictly alternating, so nothing else can be
13
- * in flight. stdin EOF is the host vanishing: exit. */
13
+ * in flight. stdin EOF is the host vanishing: exit.
14
+ *
15
+ * cc/include/ccc/script/js.cch embeds this file verbatim (the CC
16
+ * isolated tier speaks the same wire); js_iso_smoke pins the two
17
+ * byte-identical, so an edit here must land there too. */
14
18
  'use strict';
15
19
 
16
20
  const fs = require('fs');
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: concurrent-c-node
3
- Version: 0.6.0
3
+ Version: 0.7.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
@@ -129,8 +129,8 @@ Run Python in your project, get your project's packages: `npm install`
129
129
  next to your program is the whole setup.
130
130
 
131
131
  (Writing Concurrent-C itself rather than Python? There is a zero-IPC
132
- tier: `cc_js_host_new(&a)` boots libnode *inside* your CC program — see
133
- [`examples/recipe_js_host.ccs`](https://github.com/sreekotay/concurrent-c/blob/main/examples/recipe_js_host.ccs).)
132
+ tier: `cc_js_new(false, &a)` boots libnode *inside* your CC program — see
133
+ [`examples/js/jsdemo.shcc`](https://github.com/sreekotay/concurrent-c/blob/main/examples/js/jsdemo.shcc).)
134
134
 
135
135
  ## Publishing
136
136
 
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "concurrent-c-node"
7
- version = "0.6.0"
7
+ version = "0.7.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"