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.js
CHANGED
|
@@ -17945,7 +17945,7 @@ var wheels_default = {
|
|
|
17945
17945
|
|
|
17946
17946
|
// package.json
|
|
17947
17947
|
var package_default = {
|
|
17948
|
-
version: "0.1.
|
|
17948
|
+
version: "0.1.66"};
|
|
17949
17949
|
|
|
17950
17950
|
// src/runtime/python/config.ts
|
|
17951
17951
|
var bundledManifest = {
|
|
@@ -19140,6 +19140,9 @@ var VirtualTcpNetwork = class {
|
|
|
19140
19140
|
|
|
19141
19141
|
// src/runtime/python/syscall-server.ts
|
|
19142
19142
|
var MAX_TRANSFER = 8 * 1024 * 1024;
|
|
19143
|
+
var POLLIN = 1;
|
|
19144
|
+
var POLLOUT = 4;
|
|
19145
|
+
var POLLHUP = 16;
|
|
19143
19146
|
function createHostAbiServer(proc) {
|
|
19144
19147
|
const files = new FileService(proc.vfs, proc.cred);
|
|
19145
19148
|
const started = Date.now();
|
|
@@ -19502,9 +19505,6 @@ function createHostAbiServer(proc) {
|
|
|
19502
19505
|
if (proc.signal.aborted) throw new PosixError(Errno.EINTR);
|
|
19503
19506
|
}
|
|
19504
19507
|
}
|
|
19505
|
-
const POLLIN = 1;
|
|
19506
|
-
const POLLOUT = 4;
|
|
19507
|
-
const POLLHUP = 16;
|
|
19508
19508
|
async function poll(requests, timeoutMs) {
|
|
19509
19509
|
const deadline = timeoutMs < 0 ? Infinity : Date.now() + timeoutMs;
|
|
19510
19510
|
for (; ; ) {
|