Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 345e78e + a17ca19 commit 85896f7Copy full SHA for 85896f7
1 file changed
Lib/test/test_os.py
@@ -791,6 +791,8 @@ class WalkTests(unittest.TestCase):
791
# Wrapper to hide minor differences between os.walk and os.fwalk
792
# to tests both functions with the same code base
793
def walk(self, directory, **kwargs):
794
+ if 'follow_symlinks' in kwargs:
795
+ kwargs['followlinks'] = kwargs.pop('follow_symlinks')
796
return os.walk(directory, **kwargs)
797
798
def setUp(self):
0 commit comments