summaryrefslogtreecommitdiff
path: root/Lib/test/test_posixpath.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-10496: posixpath.expanduser() catchs pwd.getpwuid() error (GH-10919)Miss Islington (bot)2018-12-051-29/+49
* bpo-33861: Minor improvements of tests for os.path. (GH-7715)Miss Islington (bot)2018-06-161-17/+10
* bpo-32964: Reuse a testing implementation of the path protocol in tests. (GH-...Miss Islington (bot)2018-03-021-11/+3
* Issue #26027, #27524: Add PEP 519/__fspath__() support to os andBrett Cannon2016-08-261-0/+80
* #2466: ismount now recognizes mount points user can't access.R David Murray2016-08-181-2/+22
* Issue #24950: Fixed expanduser tests when the users home directory in pwd is ...Serhiy Storchaka2016-05-031-4/+9
* Use support.change_cwd() in tests.Serhiy Storchaka2015-09-061-24/+13
|\
| * Use support.change_cwd() in tests.Serhiy Storchaka2015-09-061-24/+13
* | Issue #10395: Added os.path.commonpath(). Implemented in posixpath and ntpath.Serhiy Storchaka2015-03-311-0/+54
* | Issue #21883: os.path.join() and os.path.relpath() now raise a TypeError withSerhiy Storchaka2014-10-041-16/+0
* | Issue #22034: Improve handling of wrong argument types in posixpath.join().Serhiy Storchaka2014-08-241-13/+13
|\ \ | |/
| * Issue #22034: Got rid of misleading error message for bytearray arguments inSerhiy Storchaka2014-08-241-12/+8
|/
* #17809: merge with 3.3.Ezio Melotti2013-05-091-1/+2
|\
| * #17809: fix a test failure in test_expanduser when $HOME has a trailing /. P...Ezio Melotti2013-05-091-1/+2
* | #17315: merge with 3.3.Ezio Melotti2013-03-011-0/+1
|\ \ | |/
| * #17315: merge with 3.2.Ezio Melotti2013-03-011-0/+1
| |\
| | * #17315: unlink a file that test_posixpath was leaving around.Ezio Melotti2013-03-011-0/+1
* | | Disable posixpath.realpath() tests on Windows (fix for issue #6975).Serhiy Storchaka2013-02-181-0/+2
|\ \ \ | |/ /
| * | Disable posixpath.realpath() tests on Windows (fix for issue #6975).Serhiy Storchaka2013-02-181-0/+2
| |\ \ | | |/
| | * Disable posixpath.realpath() tests on Windows (fix for issue #6975).Serhiy Storchaka2013-02-181-0/+2
* | | Fix posixpath.realpath() for multiple pardirs (fixes issue #6975).Serhiy Storchaka2013-02-181-0/+18
|\ \ \ | |/ /
| * | Fix posixpath.realpath() for multiple pardirs (fixes issue #6975).Serhiy Storchaka2013-02-181-0/+18
| |\ \ | | |/
| | * Fix posixpath.realpath() for multiple pardirs (fixes issue #6975).Serhiy Storchaka2013-02-181-0/+18
* | | Issue #6975: os.path.realpath() now correctly resolves multiple nested symlin...Serhiy Storchaka2013-02-101-0/+55
|\ \ \ | |/ /
| * | Issue #6975: os.path.realpath() now correctly resolves multiple nested symlin...Serhiy Storchaka2013-02-101-0/+55
| |\ \ | | |/
| | * Issue #6975: os.path.realpath() now correctly resolves multiple nested symlin...Serhiy Storchaka2013-02-101-0/+55
* | | #16852: merge with 3.3.Ezio Melotti2013-01-101-6/+2
|\ \ \ | |/ /
| * | #16852: test_genericpath, test_posixpath, test_ntpath, and test_macpath now w...Ezio Melotti2013-01-101-6/+2
* | | Fix #11939. Set st_dev attribute on Windows to simplify os.path.samefile.Brian Curtin2012-12-261-62/+0
|/ /
* | Use posixpath.join() explicitely in posixpath.join() testHynek Schlawack2012-07-171-1/+1
|\ \ | |/
| * Use posixpath.join() explicitely in posixpath.join() testHynek Schlawack2012-07-171-1/+1
* | #15377: Make posixpath.join() more strict when checking for str/bytes mixHynek Schlawack2012-07-171-10/+14
|\ \ | |/
| * #15377: Make posixpath.join() more strict when checking for str/bytes mixHynek Schlawack2012-07-171-10/+14
* | Fix context manager use in posixpath.join() testsHynek Schlawack2012-07-171-9/+12
|\ \ | |/
| * Fix context manager use in posixpath.join() testsHynek Schlawack2012-07-171-9/+12
* | #15180: Clarify posixpath.join() error message when mixing str & bytesHynek Schlawack2012-07-151-2/+9
|\ \ | |/
| * #15180: Clarify posixpath.join() error message when mixing str & bytesHynek Schlawack2012-07-151-2/+9
* | MERGE: Closes #14768: os.path.expanduser('~/a') doesn't works correctly when ...Jesus Cea2012-05-101-0/+1
|\ \ | |/
| * Closes #14768: os.path.expanduser('~/a') doesn't works correctly when HOME is...Jesus Cea2012-05-101-0/+1
* | Issue #13374: The Windows bytes API has been deprecated in the os module. UseVictor Stinner2011-11-151-5/+7
|/
* Closes issue 11503. Improves test coverage of posixpath.Michael Foord2011-03-161-0/+63
* Fix #9333. The symlink function is always available now, raising OSErrorBrian Curtin2010-12-281-1/+1
* Fix #9333. Expose os.symlink on Windows only when usable.Brian Curtin2010-12-021-8/+15
* Issue #5117: Case normalization was needed on ntpath.relpath(). AndHirokazu Yamamoto2010-10-181-0/+18
* Fix the breakage of Lib/tarfile.py on non-Windows platforms due toBrian Curtin2010-07-091-0/+1
* Implement #1578269. Patch by Jason R. Coombs.Brian Curtin2010-07-081-175/+170
* Merged revisions 78018,78035-78040,78042-78043,78046,78048-78052,78054,78059,...Georg Brandl2010-03-141-1/+1
* Merge other tests from test_*path.py into test_genericpath.CommonTest, and do...Florent Xicluna2010-03-081-72/+0
* Merged revisions 78734-78735 via svnmerge fromFlorent Xicluna2010-03-081-132/+9
* Merged revisions 78249 via svnmerge fromEzio Melotti2010-02-201-6/+4