summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_unicode_file.py
Commit message (Collapse)AuthorAgeFilesLines
* Whitespace normalization.Tim Peters2003-04-241-1/+1
|
* Test for UnicodeError instead of ImportError to determine whetherMartin v. Löwis2003-03-171-1/+1
| | | | the test file name can be encoded.
* Skip the test if TESTFN_ENCODING is None. Fixes #699386.Martin v. Löwis2003-03-081-19/+6
|
* Patch 594001: PEP 277 - Unicode file name support for Windows NT.Mark Hammond2002-10-031-0/+4
|
* Get rid of relative imports in all unittests. Now anything thatBarry Warsaw2002-07-231-2/+2
| | | | | | | | | | | 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. :)
* Disable code intended for PEP 277.Guido van Rossum2002-01-151-5/+6
|
* Ensure Unicode filenames work with glob - they already do, but the test ↵Mark Hammond2002-01-071-1/+9
| | | | seems worth keeping.
* Patch #449815: Set filesystemencoding based on CODESET.Martin v. Löwis2001-09-051-1/+15
|
* Add support for Windows using "mbcs" as the default Unicode encoding when ↵Mark Hammond2001-05-131-0/+81
dealing with the file system. As discussed on python-dev and in patch 410465.