mirror of
https://github.com/python/cpython.git
synced 2025-11-25 04:34:37 +00:00
Removed remnants of os.path.walk().
This commit is contained in:
parent
14a767d4f4
commit
4e6531e7de
8 changed files with 8 additions and 8 deletions
|
|
@ -109,7 +109,7 @@ class DocBuild(build):
|
|||
|
||||
def hackHtml(self):
|
||||
self.r = re.compile('<dl><dd>')
|
||||
os.path.walk(self.build_html, self.visit, None)
|
||||
os.walk(self.build_html, self.visit, None)
|
||||
|
||||
def visit(self, dummy, dirname, filenames):
|
||||
for f in filenames:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue