Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Get test passing on wasi
  • Loading branch information
markshannon committed May 3, 2024
commit 71c6d4140837b800cce7d3ac97d638609d4e0d22
2 changes: 1 addition & 1 deletion Lib/test/test_dynamic.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def __missing__(self, key):
return int(key.removeprefix("_number_"))

# Need more than 256 variables to use EXTENDED_ARGS
variables = 400
variables = 300
code = "lambda: " + "+".join(f"_number_{i}" for i in range(variables))
sum_func = eval(code, MyGlobals())
expected = sum(range(variables))
Expand Down