mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
Merged revisions 77419,77435 via svnmerge from
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r77419 | benjamin.peterson | 2010-01-10 21:39:48 +0100 (So, 10 Jan 2010) | 1 line enclose path in quotes to handle paths with spaces correctly #7666 ........ r77435 | alexandre.vassalotti | 2010-01-12 01:36:54 +0100 (Di, 12 Jan 2010) | 2 lines Issue #1967: Add fixer for dictionary views. ........
This commit is contained in:
parent
a36507c64c
commit
a8e34b707c
3 changed files with 69 additions and 5 deletions
|
@ -1215,6 +1215,14 @@ class Test_dict(FixerTestCase):
|
|||
a = "[i for i in d. keys( ) ]"
|
||||
self.check(b, a)
|
||||
|
||||
b = "if d. viewkeys ( ) : pass"
|
||||
a = "if d. keys ( ) : pass"
|
||||
self.check(b, a)
|
||||
|
||||
b = "[i for i in d. viewkeys( ) ]"
|
||||
a = "[i for i in d. keys( ) ]"
|
||||
self.check(b, a)
|
||||
|
||||
def test_trailing_comment(self):
|
||||
b = "d.keys() # foo"
|
||||
a = "list(d.keys()) # foo"
|
||||
|
@ -1234,6 +1242,16 @@ class Test_dict(FixerTestCase):
|
|||
]"""
|
||||
self.check(b, a)
|
||||
|
||||
b = """[i for i in d.iterkeys() # foo
|
||||
]"""
|
||||
a = """[i for i in d.keys() # foo
|
||||
]"""
|
||||
self.check(b, a)
|
||||
|
||||
b = "d.viewitems() # foo"
|
||||
a = "d.items() # foo"
|
||||
self.check(b, a)
|
||||
|
||||
def test_unchanged(self):
|
||||
for wrapper in fixer_util.consuming_calls:
|
||||
s = "s = %s(d.keys())" % wrapper
|
||||
|
@ -1367,6 +1385,46 @@ class Test_dict(FixerTestCase):
|
|||
a = "for x in list(h.keys())[0]: print x"
|
||||
self.check(b, a)
|
||||
|
||||
def test_25(self):
|
||||
b = "d.viewkeys()"
|
||||
a = "d.keys()"
|
||||
self.check(b, a)
|
||||
|
||||
def test_26(self):
|
||||
b = "d.viewitems()"
|
||||
a = "d.items()"
|
||||
self.check(b, a)
|
||||
|
||||
def test_27(self):
|
||||
b = "d.viewvalues()"
|
||||
a = "d.values()"
|
||||
self.check(b, a)
|
||||
|
||||
def test_14(self):
|
||||
b = "[i for i in d.viewkeys()]"
|
||||
a = "[i for i in d.keys()]"
|
||||
self.check(b, a)
|
||||
|
||||
def test_15(self):
|
||||
b = "(i for i in d.viewkeys())"
|
||||
a = "(i for i in d.keys())"
|
||||
self.check(b, a)
|
||||
|
||||
def test_17(self):
|
||||
b = "iter(d.viewkeys())"
|
||||
a = "iter(d.keys())"
|
||||
self.check(b, a)
|
||||
|
||||
def test_18(self):
|
||||
b = "list(d.viewkeys())"
|
||||
a = "list(d.keys())"
|
||||
self.check(b, a)
|
||||
|
||||
def test_19(self):
|
||||
b = "sorted(d.viewkeys())"
|
||||
a = "sorted(d.keys())"
|
||||
self.check(b, a)
|
||||
|
||||
class Test_xrange(FixerTestCase):
|
||||
fixer = "xrange"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue