summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_univnewlines.py
Commit message (Collapse)AuthorAgeFilesLines
* Try to restore the old test_file and test_univnewlines as new, different filesAntoine Pitrou2009-06-121-0/+3
| | | | (with the right revisions this time, hopefully)
* Issue #6215: backport the 3.1 io libAntoine Pitrou2009-06-121-39/+42
|
* explicitly close filesPhilip Jenvey2009-05-281-23/+22
|
* remove test_support.TestSkipped and just use unittest.SkipTestBenjamin Peterson2009-03-261-1/+1
|
* Patch # 188 by Philip Jenvey.Guido van Rossum2007-09-221-0/+7
| | | | | Make tell() mark CRLF as a newline. With unit test.
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-121-3/+3
| | | | From SF patch #852334.
* Combine the functionality of test_support.run_unittest()Walter Dörwald2003-05-011-5/+7
| | | | | | | | | | and test_support.run_classtests() into run_unittest() and use it wherever possible. Also don't use "from test.test_support import ...", but "from test import test_support" in a few spots. From SF patch #662807.
* Get rid of relative imports in all unittests. Now anything thatBarry Warsaw2002-07-231-1/+1
| | | | | | | | | | | imports e.g. test_support must do so using an absolute package name such as "import test.test_support" or "from test import test_support". This also updates the README in Lib/test, and gets rid of the duplicate data dirctory in Lib/test/data (replaced by Lib/email/test/data). Now Tim and Jack can have at it. :)
* Assorted code cleanups for readability. Greatly boosted the size of theTim Peters2002-04-211-26/+33
| | | | | | test data: this test fails on WIndows now if universal newlines are enabled (which they aren't yet, by default). I don't know whether the test will also fail on Linux now.
* Whitespace normalization.Tim Peters2002-04-161-15/+15
|
* Test suite for universal newline support.Jack Jansen2002-04-141-0/+114