1. 06ddd35 Issue #25911: Backport os._DummyDirEntry fixes by Victor Stinner · 8 years ago
  2. e14c07e Fixed a bug in os.walk() with bytes path on Windows caused by merging fixes by Serhiy Storchaka · 8 years ago
  3. 06c45e6 Issue #25995: os.walk() no longer uses FDs proportional to the tree depth. by Serhiy Storchaka · 8 years ago
  4. 5f6a0b4 Issue #25911: Restored support of bytes paths in os.walk() on Windows. by Serhiy Storchaka · 8 years ago
  5. 0bddc9e Issue #25860: os.fwalk() no longer skips remaining directories when error occurs. by Serhiy Storchaka · 9 years ago
  6. 97cabb9 Issue #25583: Merge makedirs fix from 3.4 into 3.5 by Martin Panter · 9 years ago
  7. a82642f Issue #25583: Avoid incorrect errors raised by os.makedirs(exist_ok=True) by Martin Panter · 9 years ago
  8. cd1aa91 merge 3.4 (#23929) by Benjamin Peterson · 9 years ago
  9. 52a3b74 remove useless word (closes #23929) by Benjamin Peterson · 9 years ago
  10. 5fdde71 Issue #23605: Fix typo in an os.walk() comment by Victor Stinner · 9 years ago
  11. 7fea974 Issue #23605: Fix os.walk(topdown=True), don't cache entry.is_symlink() because by Victor Stinner · 9 years ago
  12. 411bf64 Issue #23605: os.walk() doesn't need to call entry.is_symlink() if followlinks by Victor Stinner · 9 years ago
  13. 524a5ba Issue #23605: os.walk() now calls os.scandir() instead of os.listdir(). by Victor Stinner · 9 years ago
  14. 97e2e06 os: Include posix functions in os.__all__. Closes issue #18554. by Yury Selivanov · 10 years ago
  15. 5c86701 Issue #21875: Remove vestigial references to Classic Mac OS in os module docs. by Ned Deily · 10 years ago
  16. e58e0c7 clarify when the list of subdirectories is read (closes #13779) by Benjamin Peterson · 10 years ago
  17. 9dc203f merge 3.3 (#21082) by Benjamin Peterson · 10 years ago
  18. 4717e21 merge 3.2 (#21082) by Benjamin Peterson · 10 years ago
  19. ee5f1c1 remove directory mode check from makedirs (closes #21082) by Benjamin Peterson · 10 years ago
  20. a22ae21 Fix parameter name in docs for os.makedirs and os.removedirs. by Zachary Ware · 10 years ago
  21. f1dc3ee Issue #19218: Rename collections.abc to _collections_abc in order to speed up interpreter start by Christian Heimes · 11 years ago
  22. 2582762 Issue #19209: Remove import of copyreg from the os module to speed up by Christian Heimes · 11 years ago
  23. a93c6db (Merge 3.3) Close #17702: On error, os.environb now removes suppress the except by Victor Stinner · 11 years ago
  24. 0c2dd0c Close #17702: On error, os.environb now removes suppress the except context by Victor Stinner · 11 years ago
  25. cd171c8 Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a) by Brett Cannon · 11 years ago
  26. 0a14066 Issue #18200: Update the stdlib (except tests) to use ModuleNotFoundError. by Brett Cannon · 11 years ago
  27. c41917f Correction for 4f82b6cfee46. by Richard Oudkerk · 11 years ago
  28. ad34ef8 Fix os.__all__ to is passes test___all__ by Richard Oudkerk · 11 years ago
  29. 43aa0d0 (Merge 3.3) Close #17702: os.environ now raises KeyError with the original by Victor Stinner · 11 years ago
  30. 6d10139 Close #17702: os.environ now raises KeyError with the original environment by Victor Stinner · 11 years ago
  31. 0166a28 modernize some modules' code by replacing OSError->ENOENT/ENOTDIR/EPERM/EEXIST occurrences with the corresponding pep-3151 exceptions (FileNotFoundError, NotADirectoryError, etc.) by Giampaolo Rodola' · 11 years ago
  32. 1a03ac8 Issue #15845: Fix comparison between bytes and string. by Serhiy Storchaka · 12 years ago
  33. f6fb3a3 Issue #15845: Fix comparison between bytes and string. by Serhiy Storchaka · 12 years ago
  34. 4ab23bf Issue #15845: Fix comparison between bytes and string. by Serhiy Storchaka · 12 years ago
  35. 2552bc0 fix typo (#16720) by Andrew Svetlov · 12 years ago
  36. 8b33dd8 Use OESeeror instead of os.error (#16720) by Andrew Svetlov · 12 years ago
  37. ad28c7f Issue #16706: get rid of os.error by Andrew Svetlov · 12 years ago
  38. 29e02a2 merge 3.3 by Benjamin Peterson · 12 years ago
  39. b29614e compare singletons by identity not equality (closes #16712) by Benjamin Peterson · 12 years ago
  40. 4791a24 #16135: Removal of OS/2 support (Python code partial cleanup) by Jesus Cea · 12 years ago
  41. b403806 Issue #15202: Consistently use the name "follow_symlinks" for by Larry Hastings · 12 years ago
  42. c48fe98 Issue #15177: Added dir_fd parameter to os.fwalk(). by Larry Hastings · 12 years ago
  43. 306336b Closes #15161: add support for giving path as a fd for truncate() and pathconf(). by Georg Brandl · 12 years ago
  44. b698d8e Issue #15154: Add "dir_fd" parameter to os.rmdir, remove "rmdir" by Larry Hastings · 12 years ago
  45. dbbc0c8 Issue #14626: Fix buildbot issue on OpenIndiana 3.x machines. (Hopefully.) by Larry Hastings · 12 years ago
  46. 9cf065c Issue #14626: Large refactoring of functions / parameters in the os module. by Larry Hastings · 12 years ago
  47. 9436361 Closes #10142: Support for SEEK_HOLE/SEEK_DATA by Jesus Cea · 12 years ago
  48. 2d7d56a Revert the modification of e.strerror in 3.2 as that kind of change could by Gregory P. Smith · 12 years ago
  49. f0a9a9b Fixes Issue #14992: os.makedirs(path, exist_ok=True) would raise an OSError by Gregory P. Smith · 12 years ago
  50. a81c856 Fixes Issue #14992: os.makedirs(path, exist_ok=True) would raise an OSError by Gregory P. Smith · 12 years ago
  51. 3bc37f2 #14862: Add missing names to os.__all__ by Petri Lehtinen · 12 years ago
  52. 66bfcc1 #14773: Fix os.fwalk() failing on dangling symlinks by Hynek Schlawack · 12 years ago
  53. 569d087 use yield from by Benjamin Peterson · 12 years ago
  54. 990eff0 Backing out 86dc014cdd74. Not ready yet by Jesus Cea · 12 years ago
  55. 2b47f0a Close #10142: Support for SEEK_HOLE/SEEK_DATA by Jesus Cea · 12 years ago
  56. 84c0ca0 Use os.path.samestat() instead of reinventing the wheel. by Charles-François Natali · 12 years ago
  57. fd07415 Issue #2377: Make importlib the implementation of __import__(). by Brett Cannon · 12 years ago
  58. 2fb477c Merge 3.2: Issue #13703 plus some related test suite fixes. by Georg Brandl · 12 years ago
  59. 09a7c72 Merge from 3.1: Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) by Georg Brandl · 12 years ago
  60. 2daf6ae Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) by Georg Brandl · 12 years ago
  61. 7794090 Following Nick's suggestion, rename posix.fdlistdir() to posix.flistdir(), to by Charles-François Natali · 12 years ago
  62. 7372b06 Issue #13734: Add os.fwalk(), a directory walking function yielding file by Charles-François Natali · 12 years ago
  63. 7b98d02 Issue #11459: A `bufsize` value of 0 in subprocess.Popen() really creates by Antoine Pitrou · 13 years ago
  64. 877766d Issue #11459: A `bufsize` value of 0 in subprocess.Popen() really creates by Antoine Pitrou · 13 years ago
  65. 1679f4d Issue #11459: A `bufsize` value of 0 in subprocess.Popen() really creates by Antoine Pitrou · 13 years ago
  66. 158c9c2 Issue #11085: Moved collections abstract base classes into a separate module by Raymond Hettinger · 13 years ago
  67. 5a22b65 Issue 9299 Add exist_ok parameter to os.makedirs to suppress 'File exists' exception. Patch by Ray Allen. by Terry Reedy · 14 years ago
  68. bb4f218 os module: remove nonbreaking space in a comment by Victor Stinner · 14 years ago
  69. 273b766 os.get_exec_path() ignores BytesWarning instead of recoding them by Victor Stinner · 14 years ago
  70. 6f35eda Issue #10210: os.get_exec_path() ignores BytesWarning warnings by Victor Stinner · 14 years ago
  71. e882aac str.encode() doesn't accept None as errors: use 'strict' instead by Victor Stinner · 14 years ago
  72. df6d6cb os: fsencode(), fsdecode() and os.environ(b) internal encode-decode methods by Victor Stinner · 14 years ago
  73. 3d75d0c Issue #8603: Environ.data is now protected -> Environ._data by Victor Stinner · 14 years ago
  74. 38430e2 Fix os.get_exec_path() (code and tests) for python -bb by Victor Stinner · 14 years ago
  75. e8d5145 Create os.fsdecode(): decode from the filesystem encoding with surrogateescape by Victor Stinner · 14 years ago
  76. 70120e2 #8603: Add environb to os.__all__ by Victor Stinner · 14 years ago
  77. bed7117 Issue #9283: Oops, add missing { and } to repr(os.environ) by Victor Stinner · 14 years ago
  78. d73c1a3 #9283: Fix repr(os.environ), display unicode keys and values on POSIX systems by Victor Stinner · 14 years ago
  79. 313a120 Issue #8969: On Windows, use mbcs codec in strict mode to encode and decode by Victor Stinner · 14 years ago
  80. b745a74 Issue #8513: os.get_exec_path() supports b'PATH' key and bytes value. by Victor Stinner · 14 years ago
  81. 449c466 Issue #8514: Add os.fsencode() function (Unix only): encode a string to bytes by Victor Stinner · 14 years ago
  82. 84ae118 Issue #8603: Create a bytes version of os.environ for Unix by Victor Stinner · 14 years ago
  83. a27dcb7 Merged revisions 80421,80424 via svnmerge from by Victor Stinner · 14 years ago
  84. 13bb71c Issue #8391: os.execvpe() and os.getenv() supports unicode with surrogates and by Victor Stinner · 14 years ago
  85. b6e8c7e Add an os.get_exec_path() function to return the list of directories by Gregory P. Smith · 14 years ago
  86. d2a577d Merged revisions 78316 via svnmerge from by Ezio Melotti · 14 years ago
  87. 19e4acf #7310: fix the repr() of os.environ by Ezio Melotti · 14 years ago
  88. 1665a8d Merged revisions 77881 via svnmerge from by Matthias Klose · 14 years ago
  89. a09c54f Merged revisions 77879 via svnmerge from by Matthias Klose · 14 years ago
  90. 53b44f7 Merged revisions 76723 via svnmerge from by Antoine Pitrou · 15 years ago
  91. ac62535 Issue #7461: objects returned by os.popen() should support the context manager protocol by Antoine Pitrou · 15 years ago
  92. f6489f9 Merged revisions 75264,75268,75293,75318,75391-75392,75436,75478,75971,76003,76058,76140-76141,76231,76380,76428-76429 via svnmerge from by Benjamin Peterson · 15 years ago
  93. 041b3ba Merged revisions 73934 via svnmerge from by Amaury Forgeot d'Arc · 15 years ago
  94. 97e5f28 #6358: Merge r73933: Add basic tests for the return value of os.popen().close(). by Amaury Forgeot d'Arc · 15 years ago
  95. 87c8d87 Merged revisions 73196,73278-73280,73299,73308,73312-73313,73317-73318,73321,73324,73331,73335,73340,73363 via svnmerge from by Benjamin Peterson · 15 years ago
  96. 4b06819 fix None errno #5312 by Benjamin Peterson · 15 years ago
  97. ed5b9b3 #4401: Re-add os.extsep. by Georg Brandl · 16 years ago
  98. 13962fc Partially revert r65795 by undoing change to 'os'. by Brett Cannon · 16 years ago
  99. e8d0bf9 Merged revisions 65795 via svnmerge from by Brett Cannon · 16 years ago
  100. bdbddf8 #2491: os.fdopen() is now almost an alias to the builtin open(), and accepts the same parameters. by Amaury Forgeot d'Arc · 16 years ago