diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-03-26 23:11:54 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-03-26 23:11:54 (GMT) |
commit | c01ffdf61e33b87c3e5e91a722e27c888ed607ad (patch) | |
tree | d9a97fcac2184cabb89361754146d02346677989 /Lib/lib2to3/tests | |
parent | 39530f8cbed8c5e08571300f7b40d268686641fc (diff) | |
download | cpython-c01ffdf61e33b87c3e5e91a722e27c888ed607ad.zip cpython-c01ffdf61e33b87c3e5e91a722e27c888ed607ad.tar.gz cpython-c01ffdf61e33b87c3e5e91a722e27c888ed607ad.tar.bz2 |
revert unintended changes
Diffstat (limited to 'Lib/lib2to3/tests')
-rw-r--r-- | Lib/lib2to3/tests/test_refactor.py | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/Lib/lib2to3/tests/test_refactor.py b/Lib/lib2to3/tests/test_refactor.py index b6d5b57..73122d8 100644 --- a/Lib/lib2to3/tests/test_refactor.py +++ b/Lib/lib2to3/tests/test_refactor.py @@ -231,23 +231,6 @@ from __future__ import print_function""" os.path.join("a_dir", "stuff.py")] check(tree, tree) - def test_preserve_file_newlines(self): - rt = self.rt(fixers=_2TO3_FIXERS) - for nl in ("\r\n", "\n"): - data = "print y%s%syes%sok%s" % ((nl,) * 4) - handle, tmp = tempfile.mkstemp() - os.close(handle) - try: - with open(tmp, "w") as fp: - fp.write(data) - rt.refactor_file(tmp) - with open(tmp, "r") as fp: - contents = fp.read() - finally: - os.unlink(tmp) - for line in contents.splitlines(True): - self.assertTrue(line.endswith(nl)) - def test_file_encoding(self): fn = os.path.join(TEST_DATA_DIR, "different_encoding.py") self.check_file_refactoring(fn) |