Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Stop printing listdir bytestring output, as the precise list of strings | Martin v. Löwis | 2004-11-07 | 1 | -2/+2 |
| | | | | returned depends on the filesystem encoding. | ||||
* | Patch #790000: Allow os.access to handle Unicode file name. | Martin v. Löwis | 2003-09-12 | 1 | -0/+1 |
| | |||||
* | Prevent failure on the mac, where "mbcs" is not the file system | Mark Hammond | 2003-07-16 | 1 | -2/+3 |
| | | | | encoding. Use sys.getfilesystemencoding(). | ||||
* | Combine the functionality of test_support.run_unittest() | Walter Dörwald | 2003-05-01 | 1 | -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 Peters | 2002-11-09 | 1 | -4/+4 |
| | |||||
* | Add os.path.supports_unicode_filenames for all platforms, | Mark Hammond | 2002-10-08 | 1 | -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öwis | 2002-10-07 | 1 | -12/+11 |
| | |||||
* | This test fails on Win98, which is fine, but when it failed it left | Tim Peters | 2002-10-05 | 1 | -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 Hammond | 2002-10-03 | 1 | -0/+106 |