Add tuple comma when not in BUILD_LIST_n

Fixes issue #57

bin/uncompile.py: --verify now works on a single bytecode file. We will
set the output to be something created by tempfile.mktemps
This commit is contained in:
rocky
2016-10-04 23:58:35 -04:00
parent 6908898b90
commit d2b477ae7d
4 changed files with 25 additions and 7 deletions

View File

@@ -0,0 +1,7 @@
# Github Issue #57 with Python 2.7
def some_function():
return ['some_string']
def some_other_function():
some_variable, = some_function()
print(some_variable)