1. b5689de #5827: make sure that normpath preserves unicode by Ezio Melotti · 15 years ago
  2. d846f1d #4351: more appropriate DeprecationWarning stacklevels by Philip Jenvey · 15 years ago
  3. 3f0ef20 #5471: fix expanduser() for $HOME set to "/". by Georg Brandl · 15 years ago
  4. 1763f8a excellent place to use a set() #5069 by Benjamin Peterson · 16 years ago
  5. 0893a0a Add Py3k warnings to os.path.walk by Benjamin Peterson · 16 years ago
  6. 183a084 #1742: don't raise exception on os.path.relpath("a", "a"), but return os.curdir. by Georg Brandl · 17 years ago
  7. 0687561 Bug #1713: posixpath.ismount() claims symlink to a mountpoint is a mountpoint. by Christian Heimes · 17 years ago
  8. da5f16a Bug #1688564: document os.path.join's absolute path behavior in the docstring. by Georg Brandl · 17 years ago
  9. 0d4c06e Whitespace normalization. Ugh, we really need to do this more often. by Neal Norwitz · 17 years ago
  10. 6f18774 Patch 1339796: add a relpath() function to os.path. by Collin Winter · 17 years ago
  11. 05c075d Bug #1115886: os.path.splitext('.cshrc') gives now ('.cshrc', ''). by Martin v. Löwis · 17 years ago
  12. 65ad043 Bug #1560179: speed up posixpath.(dir|base)name by Georg Brandl · 18 years ago
  13. 8d1e5bf Bug #1566602: correct failure of posixpath unittest when $HOME ends by Georg Brandl · 18 years ago
  14. 7b60464 - Move functions common to all path modules into genericpath.py and have the by Jack Diederich · 18 years ago
  15. f0de6a1 Bug #1266283: lexists() is not exported from os.path by Georg Brandl · 19 years ago
  16. 268e61c Bug #1213894: os.path.realpath didn't resolve symlinks that were the first by Georg Brandl · 19 years ago
  17. ae882f7 Patch #941486: add os.path.lexists(). Also fix bug #940578 by using lexists in glob.glob. by Johannes Gijsbers · 20 years ago
  18. a45cacf Whitespace normalization. by Tim Peters · 20 years ago
  19. 4ec4064 bug #990669: os.path.realpath() will resolve symlinks before normalizing the by Johannes Gijsbers · 20 years ago
  20. c75f112 Use isabs() in conditional, not abspath by Andrew M. Kuchling · 20 years ago
  21. 182b5ac Whitespace normalization, via reindent.py. by Tim Peters · 20 years ago
  22. dfa5d95 Remove tabs introduced in last commit. by Brett Cannon · 20 years ago
  23. f50299c posixpath.realpath() now detects symlink loops and returns the path just before by Brett Cannon · 20 years ago
  24. bdec50f Feature request #935915: Add os.path.devnull. by Martin v. Löwis · 20 years ago
  25. 1cd6e4d fix various descriptions of "ctime" (closes SF patch #870287) by Fred Drake · 20 years ago
  26. 74bb7f0 SF Patch 681780: Faster commonprefix (OS independent) by Raymond Hettinger · 21 years ago
  27. cc523fc SF patch #834015: Remove imports of unused modules by Raymond Hettinger · 21 years ago
  28. 2d4e988 back out the darwin supports_unicode_filenames patch; it causes deep problems with the tests by Just van Rossum · 21 years ago
  29. c4bf893 [ 767645 ] correctly set the os.path.supports_unicode_filenames flag for OSX by Just van Rossum · 21 years ago
  30. a9da5ae Use find() instead of looping over the string in expanduser(). by Walter Dörwald · 21 years ago
  31. 77cdeaf Modernize Lib/posixpath.py: Use startswith(), endswith(), rstrip(), by Walter Dörwald · 21 years ago
  32. 117910d Migrate definitions of several platform-dependent path-related variables by Skip Montanaro · 21 years ago
  33. 61cdac6 Fix SF #659228, 'realpath' function missing from os.path by Neal Norwitz · 22 years ago
  34. 96a60e4 Patch #658927: Add getctime to os.path. by Martin v. Löwis · 22 years ago
  35. de33379 Patch #536661: Improve performance of splitext. Add test_macpath. by Martin v. Löwis · 22 years ago
  36. 230a60c Whitespace normalization. by Tim Peters · 22 years ago
  37. 8696ebc Add os.path.supports_unicode_filenames for all platforms, by Mark Hammond · 22 years ago
  38. 609ba81 SF # 555779, import user doesn't work with CGIs by Neal Norwitz · 22 years ago
  39. ec7cf13 Remove another reference to stat.ST_MODE by Neal Norwitz · 22 years ago
  40. 32200ae Replaced obsolete stat module constants with equivalent attributes by Raymond Hettinger · 22 years ago
  41. 54f0222 SF 563203. Replaced 'has_key()' with 'in'. by Raymond Hettinger · 22 years ago
  42. 8ca162f Partial introduction of bools where appropriate. by Guido van Rossum · 22 years ago
  43. bc0e910 Convert a pile of obvious "yes/no" functions to return bool. by Tim Peters · 22 years ago
  44. cf5e6a4 SF bug [#469732] os.path.walk docstring inconsistent. by Tim Peters · 23 years ago
  45. b64bec3 Whitespace normalization. by Tim Peters · 23 years ago
  46. 83eeef4 SF patch #461781 by Chris Lawrence: os.path.realpath - Resolve symlinks: by Guido van Rossum · 23 years ago
  47. a490d58 In walk(), don't die when os.lstat() raises os.error, e.g. because a by Guido van Rossum · 23 years ago
  48. c62c81e __all__ for several more modules by Skip Montanaro · 23 years ago
  49. 658cba6 Whitespace normalization. by Tim Peters · 24 years ago
  50. bf222c9 Fixed posixpath.normpath() to respect two leading slashes, but by Marc-André Lemburg · 24 years ago
  51. 2344fae Whitespace normalization. by Tim Peters · 24 years ago
  52. 8152d32 Update the code to better reflect recommended style: by Fred Drake · 24 years ago
  53. c0ab93e Minor style nits. by Fred Drake · 24 years ago
  54. 22fb839 Remove imports of string when string methods will do. by Fred Drake · 24 years ago
  55. 6235831 revert semantics of commonprefix to work character-by-character by Skip Montanaro · 24 years ago
  56. 018dfae added rewritten normpath from Moshe Zadka that does the right thing with by Skip Montanaro · 24 years ago
  57. a924bb1 split and join on "/" in commonprefix by Skip Montanaro · 24 years ago
  58. 97bc98a fixed semantics of commonprefix to work by path elements instead of characters. by Skip Montanaro · 24 years ago
  59. a05e293 typos fixed by Rob Hooft by Jeremy Hylton · 24 years ago
  60. a9b2b4b Remove some redundant logic from walk() -- there's no need to check by Guido van Rossum · 24 years ago
  61. 84a7459 Patch by Gerrit Holl to avoid doing two stat() calls in a row in walk(). by Guido van Rossum · 24 years ago
  62. 9811861 Mark Favas discovered this: getatime() accidentally returned the MTIME! by Guido van Rossum · 24 years ago
  63. 54f22ed More trivial comment -> docstring transformations by Ka-Ping Yee, who writes: by Guido van Rossum · 25 years ago
  64. f618a48 Correct typo in walk.__doc__ reported by Francois Pinard. by Guido van Rossum · 25 years ago
  65. e294cf6 Add abspath() by Guido van Rossum · 26 years ago
  66. a063303 Patch suggested by Perry Stoll -- os.path.normpath(".//x") returned by Guido van Rossum · 26 years ago
  67. 2bc1f8f Added getsize(), getmtime(), getatime() by Guido van Rossum · 26 years ago
  68. 346f7af Added doc strings and reindented according to new standard, without tabs. by Guido van Rossum · 27 years ago
  69. 9694fca Convert all remaining *simple* cases of regex usage to re usage. by Guido van Rossum · 27 years ago
  70. 384d249 join(): join one or more path components by Barry Warsaw · 27 years ago
  71. 422869a Correct description of splitext(). by Guido van Rossum · 28 years ago
  72. d3876d3 Renamed all occurrences of posix to os. by Guido van Rossum · 28 years ago
  73. bbb4e10 Subtlety: ~root/a should expand to /a, not //a. Everything else unchanged. by Guido van Rossum · 28 years ago
  74. a89b1ba rationalized os.path.split() so split "/a/" yields "/a", "" by Guido van Rossum · 29 years ago
  75. 221df24 add splitdrive() by Guido van Rossum · 29 years ago
  76. 4359860 Let extensions start at the last period after the last slash in the name. by Sjoerd Mullender · 30 years ago
  77. b6775db Merge alpha100 branch back to main trunk by Guido van Rossum · 30 years ago
  78. df56386 * posixpath.py: Fix border cases in normpath ('/foo/..' should return '/') by Guido van Rossum · 31 years ago
  79. c629d34 * change default line numbers for 'list' in pdb.py by Guido van Rossum · 32 years ago
  80. 4732ccf Added emacs.py (for misc/py-connect.el). by Guido van Rossum · 32 years ago
  81. 509d24a fix a typo in samestat() (ST_DEV, not STD_DEV); by Guido van Rossum · 32 years ago
  82. 2684738 Renamed to posixpath; changed def'n of split(). by Guido van Rossum · 32 years ago
  83. 7ac4878 Make nicer comments. Added expanduser() and normcase() and isabs() and isfile(). by Guido van Rossum · 33 years ago
  84. bdfcfcc New == syntax by Guido van Rossum · 33 years ago
  85. 470e761 Use AttributeError. by Guido van Rossum · 33 years ago
  86. d3778f9 Added samefile() function. by Guido van Rossum · 33 years ago
  87. 4d0fdc3 path.cat --> join Added splitext by Guido van Rossum · 33 years ago
  88. 40d9304 Use 'stat' module instead of hardcoding information from <sys/stat.h>. by Guido van Rossum · 34 years ago
  89. c636014 Initial revision by Guido van Rossum · 34 years ago