diff options
Diffstat (limited to 'Lib/lib2to3/fixes/fix_raw_input.py')
-rw-r--r-- | Lib/lib2to3/fixes/fix_raw_input.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/lib2to3/fixes/fix_raw_input.py b/Lib/lib2to3/fixes/fix_raw_input.py index d9130d0..53e7a32 100644 --- a/Lib/lib2to3/fixes/fix_raw_input.py +++ b/Lib/lib2to3/fixes/fix_raw_input.py @@ -8,7 +8,7 @@ from ..fixer_util import Name class FixRawInput(fixer_base.BaseFix): PATTERN = """ - power< name='raw_input' trailer< '(' [any] ')' > > + power< name='raw_input' trailer< '(' [any] ')' > any* > """ def transform(self, node, results): |