Skip to content

Commit a85d8b8

Browse files
committed
fixup
1 parent bf1c65d commit a85d8b8

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"check:mod": "deno check --unstable-ffi mod.ts",
1111
"check:ext": "deno check --unstable-ffi ext/*.ts",
1212
"check:examples": "deno check --unstable-ffi examples/*.ts",
13-
"test": "deno test -A test/test.ts && deno test -A --v8-flags=--expose-gc test/test_with_gc.ts",
13+
"test": "deno test -A --unstable-ffi test/test.ts && deno test -A --v8-flags=--expose-gc test/test_with_gc.ts",
1414
"example:hello_python": "deno run -A --unstable-ffi examples/hello_python.ts",
1515
"example:matplotlib": "deno run -A --unstable-ffi examples/matplotlib.ts",
1616
"example:pip_import": "deno run -A --unstable-ffi examples/pip_import.ts",

src/python.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { cstr, SliceItemRegExp } from "./util.ts";
66
const refregistry = new FinalizationRegistry(py.Py_DecRef);
77

88
// FinalizationRegistry for auto-created callbacks
9-
// Closes the callback when the PyObject holding it is GC'd (meaning Python released it)
9+
// Closes the callback when the PyObject holding it is GC'd
1010
const callbackCleanupRegistry = new FinalizationRegistry(
1111
(callback: Callback) => {
1212
callback.destroy();

0 commit comments

Comments
 (0)