- 549c197 Issue #22034: Got rid of misleading error message for bytearray arguments in by Serhiy Storchaka · 10 years ago
- 845fd9a Issue #3485: remove misleading comment by Ned Deily · 10 years ago
- 1392f68 Fixed typo in previous commit (issue #6815). by Serhiy Storchaka · 11 years ago
- ffadbb7 Fixed typo in previous commit (issue #6815). by Serhiy Storchaka · 11 years ago
- 7dfaa27 Issue #6815: os.path.expandvars() now supports non-ASCII environment by Serhiy Storchaka · 11 years ago
- dbb1019 Issue #6815: os.path.expandvars() now supports non-ASCII environment by Serhiy Storchaka · 11 years ago
- a3852ff Add in a comment that was removed in 240adc564539 (requested by Victor Stinner) by Brian Curtin · 11 years ago
- 06f6fbf Fix #18530. Remove extra stat call from posixpath.ismount by Brian Curtin · 11 years ago
- 2a47954 Fix posixpath.realpath() for multiple pardirs (fixes issue #6975). by Serhiy Storchaka · 12 years ago
- 407aa2d Fix posixpath.realpath() for multiple pardirs (fixes issue #6975). by Serhiy Storchaka · 12 years ago
- 467393d Fix posixpath.realpath() for multiple pardirs (fixes issue #6975). by Serhiy Storchaka · 12 years ago
- f261923 Issue #6975: os.path.realpath() now correctly resolves multiple nested symlinks on POSIX platforms. by Serhiy Storchaka · 12 years ago
- d83c824 Issue #6975: os.path.realpath() now correctly resolves multiple nested symlinks on POSIX platforms. by Serhiy Storchaka · 12 years ago
- df32691 Issue #6975: os.path.realpath() now correctly resolves multiple nested symlinks on POSIX platforms. by Serhiy Storchaka · 12 years ago
- 490b32a Fix #11939. Set st_dev attribute on Windows to simplify os.path.samefile. by Brian Curtin · 12 years ago
- ad28c7f Issue #16706: get rid of os.error by Andrew Svetlov · 12 years ago
- 779b63d Merge #15342: Add clarifying sentence to posixpath.join docstring. by R David Murray · 12 years ago
- e3de175 #15342: Add clarifying sentence to posixpath.join docstring. by R David Murray · 12 years ago
- 1815191 #15377: Make posixpath.join() more strict when checking for str/bytes mix by Hynek Schlawack · 12 years ago
- c5a4566 #15377: Make posixpath.join() more strict when checking for str/bytes mix by Hynek Schlawack · 12 years ago
- 9ac4d88 #15180: Clarify posixpath.join() error message when mixing str & bytes by Hynek Schlawack · 12 years ago
- 4774946 #15180: Clarify posixpath.join() error message when mixing str & bytes by Hynek Schlawack · 12 years ago
- 7f0d888 Closes #14768: os.path.expanduser('~/a') doesn't works correctly when HOME is '/' by Jesus Cea · 13 years ago
- b08820a Issue #5117: Case normalization was needed on ntpath.relpath(). And by Hirokazu Yamamoto · 14 years ago
- 16004ac Use os.fsencode() to support surrogates by Victor Stinner · 14 years ago
- e797c16 Issue #767645: Set os.path.supports_unicode_filenames to True in posixpath by Victor Stinner · 14 years ago
- e6c5950 #5551: symbolic links never can be mount points. Fixes the fix for #1713. by Georg Brandl · 14 years ago
- 5a3ef5b #9018: os.path.normcase() now raises a TypeError if the argument is not str or bytes. by Ezio Melotti · 14 years ago
- 89fad14 Merged revisions 78018,78035-78040,78042-78043,78046,78048-78052,78054,78059,78075-78080 via svnmerge from by Georg Brandl · 15 years ago
- ef3e4c2 Merged revisions 70980,71059,71225,71234,71241,71243,71249,71251,71255,71266,71299,71329,71397-71398,71486 via svnmerge from by Benjamin Peterson · 16 years ago
- c4bbc8d Merged revisions 68884,68973,68978,69003,69083,69112-69113 via svnmerge from by Benjamin Peterson · 16 years ago
- f0af3e3 Issue #3187: Better support for "undecodable" filenames. Code by Victor by Guido van Rossum · 16 years ago
- fd03645 #2834: Change re module semantics, so that str and bytes mixing is forbidden, by Antoine Pitrou · 16 years ago
- d71ca41 Remove os.path.walk by Benjamin Peterson · 17 years ago
- faf2f63 Merged revisions 59703-59773 via svnmerge from by Christian Heimes · 17 years ago
- 04110fb Merged revisions 57221-57391 via svnmerge from by Guido van Rossum · 17 years ago
- d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 18 years ago
- 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
- f0de6a1 Bug #1266283: lexists() is not exported from os.path by Georg Brandl · 19 years ago
- 268e61c Bug #1213894: os.path.realpath didn't resolve symlinks that were the first by Georg Brandl · 19 years ago
- ae882f7 Patch #941486: add os.path.lexists(). Also fix bug #940578 by using lexists in glob.glob. by Johannes Gijsbers · 20 years ago
- a45cacf Whitespace normalization. by Tim Peters · 20 years ago
- 4ec4064 bug #990669: os.path.realpath() will resolve symlinks before normalizing the by Johannes Gijsbers · 20 years ago
- c75f112 Use isabs() in conditional, not abspath by Andrew M. Kuchling · 20 years ago
- 182b5ac Whitespace normalization, via reindent.py. by Tim Peters · 20 years ago
- dfa5d95 Remove tabs introduced in last commit. by Brett Cannon · 20 years ago
- f50299c posixpath.realpath() now detects symlink loops and returns the path just before by Brett Cannon · 20 years ago
- bdec50f Feature request #935915: Add os.path.devnull. by Martin v. Löwis · 20 years ago
- 1cd6e4d fix various descriptions of "ctime" (closes SF patch #870287) by Fred Drake · 21 years ago
- 74bb7f0 SF Patch 681780: Faster commonprefix (OS independent) by Raymond Hettinger · 21 years ago
- cc523fc SF patch #834015: Remove imports of unused modules by Raymond Hettinger · 21 years ago
- 2d4e988 back out the darwin supports_unicode_filenames patch; it causes deep problems with the tests by Just van Rossum · 21 years ago
- c4bf893 [ 767645 ] correctly set the os.path.supports_unicode_filenames flag for OSX by Just van Rossum · 21 years ago
- a9da5ae Use find() instead of looping over the string in expanduser(). by Walter Dörwald · 21 years ago
- 77cdeaf Modernize Lib/posixpath.py: Use startswith(), endswith(), rstrip(), by Walter Dörwald · 21 years ago
- 117910d Migrate definitions of several platform-dependent path-related variables by Skip Montanaro · 22 years ago
- 61cdac6 Fix SF #659228, 'realpath' function missing from os.path by Neal Norwitz · 22 years ago
- 96a60e4 Patch #658927: Add getctime to os.path. by Martin v. Löwis · 22 years ago
- de33379 Patch #536661: Improve performance of splitext. Add test_macpath. by Martin v. Löwis · 22 years ago
- 230a60c Whitespace normalization. by Tim Peters · 22 years ago
- 8696ebc Add os.path.supports_unicode_filenames for all platforms, by Mark Hammond · 22 years ago
- 609ba81 SF # 555779, import user doesn't work with CGIs by Neal Norwitz · 22 years ago
- ec7cf13 Remove another reference to stat.ST_MODE by Neal Norwitz · 22 years ago
- 32200ae Replaced obsolete stat module constants with equivalent attributes by Raymond Hettinger · 22 years ago
- 54f0222 SF 563203. Replaced 'has_key()' with 'in'. by Raymond Hettinger · 22 years ago
- 8ca162f Partial introduction of bools where appropriate. by Guido van Rossum · 23 years ago
- bc0e910 Convert a pile of obvious "yes/no" functions to return bool. by Tim Peters · 23 years ago
- cf5e6a4 SF bug [#469732] os.path.walk docstring inconsistent. by Tim Peters · 23 years ago
- b64bec3 Whitespace normalization. by Tim Peters · 23 years ago
- 83eeef4 SF patch #461781 by Chris Lawrence: os.path.realpath - Resolve symlinks: by Guido van Rossum · 23 years ago
- a490d58 In walk(), don't die when os.lstat() raises os.error, e.g. because a by Guido van Rossum · 24 years ago
- c62c81e __all__ for several more modules by Skip Montanaro · 24 years ago
- 658cba6 Whitespace normalization. by Tim Peters · 24 years ago
- bf222c9 Fixed posixpath.normpath() to respect two leading slashes, but by Marc-André Lemburg · 24 years ago
- 2344fae Whitespace normalization. by Tim Peters · 24 years ago
- 8152d32 Update the code to better reflect recommended style: by Fred Drake · 24 years ago
- c0ab93e Minor style nits. by Fred Drake · 24 years ago
- 22fb839 Remove imports of string when string methods will do. by Fred Drake · 24 years ago
- 6235831 revert semantics of commonprefix to work character-by-character by Skip Montanaro · 24 years ago
- 018dfae added rewritten normpath from Moshe Zadka that does the right thing with by Skip Montanaro · 24 years ago
- a924bb1 split and join on "/" in commonprefix by Skip Montanaro · 24 years ago
- 97bc98a fixed semantics of commonprefix to work by path elements instead of characters. by Skip Montanaro · 24 years ago
- a05e293 typos fixed by Rob Hooft by Jeremy Hylton · 24 years ago
- a9b2b4b Remove some redundant logic from walk() -- there's no need to check by Guido van Rossum · 25 years ago
- 84a7459 Patch by Gerrit Holl to avoid doing two stat() calls in a row in walk(). by Guido van Rossum · 25 years ago
- 9811861 Mark Favas discovered this: getatime() accidentally returned the MTIME! by Guido van Rossum · 25 years ago
- 54f22ed More trivial comment -> docstring transformations by Ka-Ping Yee, who writes: by Guido van Rossum · 25 years ago
- f618a48 Correct typo in walk.__doc__ reported by Francois Pinard. by Guido van Rossum · 25 years ago
- e294cf6 Add abspath() by Guido van Rossum · 26 years ago
- a063303 Patch suggested by Perry Stoll -- os.path.normpath(".//x") returned by Guido van Rossum · 26 years ago
- 2bc1f8f Added getsize(), getmtime(), getatime() by Guido van Rossum · 26 years ago
- 346f7af Added doc strings and reindented according to new standard, without tabs. by Guido van Rossum · 27 years ago
- 9694fca Convert all remaining *simple* cases of regex usage to re usage. by Guido van Rossum · 27 years ago
- 384d249 join(): join one or more path components by Barry Warsaw · 28 years ago
- 422869a Correct description of splitext(). by Guido van Rossum · 28 years ago
- d3876d3 Renamed all occurrences of posix to os. by Guido van Rossum · 28 years ago
- bbb4e10 Subtlety: ~root/a should expand to /a, not //a. Everything else unchanged. by Guido van Rossum · 29 years ago
- a89b1ba rationalized os.path.split() so split "/a/" yields "/a", "" by Guido van Rossum · 29 years ago
- 221df24 add splitdrive() by Guido van Rossum · 29 years ago
- 4359860 Let extensions start at the last period after the last slash in the name. by Sjoerd Mullender · 30 years ago