1
0
mirror of https://github.com/satwikkansal/wtfpython synced 2024-06-20 19:32:59 +02:00

Fix code sample for "65539 local variables" example

This commit is contained in:
Tom Ritchford 2018-01-27 17:33:32 +01:00
parent 12e517b0e3
commit 3c1608256b

3
README.md vendored
View File

@ -2264,7 +2264,8 @@ nan
```py
import dis
exec("""
def f():* """ + """
def f():
""" + """
""".join(["X"+str(x)+"=" + str(x) for x in range(65539)]))
f()