mirror of
https://github.com/satwikkansal/wtfpython
synced 2025-07-04 20:38:06 +02:00
Fix code sample for "65539 local variables" example
This commit is contained in:
parent
54ed75f77d
commit
a9e72e03f4
1 changed files with 2 additions and 1 deletions
3
README.md
vendored
3
README.md
vendored
|
@ -2265,7 +2265,8 @@ nan
|
|||
```py
|
||||
import dis
|
||||
exec("""
|
||||
def f():* """ + """
|
||||
def f():
|
||||
""" + """
|
||||
""".join(["X"+str(x)+"=" + str(x) for x in range(65539)]))
|
||||
|
||||
f()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue