summaryrefslogtreecommitdiff
path: root/Lib/test/test_pep277.py
Commit message (Collapse)AuthorAgeFilesLines
* Stop printing listdir bytestring output, as the precise list of stringsMartin v. Löwis2004-11-071-2/+2
| | | | returned depends on the filesystem encoding.
* Patch #790000: Allow os.access to handle Unicode file name.Martin v. Löwis2003-09-121-0/+1
|
* Prevent failure on the mac, where "mbcs" is not the file systemMark Hammond2003-07-161-2/+3
| | | | encoding. Use sys.getfilesystemencoding().
* Combine the functionality of test_support.run_unittest()Walter Dörwald2003-05-011-14/+12
| | | | | | | | | | 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.
* Whitespace normalization.Tim Peters2002-11-091-4/+4
|
* Add os.path.supports_unicode_filenames for all platforms,Mark Hammond2002-10-081-5/+4
| | | | | | sys.getwindowsversion() on Windows (new enahanced Tim-proof <wink> version), and fix test_pep277.py in a few minor ways. Including doc and NEWS entries.
* Use escaped Unicode literals, according to PEP 8.Martin v. Löwis2002-10-071-12/+11
|
* This test fails on Win98, which is fine, but when it failed it leftTim Peters2002-10-051-6/+17
| | | | | a junk directory behind that caused 4 other tests to fail later. Now it cleans up after itself, and the 4 bogus later failures don't happen.
* Tests for pep277 - Unicode file names on Windows NT.Mark Hammond2002-10-031-0/+106