1. b08820a Issue #5117: Case normalization was needed on ntpath.relpath(). And by Hirokazu Yamamoto · 14 years ago
  2. e8e8042 Fix #9790 again. Rather than handle NotImplementedError at runtime as by Brian Curtin · 14 years ago
  3. 0dac808 Fix #9790: Rework the imports necessary for ntpath.samefile and by Brian Curtin · 14 years ago
  4. 13a0db5 Fix some errors that #7566 introduced on non-Windows platforms due to by Brian Curtin · 14 years ago
  5. 6285774 Implement #7566 - os.path.sameopenfile for Windows. by Brian Curtin · 14 years ago
  6. cfb6821 #7909: the prefixes \\.\ and \\?\ indicate special Windows paths, do not try to manipulate them. See http://msdn.microsoft.com/en-us/library/aa365247%28VS.85%29.aspx for details. by Georg Brandl · 14 years ago
  7. 599b65d Use augassign. by Georg Brandl · 14 years ago
  8. d40e6f7 Implement #1578269. Patch by Jason R. Coombs. by Brian Curtin · 14 years ago
  9. 5a3ef5b #9018: os.path.normcase() now raises a TypeError if the argument is not str or bytes. by Ezio Melotti · 14 years ago
  10. ad8c5ca Fix ntpath abspath to deal with bytes. by Florent Xicluna · 14 years ago
  11. aa3b5b8 PendingDeprecationWarning -> DeprecationWarning. Both of these were by Gregory P. Smith · 15 years ago
  12. 5a607a3 Issue #5799: ntpath (ie, os.path on Windows) fully supports UNC pathnames. by Mark Hammond · 15 years ago
  13. 48e2478 fix variable name #5595 by Benjamin Peterson · 15 years ago
  14. 3b44e61 Issue3187 again: test_ntpath failed when run with the -bb option by Amaury Forgeot d'Arc · 16 years ago
  15. c72ef8b Second part of #3187, for windows: by Amaury Forgeot d'Arc · 16 years ago
  16. d71ca41 Remove os.path.walk by Benjamin Peterson · 16 years ago
  17. 05e8be1 Merged revisions 60990-61002 via svnmerge from by Christian Heimes · 16 years ago
  18. faf2f63 Merged revisions 59703-59773 via svnmerge from by Christian Heimes · 17 years ago
  19. 04110fb Merged revisions 57221-57391 via svnmerge from by Guido van Rossum · 17 years ago
  20. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  21. b213704 Merged revisions 53451-53537 via svnmerge from by Thomas Wouters · 17 years ago
  22. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  23. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  24. f0de6a1 Bug #1266283: lexists() is not exported from os.path by Georg Brandl · 19 years ago
  25. 649f8e7 patch [ 1105730 ] Faster commonprefix in macpath, ntpath, etc. by Georg Brandl · 19 years ago
  26. ae882f7 Patch #941486: add os.path.lexists(). Also fix bug #940578 by using lexists in glob.glob. by Johannes Gijsbers · 20 years ago
  27. bdc3627 Make ntpath compress multiple slashes between drive letter and the rest of the by Brett Cannon · 20 years ago
  28. bdec50f Feature request #935915: Add os.path.devnull. by Martin v. Löwis · 20 years ago
  29. f0dfc7a Fix a bunch of typos in documentation, docstrings and comments. by Walter Dörwald · 21 years ago
  30. 9ddac3e make nt altsep forward slash - closes bug 709428 backport candidate by Skip Montanaro · 21 years ago
  31. 437966c Tweak to Skip's checkin of patch 686397: by Andrew MacIntyre · 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. 26bc25a Don't try to access sys.getwindowsversion unless it exists (ntpath is by Tim Peters · 22 years ago
  37. 8696ebc Add os.path.supports_unicode_filenames for all platforms, by Mark Hammond · 22 years ago
  38. 32200ae Replaced obsolete stat module constants with equivalent attributes by Raymond Hettinger · 22 years ago
  39. 54f0222 SF 563203. Replaced 'has_key()' with 'in'. by Raymond Hettinger · 22 years ago
  40. 8ca162f Partial introduction of bools where appropriate. by Guido van Rossum · 22 years ago
  41. bc0e910 Convert a pile of obvious "yes/no" functions to return bool. by Tim Peters · 22 years ago
  42. f717f05 Allow abspath to still do something sensisble if the nt module can not be imported. by Mark Hammond · 22 years ago
  43. 6a3e5f1 SF bug 478425: Change in os.path.join (ntpath.py) by Tim Peters · 23 years ago
  44. cf5e6a4 SF bug [#469732] os.path.walk docstring inconsistent. by Tim Peters · 23 years ago
  45. 83eeef4 SF patch #461781 by Chris Lawrence: os.path.realpath - Resolve symlinks: by Guido van Rossum · 23 years ago
  46. 54a14a3 SF bug #456621: normpath on Win32 not collapsing c:\\.. by Tim Peters · 23 years ago
  47. 33dc0a1 One more crack at join(): stop trying to pretend this isn't a mass of by Tim Peters · 23 years ago
  48. 4223f89 Change ntpath.join() so that join("d:/", "/whatever") returns by Tim Peters · 23 years ago
  49. 79e75e1 Use string.ascii_letters instead of string.letters (SF bug #226706). by Fred Drake · 23 years ago
  50. 1bdd0f2 SF bug #44271: os.path.expanduser problem w/o HOME set. by Tim Peters · 23 years ago
  51. da05e97 abspath(): Fix inconsistent indentation. by Fred Drake · 23 years ago
  52. ef8b654 Add support for Windows using "mbcs" as the default Unicode encoding when dealing with the file system. As discussed on python-dev and in patch 410465. by Mark Hammond · 23 years ago
  53. 269b83b added several more __all__ lists by Skip Montanaro · 23 years ago
  54. 2344fae Whitespace normalization. by Tim Peters · 24 years ago
  55. 8152d32 Update the code to better reflect recommended style: by Fred Drake · 24 years ago
  56. b4e460a Avoid import of string module; it is only needed for expandvars(). by Fred Drake · 24 years ago
  57. 0eeba5b Part of SF patch 101481: on Windows, os.path.join("a:", "b") should yield by Tim Peters · 24 years ago
  58. 6235831 revert semantics of commonprefix to work character-by-character by Skip Montanaro · 24 years ago
  59. 647d2fe Fix for Bug #110673: os.abspatth() now always returns os.getcwd() on Windows, if an empty path is specified. It previously did not if an empty path was delegated to win32api.GetFullPathName()) by Mark Hammond · 24 years ago
  60. 1d3dd74 * split on / or \ * case insensitive comparison by Skip Montanaro · 24 years ago
  61. 4d5d5bf forgot to change copy.copy(m) to m[:] by Skip Montanaro · 24 years ago
  62. 97bc98a fixed semantics of commonprefix to work by path elements instead of characters. by Skip Montanaro · 24 years ago
  63. 162bd85 Fix bug #345 reported by David Bolen <db3l@fitlinxx.com>: by Fred Drake · 24 years ago
  64. ef0b5dd Typo in a comment: "wheter" --> "whether" by Fred Drake · 24 years ago
  65. 823e91c Optimize abspath() slightly for the case that win32api can't be by Guido van Rossum · 24 years ago
  66. 6dfc792 In abspath(), always use normpath(), even when win32api is available by Guido van Rossum · 25 years ago
  67. f618a48 Correct typo in walk.__doc__ reported by Francois Pinard. by Guido van Rossum · 25 years ago
  68. f3c695c Withdraw the UNC support from splitdrive(). Instead, a new function by Guido van Rossum · 25 years ago
  69. 8f0fa9e New code for split() by Tim Peters, behaves more like posixpath.split(). by Guido van Rossum · 25 years ago
  70. 534972b New splitdrive() that knows about UNC paths (e.g., network paths like by Guido van Rossum · 25 years ago
  71. 9787bea Use win32api.GetFullPathName(path) if it exists to implement abspath(). by Guido van Rossum · 25 years ago
  72. e294cf6 Add abspath() by Guido van Rossum · 25 years ago
  73. 2bc1f8f Added getsize(), getmtime(), getatime() by Guido van Rossum · 26 years ago
  74. b485224 REMOVE samefile(), sameopenfile(), samestat() -- these cannot be made by Guido van Rossum · 26 years ago
  75. 16a0bc2 (1) Change normpath() to *not* also call normcase(). by Guido van Rossum · 26 years ago
  76. ca99c2c Fix to ismount(). Can't remember who told me this. by Guido van Rossum · 26 years ago
  77. 15e22e1 Added doc strings and reindented according to new standard, without tabs. by Guido van Rossum · 27 years ago
  78. e2ad88c Rewrite normcase() using string.translate... by Guido van Rossum · 27 years ago
  79. 77e1db3 Support $HOME in expanduser(). by Guido van Rossum · 27 years ago
  80. 19302de join(): Wax the incorrect leading comment by Barry Warsaw · 27 years ago
  81. 384d249 join(): join one or more path components by Barry Warsaw · 27 years ago
  82. 73e122f Fix splitext() to go up to the last dot, not the first. by Guido van Rossum · 27 years ago
  83. 3df7b5a Don't do truncation to 8+3 format -- this is used on NT file systems! by Guido van Rossum · 28 years ago
  84. 0523d63 Don't use 'false'; use '0'. by Guido van Rossum · 28 years ago
  85. 99bf06b same thing as for dospath, plus HOMEDRIVE/HOMEPATH support by Guido van Rossum · 29 years ago
  86. 555915a Added ntpath.py (for os.py when used with Windows NT) by Guido van Rossum · 30 years ago