mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
Issue #26881: Restored the name of scan_opcodes_25().
It is better to not change this in bugfix release.
This commit is contained in:
parent
3414e4a34f
commit
ec5d54575f
1 changed files with 3 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue