sandboxedjs 0.1.64 → 0.1.66
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.
- package/dist/index.cjs +4 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/python-abi.cjs +3 -3
- package/dist/python-abi.cjs.map +1 -1
- package/dist/python-abi.js +3 -3
- package/dist/python-abi.js.map +1 -1
- package/dist/python-worker.js +12 -2
- package/dist/python-worker.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -17962,7 +17962,7 @@ var wheels_default = {
|
|
|
17962
17962
|
|
|
17963
17963
|
// package.json
|
|
17964
17964
|
var package_default = {
|
|
17965
|
-
version: "0.1.
|
|
17965
|
+
version: "0.1.66"};
|
|
17966
17966
|
|
|
17967
17967
|
// src/runtime/python/config.ts
|
|
17968
17968
|
var bundledManifest = {
|
|
@@ -19157,6 +19157,9 @@ var VirtualTcpNetwork = class {
|
|
|
19157
19157
|
|
|
19158
19158
|
// src/runtime/python/syscall-server.ts
|
|
19159
19159
|
var MAX_TRANSFER = 8 * 1024 * 1024;
|
|
19160
|
+
var POLLIN = 1;
|
|
19161
|
+
var POLLOUT = 4;
|
|
19162
|
+
var POLLHUP = 16;
|
|
19160
19163
|
function createHostAbiServer(proc) {
|
|
19161
19164
|
const files = new FileService(proc.vfs, proc.cred);
|
|
19162
19165
|
const started = Date.now();
|
|
@@ -19519,9 +19522,6 @@ function createHostAbiServer(proc) {
|
|
|
19519
19522
|
if (proc.signal.aborted) throw new PosixError(Errno.EINTR);
|
|
19520
19523
|
}
|
|
19521
19524
|
}
|
|
19522
|
-
const POLLIN = 1;
|
|
19523
|
-
const POLLOUT = 4;
|
|
19524
|
-
const POLLHUP = 16;
|
|
19525
19525
|
async function poll(requests, timeoutMs) {
|
|
19526
19526
|
const deadline = timeoutMs < 0 ? Infinity : Date.now() + timeoutMs;
|
|
19527
19527
|
for (; ; ) {
|