mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-10 13:35:31 +02:00
Implement #15
This commit is contained in:
19
PythonHome/Lib/lib2to3/fixes/fix_getcwdu.py
Normal file
19
PythonHome/Lib/lib2to3/fixes/fix_getcwdu.py
Normal file
@@ -0,0 +1,19 @@
|
||||
"""
|
||||
Fixer that changes os.getcwdu() to os.getcwd().
|
||||
"""
|
||||
# Author: Victor Stinner
|
||||
|
||||
# Local imports
|
||||
from .. import fixer_base
|
||||
from ..fixer_util import Name
|
||||
|
||||
class FixGetcwdu(fixer_base.BaseFix):
|
||||
BM_compatible = True
|
||||
|
||||
PATTERN = """
|
||||
power< 'os' trailer< dot='.' name='getcwdu' > any* >
|
||||
"""
|
||||
|
||||
def transform(self, node, results):
|
||||
name = results["name"]
|
||||
name.replace(Name(u"getcwd", prefix=name.prefix))
|
||||
Reference in New Issue
Block a user