Skip to content

Commit 1bc5acd

Browse files
author
Hood Chatham
authored
Reduce recursion limit (pyodide#1581)
1 parent 8d7659b commit 1bc5acd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎src/js/pyodide.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ globalThis.loadPyodide = async function (config = {}) {
7171
recurse();
7272
} catch (err) {}
7373

74-
let recursionLimit = depth / 50;
74+
let recursionLimit = depth / 60;
7575
if (recursionLimit > 1000) {
7676
recursionLimit = 1000;
7777
}

0 commit comments

Comments
 (0)