1. 2d7d56a Revert the modification of e.strerror in 3.2 as that kind of change could by Gregory P. Smith · 12 years ago
  2. a81c856 Fixes Issue #14992: os.makedirs(path, exist_ok=True) would raise an OSError by Gregory P. Smith · 12 years ago
  3. 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
  4. 2daf6ae Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) by Georg Brandl · 12 years ago
  5. 7b98d02 Issue #11459: A `bufsize` value of 0 in subprocess.Popen() really creates by Antoine Pitrou · 13 years ago
  6. 877766d Issue #11459: A `bufsize` value of 0 in subprocess.Popen() really creates by Antoine Pitrou · 13 years ago
  7. 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
  8. bb4f218 os module: remove nonbreaking space in a comment by Victor Stinner · 14 years ago
  9. 273b766 os.get_exec_path() ignores BytesWarning instead of recoding them by Victor Stinner · 14 years ago
  10. 6f35eda Issue #10210: os.get_exec_path() ignores BytesWarning warnings by Victor Stinner · 14 years ago
  11. e882aac str.encode() doesn't accept None as errors: use 'strict' instead by Victor Stinner · 14 years ago
  12. df6d6cb os: fsencode(), fsdecode() and os.environ(b) internal encode-decode methods by Victor Stinner · 14 years ago
  13. 3d75d0c Issue #8603: Environ.data is now protected -> Environ._data by Victor Stinner · 14 years ago
  14. 38430e2 Fix os.get_exec_path() (code and tests) for python -bb by Victor Stinner · 14 years ago
  15. e8d5145 Create os.fsdecode(): decode from the filesystem encoding with surrogateescape by Victor Stinner · 14 years ago
  16. 70120e2 #8603: Add environb to os.__all__ by Victor Stinner · 14 years ago
  17. bed7117 Issue #9283: Oops, add missing { and } to repr(os.environ) by Victor Stinner · 14 years ago
  18. d73c1a3 #9283: Fix repr(os.environ), display unicode keys and values on POSIX systems by Victor Stinner · 14 years ago
  19. 313a120 Issue #8969: On Windows, use mbcs codec in strict mode to encode and decode by Victor Stinner · 14 years ago
  20. b745a74 Issue #8513: os.get_exec_path() supports b'PATH' key and bytes value. by Victor Stinner · 14 years ago
  21. 449c466 Issue #8514: Add os.fsencode() function (Unix only): encode a string to bytes by Victor Stinner · 14 years ago
  22. 84ae118 Issue #8603: Create a bytes version of os.environ for Unix by Victor Stinner · 14 years ago
  23. a27dcb7 Merged revisions 80421,80424 via svnmerge from by Victor Stinner · 14 years ago
  24. 13bb71c Issue #8391: os.execvpe() and os.getenv() supports unicode with surrogates and by Victor Stinner · 14 years ago
  25. b6e8c7e Add an os.get_exec_path() function to return the list of directories by Gregory P. Smith · 14 years ago
  26. d2a577d Merged revisions 78316 via svnmerge from by Ezio Melotti · 14 years ago
  27. 19e4acf #7310: fix the repr() of os.environ by Ezio Melotti · 14 years ago
  28. 1665a8d Merged revisions 77881 via svnmerge from by Matthias Klose · 14 years ago
  29. a09c54f Merged revisions 77879 via svnmerge from by Matthias Klose · 14 years ago
  30. 53b44f7 Merged revisions 76723 via svnmerge from by Antoine Pitrou · 15 years ago
  31. ac62535 Issue #7461: objects returned by os.popen() should support the context manager protocol by Antoine Pitrou · 15 years ago
  32. 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
  33. 041b3ba Merged revisions 73934 via svnmerge from by Amaury Forgeot d'Arc · 15 years ago
  34. 97e5f28 #6358: Merge r73933: Add basic tests for the return value of os.popen().close(). by Amaury Forgeot d'Arc · 15 years ago
  35. 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
  36. 4b06819 fix None errno #5312 by Benjamin Peterson · 15 years ago
  37. ed5b9b3 #4401: Re-add os.extsep. by Georg Brandl · 16 years ago
  38. 13962fc Partially revert r65795 by undoing change to 'os'. by Brett Cannon · 16 years ago
  39. e8d0bf9 Merged revisions 65795 via svnmerge from by Brett Cannon · 16 years ago
  40. 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
  41. eca20b6 Merged revisions 63119-63128,63130-63131,63133,63135-63144,63146-63148,63151-63152,63155-63165,63167-63176,63181-63186,63188-63189 via svnmerge from by Alexandre Vassalotti · 16 years ago
  42. 752abd0 Convert a lot of print statements to print functions in docstrings, by Neal Norwitz · 16 years ago
  43. f7fa63d Rename copy_reg module to copyreg. by Alexandre Vassalotti · 16 years ago
  44. 4e6531e Removed remnants of os.path.walk(). by Alexandre Vassalotti · 16 years ago
  45. 5d8da20 Merged revisions 62713,62715,62728,62737,62740,62744,62749,62756 via svnmerge from by Christian Heimes · 16 years ago
  46. 45f9af3 Merged revisions 59193-59201 via svnmerge from by Christian Heimes · 17 years ago
  47. 3172c5d Patch# 1258 by Christian Heimes: kill basestring. by Guido van Rossum · 17 years ago
  48. 476157b Make the _wrap_close type (which is returned by os.popen) iterable. by Thomas Heller · 17 years ago
  49. 828f04a Issue #1066: implement PEP 3109, 2/3 of PEP 3134. by Collin Winter · 17 years ago
  50. 289bc05 some RiscOS stuff I missed before (was only looking for "RISCOS") by Skip Montanaro · 17 years ago
  51. 7a98be2 Remove RISCOS support by Skip Montanaro · 17 years ago
  52. f5b4685 Reduce redundant calls to str() in _Environ class. by Guido van Rossum · 17 years ago
  53. 67aca9e Following an idea by Ron Adam, make sure keys and values in the by Guido van Rossum · 17 years ago
  54. cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago
  55. e7ba495 Merged revisions 55631-55794 via svnmerge from by Guido van Rossum · 17 years ago
  56. c2f93dc Remove native popen() and fdopen(), replacing them with subprocess calls. by Guido van Rossum · 17 years ago
  57. 1bc535d Merged revisions 55328-55341 via svnmerge from by Guido van Rossum · 17 years ago
  58. 360e4b8 Merged revisions 55325-55327 via svnmerge from by Guido van Rossum · 17 years ago
  59. 572dbf8 Checkpoint. Manipulated things so that string literals are always by Guido van Rossum · 17 years ago
  60. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  61. b940e11 SF patch 1631942 by Collin Winter: by Guido van Rossum · 18 years ago
  62. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  63. e2b70bc Get rid of dict.has_key(). Boy this has a lot of repercussions! by Guido van Rossum · 18 years ago
  64. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  65. bde4ad4 Patch #1410998: remove "DOS" from os.py docstring by Georg Brandl · 18 years ago
  66. 96c1c7a SF#1343671. by Fredrik Lundh · 19 years ago
  67. 9e43acf bug #1177468: don't cache /dev/urandom file descriptor in os.urandom by Georg Brandl · 19 years ago
  68. 5510f65 Avoid using items() in environ.update(). Fixes #1124513. Will backport to 2.4. by Martin v. Löwis · 19 years ago
  69. 1d11de6 Revert os.py 1.75, and directly implement update. Fixes #1110478 and #1100235. by Martin v. Löwis · 19 years ago
  70. 22b457e Added SEEK_* constants. Fixes #711830. by Martin v. Löwis · 19 years ago
  71. 9fc9789 Document that on Unix, the 'cmd' argument to the os.popen2/3/4 and by Johannes Gijsbers · 20 years ago
  72. 725f8c8 Patch #1021596: Check for None to determine whether _urandomfd is uninitialized. by Martin v. Löwis · 20 years ago
  73. 3b2cdad Whitespace normalization. by Tim Peters · 20 years ago
  74. 33ad28b Use multi-line import by Andrew M. Kuchling · 20 years ago
  75. 45e77c5 Whitespace normalization. by Tim Peters · 20 years ago
  76. dc3883f Patch #934711: Expose platform-specific entropy. by Martin v. Löwis · 20 years ago
  77. bdec50f Feature request #935915: Add os.path.devnull. by Martin v. Löwis · 20 years ago
  78. 69e18c9 OS/2 has support for spawnvp() and spawnvpe() in the C libraries supplied by Andrew MacIntyre · 20 years ago
  79. 31017ae SF #904720: dict.update should take a 2-tuple sequence like dict.__init_ by Raymond Hettinger · 20 years ago
  80. 6fccc8a [Bug #829532] Invoking os.makedirs() with an argument that contains a by Andrew M. Kuchling · 21 years ago
  81. 89f9865 OS/2+EMX: make the link() emulation available as os.link() by Andrew MacIntyre · 21 years ago
  82. b7f6810 SF #764121, docstring for spawnlp incorrect by Neal Norwitz · 21 years ago
  83. bf1bef8 Add optional 'onerror' argument to os.walk(), to control error handling. by Guido van Rossum · 21 years ago
  84. c4e0940 New generator os.walk() does a bit more than os.path.walk() does, and by Tim Peters · 21 years ago
  85. 68468eb Get rid of many apply() calls. by Guido van Rossum · 21 years ago
  86. f2715e0 Whitespace normalization. by Tim Peters · 21 years ago
  87. 117910d Migrate definitions of several platform-dependent path-related variables by Skip Montanaro · 21 years ago
  88. 2c60f7a Whitespace normalization. by Tim Peters · 21 years ago
  89. 6757c1e SF patch 661583: Remove old code from lib\os.py by Tim Peters · 22 years ago
  90. b11ce9b Always define getenv(), as suggested by Guido. This means that os.getenv() is also defined for MacPython-OS9 (even though it doesn't actually do anything useful), and it shouldn't hurt on other platforms. by Jack Jansen · 22 years ago
  91. 8b10f89 Remove more DOS support. by Martin v. Löwis · 22 years ago
  92. 05212fc Change UserDict to IterableUserDict by Raymond Hettinger · 22 years ago
  93. ca2f537 Have os.environ() inherit from the iterable version of UserDict. by Raymond Hettinger · 22 years ago
  94. 683c0fe Fix for SF bug 601077 by Zack Weinberg. by Guido van Rossum · 22 years ago
  95. aed51d8 SF patch 590294: os._execvpe security fix (Zack Weinberg). by Guido van Rossum · 22 years ago
  96. cadb9eb Be consistent with the functions in the posix/nt module: docstrings by Fred Drake · 22 years ago
  97. 54f0222 SF 563203. Replaced 'has_key()' with 'in'. by Raymond Hettinger · 22 years ago
  98. a066f46 Patch 550804: Make os.environ.copy() return a copy. by Martin v. Löwis · 22 years ago
  99. bc0e910 Convert a pile of obvious "yes/no" functions to return bool. by Tim Peters · 22 years ago
  100. e5363b7 .... by Michael W. Hudson · 22 years ago