Przeglądaj źródła

Fixing nlocals

master
Ben Kurtovic 12 lat temu
rodzic
commit
83562a2e83
1 zmienionych plików z 1 dodań i 1 usunięć
  1. +1
    -1
      func_smash.py

+ 1
- 1
func_smash.py Wyświetl plik

@@ -15,7 +15,7 @@ def make_chain(funcs):

def make_function(chain, name, argcount=1):
codes, constants, varnames = _make_codes(chain)
nlocals = len(varnames) + argcount
nlocals = len(varnames)
stacksize = 1024 # High limit?
flags = 0 # Denotes funcs with *args and/or **kwargs; nothing for now
codestring = "".join([chr(code) for code in codes])


Ładowanie…
Anuluj
Zapisz