Issue #26881: Restored the name of scan_opcodes_25().

It is better to not change this in bugfix release.
This commit is contained in:
Serhiy Storchaka 2016-05-11 22:19:49 +03:00
parent 3414e4a34f
commit ec5d54575f

View file

@ -336,7 +336,8 @@ class ModuleFinder:
fullname = name + "." + sub
self._add_badmodule(fullname, caller)
def scan_opcodes(self, co):
def scan_opcodes_25(self, co,
unpack = struct.unpack):
# Scan the code, and yield 'interesting' opcode combinations
code = co.co_code
names = co.co_names
@ -359,7 +360,7 @@ class ModuleFinder:
def scan_code(self, co, m):
code = co.co_code
scanner = self.scan_opcodes
scanner = self.scan_opcodes_25
for what, args in scanner(co):
if what == "store":
name, = args