1. d43ab05 Issue #29513: Fixed a reference leak in os.scandir() added in issue #29034. by Serhiy Storchaka · 7 years ago
  2. 4459e00 Issue #29092: Sync os.stat's doc and docstring on path type. by Xiang Zhang · 7 years ago
  3. 04316c4 Issue #29034: Fix memory leak and use-after-free in path_converter. by Xiang Zhang · 7 years ago
  4. 0651583 Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSize by Serhiy Storchaka · 8 years ago
  5. bce2626 Issue #28732: Raise ValueError when argv[0] is empty by Steve Dower · 8 years ago
  6. 93ff872 Issue #28732: Raise ValueError when argv[0] is empty. by Steve Dower · 8 years ago
  7. 859fd7b Issue #28732: Raise ValueError when os.spawn*() is passed an empty tuple of arguments by Steve Dower · 8 years ago
  8. c363061 Merge from 3.5 and fix a few other functions missing IPH handling. by Steve Dower · 8 years ago
  9. 11f4326 Issue #28732: Fix crash in os.spawnv() with no elements in args by Steve Dower · 8 years ago
  10. 852cc33 Issue #28585: Restored docstring of os._isdir(). by Serhiy Storchaka · 8 years ago
  11. 579f038 Issue #28585: Restored docstring of os._isdir(). by Serhiy Storchaka · 8 years ago
  12. b1321fb Issue #28394: More typo fixes for 3.6+ by Martin Panter · 8 years ago
  13. 2674bc7 Issue #27998: Fixed bytes path support in os.scandir() on Windows. by Serhiy Storchaka · 8 years ago
  14. 6f3f3e5 Increase buffer for readlink() in case OS will support longer names one day. by Christian Heimes · 8 years ago
  15. 3cb091e Increase buffer for readlink() in case OS will support longer names one day. by Christian Heimes · 8 years ago
  16. ec2319c Fix memleak in os.getrandom() by Victor Stinner · 8 years ago
  17. 26c03bd Fix memory leak in path_converter() by Victor Stinner · 8 years ago
  18. bf3c1c3 Issue #28075: Fix test_access_denied in Python 3.5 by Berker Peksag · 8 years ago
  19. 052e4f1 Issue #28075: Merge from 3.5 by Berker Peksag · 8 years ago
  20. 0b4dc48 Issue #28075: Check for ERROR_ACCESS_DENIED in Windows implementation of os.stat() by Berker Peksag · 8 years ago
  21. 3940499 Issue #28156: Export os.getpid() conditionally by Berker Peksag · 8 years ago
  22. 8181646 Issue #28114: Fix a crash in parse_envlist() when env contains byte strings by Berker Peksag · 8 years ago
  23. 654a7bd Adds missing assert suppression. by Steve Dower · 8 years ago
  24. 6230aaf Issue #27781: Fixes uninitialized fd when !MS_WINDOWS and !HAVE_OPENAT by Steve Dower · 8 years ago
  25. 768f3b4 do not pretend to support passing a fd to access() by Benjamin Peterson · 8 years ago
  26. 207116b use Py_MAX by Benjamin Peterson · 8 years ago
  27. 940f33a Issue #23524: Finish removing _PyVerify_fd from sources by Steve Dower · 8 years ago
  28. 513d747 Fix mismatched if blocks in posixmodule.c. by Steve Dower · 8 years ago
  29. cc16be8 Issue #27781: Change file system encoding on Windows to UTF-8 (PEP 529) by Steve Dower · 8 years ago
  30. 840ef8f more linux -> __linux__ by Benjamin Peterson · 8 years ago
  31. e66987e os.urandom() now blocks on Linux by Victor Stinner · 8 years ago
  32. 9b1f474 Add os.getrandom() by Victor Stinner · 8 years ago
  33. 581139c Run Argument Clinic on posixmodule.c by Victor Stinner · 8 years ago
  34. ca47063 replace Py_(u)intptr_t with the c99 standard types by Benjamin Peterson · 8 years ago
  35. af580df replace PY_LONG_LONG with long long by Benjamin Peterson · 8 years ago
  36. ed4aa83 require a long long data type (closes #27961) by Benjamin Peterson · 8 years ago
  37. b1cb8b2 merge 3.5 by Benjamin Peterson · 8 years ago
  38. 3f9183b Issue #26027, #27524: Add PEP 519/__fspath__() support to os and os.path. by Brett Cannon · 8 years ago
  39. eb3be66 Issue #27736: Prevent segfault after interpreter re-initialization due by Ned Deily · 8 years ago
  40. d73c318 Issue #26800: Undocumented support of general bytes-like objects by Serhiy Storchaka · 8 years ago
  41. 70214ad Issue #17599: Use unique _Py_REPARSE_DATA_BUFFER etc names to avoid conflict by Martin Panter · 8 years ago
  42. bf5868d merge 3.5 (#27656) by Benjamin Peterson · 8 years ago
  43. dbaa559 all SCHED_ constants are optional (closes #27656) by Benjamin Peterson · 8 years ago
  44. 262dc1e Issue #27533: Release GIL in nt._isdir by Steve Dower · 8 years ago
  45. b22a677 Issue #27533: Release GIL in nt._isdir by Steve Dower · 8 years ago
  46. 044283a Issue #27512: Don't segfault when os.fspath() calls an object whose by Brett Cannon · 8 years ago
  47. 2954f83 - Issue #27332: Fixed the type of the first argument of module-level functions by Serhiy Storchaka · 8 years ago
  48. 1a2b24f Issue #27332: Fixed the type of the first argument of module-level functions by Serhiy Storchaka · 8 years ago
  49. a32c4d0 Issue #27038: Expose DirEntry as os.DirEntry. by Brett Cannon · 8 years ago
  50. c78ca1e Issue #27186: Update os.fspath()/PyOS_FSPath() to check the return by Brett Cannon · 8 years ago
  51. fcff437 - Comment out socket (SO_REUSEPORT) and posix (O_SHLOCK, O_EXLOCK) constants by doko@ubuntu.com · 8 years ago
  52. 96881cd Issue #27186: Add os.PathLike support to DirEntry by Brett Cannon · 8 years ago
  53. b4f43e9 Clarify documentation for os.fspath(). by Brett Cannon · 8 years ago
  54. 410ef8e issue27186: add C version of os.fspath(); patch by Jelle Zijlstra by Ethan Furman · 8 years ago
  55. 46833e7 Fix issue27146 - add stdio.h include to posixmodule.c for ctermid(). by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 8 years ago
  56. fa76eee Fix issue27146 - add stdio.h include to posixmodule.c for ctermid(). by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 8 years ago
  57. deab18d Issue #26708: Use the "const" qualifier for immutable strings. by Serhiy Storchaka · 8 years ago
  58. c2f7d87 Issue #26932: Fixed support of RTLD_* constants defined as enum values, by Serhiy Storchaka · 8 years ago
  59. fb7c8ae Issue #26863: HAVE_FACCESSAT should (currently) not be defined on Android. by Stefan Krah · 8 years ago
  60. 3291d85 Issue #26671: Fixed #ifdef indentation. by Serhiy Storchaka · 8 years ago
  61. aaf553b Backed out changeset 8dc144e47252 by Serhiy Storchaka · 8 years ago
  62. 026110f Issue #26671: Fixed #ifdef indentation. by Serhiy Storchaka · 8 years ago
  63. 819399b Issue #26671: Enhanced path_converter. by Serhiy Storchaka · 8 years ago
  64. ab479c4 Issue #26494: Fixed crash on iterating exhausting iterators. by Serhiy Storchaka · 8 years ago
  65. fbb1c5e Issue #26494: Fixed crash on iterating exhausting iterators. by Serhiy Storchaka · 8 years ago
  66. 7bfa409 Implement finalizer for os.scandir() iterator by Victor Stinner · 8 years ago
  67. f664dc5 ResourceWarning: Revert change on socket and scandir by Victor Stinner · 8 years ago
  68. 914cde8 On ResourceWarning, log traceback where the object was allocated by Victor Stinner · 8 years ago
  69. c36674a Fix usage of PyMem_Malloc() in os.stat() by Victor Stinner · 8 years ago
  70. c44f707 posix_getcwd(): limit to INT_MAX on Windows by Victor Stinner · 8 years ago
  71. ffe96ae Issue #25994: Added the close() method and the support of the context manager by Serhiy Storchaka · 8 years ago
  72. fd625c3 Issue #26117: The os.scandir() iterator now closes file descriptor not only by Serhiy Storchaka · 8 years ago
  73. 988b9bc Issue #26117: The os.scandir() iterator now closes file descriptor not only by Serhiy Storchaka · 8 years ago
  74. ef1585e Issue #25923: Added more const qualifiers to signatures of static and private functions. by Serhiy Storchaka · 8 years ago
  75. 2d06e84 Issue #25923: Added the const qualifier to static constant arrays. by Serhiy Storchaka · 8 years ago
  76. 8bc2b4d Issue #25890: Removed yet one unused variable. by Serhiy Storchaka · 8 years ago
  77. 9b3a2ee Issues #25890, #25891, #25892: Removed unused variables in Windows code. by Serhiy Storchaka · 8 years ago
  78. 9fdaff3 Merge 3.5 by Victor Stinner · 8 years ago
  79. e847d71 Issue #25846: Fix usage of Py_ARRAY_LENGTH() in win32_wchdir() (new try) by Victor Stinner · 8 years ago
  80. 6b8f0c8 (Merge 3.5) Issue #25846: Fix usage of Py_ARRAY_LENGTH() in win32_wchdir() by Victor Stinner · 8 years ago
  81. ed53782 Issue #25846: Fix usage of Py_ARRAY_LENGTH() in win32_wchdir() by Victor Stinner · 8 years ago
  82. 5ebae87 Issue #25207, #14626: Fix my commit. by Victor Stinner · 9 years ago
  83. 4552ced Issue #25207, #14626: Fix ICC compiler warnings in posixmodule.c by Victor Stinner · 9 years ago
  84. 024364a Merge 3.5 (os.waitpid) by Victor Stinner · 9 years ago
  85. d3ffd32 Issue #25118: Fix a regression of Python 3.5.0 in os.waitpid() on Windows. by Victor Stinner · 9 years ago
  86. 3f560c1 Merge 3.5 into 3.6 by Martin Panter · 9 years ago
  87. 6088b7b Merge 3.4 into 3.5 by Martin Panter · 9 years ago
  88. 9499413 os.sendfile(headers=None, trailers=None) arguments are not actually accepted by Martin Panter · 9 years ago
  89. a122b5a Issue #23738: Merge 3.5 into 3.6 by Martin Panter · 9 years ago
  90. 0ff8909 Issue #23738: Merge 3.4 into 3.5 by Martin Panter · 9 years ago
  91. bf19d16 Issue #23738: Document and test actual keyword parameter names by Martin Panter · 9 years ago
  92. 56f6e76 Issue #15989: Fixed some scarcely probable integer overflows. by Serhiy Storchaka · 9 years ago
  93. fed0931 Merge 3.5 (ICC) by Victor Stinner · 9 years ago
  94. 5b6917e Merge 3.4 (ICC) by Victor Stinner · 9 years ago
  95. 528a9ab Don't use defined() in C preprocessor macros by Victor Stinner · 9 years ago
  96. 80d62e6 Issue #23530: fix clinic comment. by Charles-François Natali · 9 years ago
  97. dc87e4b Issue #23530: Improve os.cpu_count() description. Patch by Julian Taylor. by Charles-François Natali · 9 years ago
  98. f0b5015 Converted os._getfullpathname() and os._isdir() to Argument Clinic. by Serhiy Storchaka · 9 years ago
  99. cc0bbbc (Merge 3.4) Issue #9246: On POSIX, os.getcwd() now supports paths longer than by Victor Stinner · 9 years ago
  100. 4403d7d Issue #9246: On POSIX, os.getcwd() now supports paths longer than 1025 bytes by Victor Stinner · 9 years ago