summaryrefslogtreecommitdiffstats
path: root/Source/CTest/cmCTestSubmitCommand.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2018-11-02 12:05:07 (GMT)
committerBrad King <brad.king@kitware.com>2018-11-02 12:05:07 (GMT)
commit3a77329c40803b02fe33ffc86197c1baf291aaff (patch)
treeb8f4b9495810e6c7ed4521a20c86e795e2f826e3 /Source/CTest/cmCTestSubmitCommand.cxx
parent4ccf278f5bc9815f76f393948c09f82092e9f1ec (diff)
downloadCMake-3.12.4.zip
CMake-3.12.4.tar.gz
CMake-3.12.4.tar.bz2
CMake 3.12.4v3.12.4
Diffstat (limited to 'Source/CTest/cmCTestSubmitCommand.cxx')
0 files changed, 0 insertions, 0 deletions
del'>- elif opname == 'STORE_FAST':
- stack.append(names[value])
+ elif opname in ('STORE_FAST', 'STORE_DEREF'):
+ if opname == 'STORE_FAST':
+ stack.append(names[value])
+ else:
+ stack.append(co.co_cellvars[value])
# Special case for sublists of length 1: def foo((bar))
# doesn't generate the UNPACK_TUPLE bytecode, so if
diff --git a/Lib/test/test_inspect.py b/Lib/test/test_inspect.py