mirror of
https://github.com/python/cpython.git
synced 2025-07-23 03:05:38 +00:00
Track removal of doc string from Module().nodes[0]
This commit is contained in:
parent
8548f9b183
commit
ec5bfd13ca
2 changed files with 4 additions and 14 deletions
|
@ -15,19 +15,14 @@ def is_future(stmt):
|
|||
|
||||
class FutureParser:
|
||||
|
||||
features = ("nested_scopes",)
|
||||
features = ("nested_scopes", "generators", "division")
|
||||
|
||||
def __init__(self):
|
||||
self.found = {} # set
|
||||
|
||||
def visitModule(self, node):
|
||||
if node.doc is None:
|
||||
off = 0
|
||||
else:
|
||||
off = 1
|
||||
|
||||
stmt = node.node
|
||||
for s in stmt.nodes[off:]:
|
||||
for s in stmt.nodes:
|
||||
if not self.check_stmt(s):
|
||||
break
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue