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