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.
1 parent 0bddc9e commit a17ca19Copy full SHA for a17ca19
1 file changed
Lib/test/test_os.py
@@ -792,6 +792,8 @@ class WalkTests(unittest.TestCase):
792
# Wrapper to hide minor differences between os.walk and os.fwalk
793
# to tests both functions with the same code base
794
def walk(self, directory, **kwargs):
795
+ if 'follow_symlinks' in kwargs:
796
+ kwargs['followlinks'] = kwargs.pop('follow_symlinks')
797
return os.walk(directory, **kwargs)
798
799
def setUp(self):
0 commit comments