Removed facade on os.walk.

This commit is contained in:
2020-10-13 20:32:05 +02:00
parent b44926a6eb
commit 22fed6f4d3
9 changed files with 53 additions and 55 deletions
-7
View File
@@ -27,13 +27,6 @@ class CurrentDir(object):
pass
def walk(dir):
"""A nice interface to os.walk"""
for record in os.walk(dir):
for f in record[-1]:
yield os.path.join(record[0], f)
def entity_to_unicode(match, exceptions=[], encoding='cp1252',
result_exceptions={}):
"""