mirror of
https://github.com/python/cpython.git
synced 2025-12-15 21:44:50 +00:00
Merged revisions 66117 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
................
r66117 | benjamin.peterson | 2008-09-01 12:17:22 -0500 (Mon, 01 Sep 2008) | 25 lines
Merged revisions 65887,65889,65967-65968,65981 via svnmerge from
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3
........
r65887 | benjamin.peterson | 2008-08-19 17:45:04 -0500 (Tue, 19 Aug 2008) | 1 line
allow the raw_input fixer to handle calls after the raw_input (ie. raw_input().split())
........
r65889 | benjamin.peterson | 2008-08-19 18:11:03 -0500 (Tue, 19 Aug 2008) | 1 line
no need for 2.4 compatibility now
........
r65967 | benjamin.peterson | 2008-08-21 18:43:37 -0500 (Thu, 21 Aug 2008) | 1 line
allow a Call to have no arguments
........
r65968 | benjamin.peterson | 2008-08-21 18:45:13 -0500 (Thu, 21 Aug 2008) | 1 line
add a fixer for sys.exc_info etc by Jeff Balogh #2357
........
r65981 | benjamin.peterson | 2008-08-22 15:41:30 -0500 (Fri, 22 Aug 2008) | 1 line
add a fixer to add parenthese for list and gen comps #2367
........
................
This commit is contained in:
parent
2cb598f131
commit
cf60382420
6 changed files with 185 additions and 13 deletions
|
|
@ -1340,6 +1340,21 @@ class Test_raw_input(FixerTestCase):
|
|||
a = """x = input(foo(a) + 6)"""
|
||||
self.check(b, a)
|
||||
|
||||
def test_5(self):
|
||||
b = """x = raw_input(invite).split()"""
|
||||
a = """x = input(invite).split()"""
|
||||
self.check(b, a)
|
||||
|
||||
def test_6(self):
|
||||
b = """x = raw_input(invite) . split ()"""
|
||||
a = """x = input(invite) . split ()"""
|
||||
self.check(b, a)
|
||||
|
||||
def test_8(self):
|
||||
b = "x = int(raw_input())"
|
||||
a = "x = int(input())"
|
||||
self.check(b, a)
|
||||
|
||||
class Test_funcattrs(FixerTestCase):
|
||||
fixer = "funcattrs"
|
||||
|
||||
|
|
@ -3330,6 +3345,98 @@ class Test_import(FixerTestCase):
|
|||
"""
|
||||
self.check_both(b, a)
|
||||
|
||||
class Test_sys_exc(FixerTestCase):
|
||||
fixer = "sys_exc"
|
||||
|
||||
def test_0(self):
|
||||
b = "sys.exc_type"
|
||||
a = "sys.exc_info()[0]"
|
||||
self.check(b, a)
|
||||
|
||||
def test_1(self):
|
||||
b = "sys.exc_value"
|
||||
a = "sys.exc_info()[1]"
|
||||
self.check(b, a)
|
||||
|
||||
def test_2(self):
|
||||
b = "sys.exc_traceback"
|
||||
a = "sys.exc_info()[2]"
|
||||
self.check(b, a)
|
||||
|
||||
def test_3(self):
|
||||
b = "sys.exc_type # Foo"
|
||||
a = "sys.exc_info()[0] # Foo"
|
||||
self.check(b, a)
|
||||
|
||||
def test_4(self):
|
||||
b = "sys. exc_type"
|
||||
a = "sys. exc_info()[0]"
|
||||
self.check(b, a)
|
||||
|
||||
def test_5(self):
|
||||
b = "sys .exc_type"
|
||||
a = "sys .exc_info()[0]"
|
||||
self.check(b, a)
|
||||
|
||||
|
||||
class Test_paren(FixerTestCase):
|
||||
fixer = "paren"
|
||||
|
||||
def test_0(self):
|
||||
b = """[i for i in 1, 2 ]"""
|
||||
a = """[i for i in (1, 2) ]"""
|
||||
self.check(b, a)
|
||||
|
||||
def test_1(self):
|
||||
b = """[i for i in 1, 2, ]"""
|
||||
a = """[i for i in (1, 2,) ]"""
|
||||
self.check(b, a)
|
||||
|
||||
def test_2(self):
|
||||
b = """[i for i in 1, 2 ]"""
|
||||
a = """[i for i in (1, 2) ]"""
|
||||
self.check(b, a)
|
||||
|
||||
def test_3(self):
|
||||
b = """[i for i in 1, 2 if i]"""
|
||||
a = """[i for i in (1, 2) if i]"""
|
||||
self.check(b, a)
|
||||
|
||||
def test_4(self):
|
||||
b = """[i for i in 1, 2 ]"""
|
||||
a = """[i for i in (1, 2) ]"""
|
||||
self.check(b, a)
|
||||
|
||||
def test_5(self):
|
||||
b = """(i for i in 1, 2)"""
|
||||
a = """(i for i in (1, 2))"""
|
||||
self.check(b, a)
|
||||
|
||||
def test_6(self):
|
||||
b = """(i for i in 1 ,2 if i)"""
|
||||
a = """(i for i in (1 ,2) if i)"""
|
||||
self.check(b, a)
|
||||
|
||||
def test_unchanged_0(self):
|
||||
s = """[i for i in (1, 2)]"""
|
||||
self.unchanged(s)
|
||||
|
||||
def test_unchanged_1(self):
|
||||
s = """[i for i in foo()]"""
|
||||
self.unchanged(s)
|
||||
|
||||
def test_unchanged_2(self):
|
||||
s = """[i for i in (1, 2) if nothing]"""
|
||||
self.unchanged(s)
|
||||
|
||||
def test_unchanged_3(self):
|
||||
s = """(i for i in (1, 2))"""
|
||||
self.unchanged(s)
|
||||
|
||||
def test_unchanged_4(self):
|
||||
s = """[i for i in m]"""
|
||||
self.unchanged(s)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
import __main__
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue