1. e80697d bpo-40275: Adding threading_helper submodule in test.support (GH-20263) by Hai Shi · 5 years ago
  2. d5a980a bpo-40165: Suppress stderr when checking if test_stty_match should be skipped (GH-19325) by Batuhan Taskaya · 5 years ago
  3. 1699491 bpo-40275: Avoid importing socket in test.support (GH-19603) by Serhiy Storchaka · 5 years ago
  4. 9bee32b bpo-40138: Fix Windows os.waitpid() for large exit code (GH-19637) by Victor Stinner · 5 years ago
  5. 48b069a bpo-39481: Implementation for PEP 585 (#18239) by Guido van Rossum · 5 years ago
  6. 65a796e bpo-40094: Add os.waitstatus_to_exitcode() (GH-19201) by Victor Stinner · 5 years ago
  7. 278c1e1 bpo-40094: Add test.support.wait_process() (GH-19254) by Victor Stinner · 5 years ago
  8. d648ef1 bpo-36144: Update os.environ and os.environb for PEP 584 (#18911) by Charles Burkland · 5 years ago
  9. b8d1262 bpo-39395: putenv() and unsetenv() always available (GH-18135) by Victor Stinner · 6 years ago
  10. 161e7b3 bpo-39413: Implement os.unsetenv() on Windows (GH-18163) by Victor Stinner · 6 years ago
  11. b73dd02 Revert "bpo-39413: Implement os.unsetenv() on Windows (GH-18104)" (GH-18124) by Victor Stinner · 6 years ago
  12. 56cd371 bpo-39413: Implement os.unsetenv() on Windows (GH-18104) by Victor Stinner · 6 years ago
  13. eae87e3 bpo-38878: Fix os.PathLike __subclasshook__ (GH-17336) by Bar Harel · 6 years ago
  14. 526606b bpo-38994: Implement __class_getitem__ for PathLike (GH-17498) by Batuhan Taşkaya · 6 years ago
  15. b396663 bpo-35381 Remove all static state from posixmodule (GH-15892) by Eddie Elizondo · 6 years ago
  16. 140a7d1 bpo-38378: Rename parameters "out" and "in" of os.sendfile(). (GH-16742) by Serhiy Storchaka · 6 years ago
  17. f9dc2ad bpo-37935: Added tests for os.walk(), glob.iglob() and Path.glob() (GH-15956) by Serhiy Storchaka · 6 years ago
  18. 772ec0f bpo-38030: Fix os.stat failures on block devices on Windows (GH-15681) by Steve Dower · 6 years ago
  19. 5be6660 bpo-37549: os.dup() fails for standard streams on Windows 7 (GH-15389) by Zackery Spytz · 6 years ago
  20. 374be59 bpo-37834: Fix test on Windows 7 (GH-15377) by Steve Dower · 6 years ago
  21. df2d4a6 bpo-37834: Normalise handling of reparse points on Windows (GH-15231) by Steve Dower · 6 years ago
  22. 75e0649 bpo-9949: Enable symlink traversal for ntpath.realpath (GH-15287) by Steve Dower · 6 years ago
  23. 8f4ef3b Remove unused imports in tests (GH-14518) by Victor Stinner · 6 years ago
  24. 29f609e bpo-37412: Fix test_os.test_getcwd_long_path() on macOS (GH-14452) by Victor Stinner · 6 years ago
  25. ec3e20a bpo-37412: Fix os.getcwd() for long path on Windows (GH-14424) by Victor Stinner · 6 years ago
  26. 689830e bpo-37412: os.getcwdb() now uses UTF-8 on Windows (GH-14396) by Victor Stinner · 6 years ago
  27. d7c87d9 bpo-37400: Fix test_os.test_chown() (GH-14374) by Victor Stinner · 6 years ago
  28. 28fca0c bpo-37267: Do not check for FILE_TYPE_CHAR in os.dup() on Windows (GH-14051) by Zackery Spytz · 6 years ago
  29. aac4d03 bpo-26826: Expose copy_file_range in the os module (GH-7255) by Pablo Galindo · 6 years ago
  30. 6eb814b bpo-37098: Skip memfd_create test before Linux 3.17 (GH-13677) by Christian Heimes · 6 years ago
  31. 43fdbd2 bpo-26836: Add os.memfd_create() (#13567) by Zackery Spytz · 6 years ago
  32. f2d7ac7 bpo-31904: Add posix module support for VxWorks (GH-12118) by pxinwr · 6 years ago
  33. 62dfd7d bpo-35920: Windows 10 ARM32 platform support (GH-11774) by Paul Monson · 6 years ago
  34. 6ef726a bpo-29734: Cleanup test_getfinalpathname_handles test (GH-12908) by Berker Peksag · 6 years ago
  35. 876e82b bpo-36234: Add more tests to PosixUidGidTests (GH-12234) by Victor Stinner · 6 years ago
  36. 5b10b98 bpo-22831: Use "with" to avoid possible fd leaks in tests (part 2). (GH-10929) by Serhiy Storchaka · 6 years ago
  37. 8377cd4 Clean up code which checked presence of os.{stat,lstat,chmod} (#11643) by Anthony Sottile · 6 years ago
  38. 8d01eb4 Fix syntax warnings in tests introduced in bpo-35942. (GH-11934) by Serhiy Storchaka · 6 years ago
  39. 09fbcd6 bpo-35942: Improve the error message if __fspath__ returns invalid types in path_converter (GH-11831) by Pablo Galindo · 6 years ago
  40. 3e028b2 bpo-35994: add sub dir for sub2_tree in os.walk test if symlink is not supported (GH-11853) by pxinwr · 6 years ago
  41. b82bfac bpo-29734: nt._getfinalpathname handle leak (GH-740) by Mark Becwar · 7 years ago
  42. 32bc11c bpo-35371: Fix possible crash in os.utime() on Windows. (GH-10844) by Serhiy Storchaka · 7 years ago
  43. 8346031 bpo-32890, os: Use errno instead of GetLastError() in execve() and truncate() (GH-5784) by Alexey Izbyshev · 7 years ago
  44. 84db4a9 closes bpo-34664: Only check file permission bits of newly created directories. (GH-9273) by Benjamin Peterson · 7 years ago
  45. 0bd1a2d bpo-31577: Fix a crash in os.utime() in case of a bad ns argument. (GH-3752) by Oren Milman · 7 years ago
  46. e0b5b20 bpo-34384: Fix os.readlink() on Windows (GH-8740) by Berker Peksag · 7 years ago
  47. 9d57273 bpo-33871: Fix os.sendfile(), os.writev(), os.readv(), etc. (GH-7931) by Serhiy Storchaka · 7 years ago
  48. 6921e73 bpo-33001: Prevent buffer overrun in os.symlink (GH-5989) by Steve Dower · 7 years ago
  49. b21d155 bpo-32964: Reuse a testing implementation of the path protocol in tests. (#5930) by Serhiy Storchaka · 7 years ago
  50. 3c34aad bpo-29248: Fix os.readlink() on Windows (GH-5577) by SSE4 · 7 years ago
  51. 13ff245 bpo-32593: Drop FreeBSD 9 and older support (#5232) by Victor Stinner · 8 years ago
  52. bbdb17d return the new file descriptor from os.dup2 (closes bpo-32441) (#5041) by Benjamin Peterson · 8 years ago
  53. 96a5e50 bpo-32143: add f_fsid to os.statvfs() (#4571) by Giuseppe Scrivano · 8 years ago
  54. fb77e0d Fix hardcoded value in test_os.py (#4744) by Pablo Galindo · 8 years ago
  55. 6a55d09 bpo-29180: Skip test_os tests on PermissionError raised by Android (GH-4374) by xdegaye · 8 years ago
  56. 8c663fd Replace KB unit with KiB (#4293) by Victor Stinner · 8 years ago
  57. c29b585 bpo-31784: Implement PEP 564: add time.time_ns() (#3989) by Victor Stinner · 8 years ago
  58. 4eaf7f9 fixes bpo-31866: remove code pertaining to AtheOS support (#4115) by Benjamin Peterson · 8 years ago
  59. 01b5aab bpo-31827: Remove os.stat_float_times() (GH-4061) by Victor Stinner · 8 years ago
  60. a8e7d90 os.test_utime_current(): tolerate 50 ms delta (#3646) by Victor Stinner · 8 years ago
  61. a6a4dc8 bpo-31370: Remove support for threads-less builds (#3385) by Antoine Pitrou · 8 years ago
  62. 49b2734 Spelling fixes (#2902) by Ville Skyttä · 8 years ago
  63. d1cc037 bpo-30908: Fix dangling thread in test_os.TestSendfile (#2680) by Victor Stinner · 8 years ago
  64. 1180e5a bpo-30879: os.listdir() and os.scandir() now emit bytes names when (#2634) by Serhiy Storchaka · 8 years ago
  65. 8a8d285 bpo-30441: Fix bug when modifying os.environ while iterating over it (#2409) by Osvaldo Santana Neto · 8 years ago
  66. af5392f bpo-30746: Port more tests for os.spawnvpe() and os.execve() from 2.7. (#2394) by Serhiy Storchaka · 8 years ago
  67. 7770394 bpo-30746: Prohibited the '=' character in environment variable names (#2382) by Serhiy Storchaka · 8 years ago
  68. 3402f72 bpo-30649: Revert utime delta in test_os (#2176) by Victor Stinner · 8 years ago
  69. c94caca bpo-30649: test_os tolerates 50 ms delta for utime (#2156) by Victor Stinner · 8 years ago
  70. 897bba7 bpo-30584: Fix test_os fails on non-English Windows (#1980) by Denis Osipov · 8 years ago
  71. ea720fe bpo-25996: Added support of file descriptors in os.scandir() on Unix. (#502) by Serhiy Storchaka · 8 years ago
  72. e304e33 bpo-19930: The mode argument of os.makedirs() no longer affects the file (#799) by Serhiy Storchaka · 8 years ago
  73. 8f6b344 bpo-28682: Added support for bytes paths in os.fwalk(). (#489) by Serhiy Storchaka · 8 years ago
  74. 70d28a1 Remove unused imports. by Serhiy Storchaka · 9 years ago
  75. bce2626 Issue #28732: Raise ValueError when argv[0] is empty by Steve Dower · 9 years ago
  76. 859fd7b Issue #28732: Raise ValueError when os.spawn*() is passed an empty tuple of arguments by Steve Dower · 9 years ago
  77. 2106010 Issue #26935: Fix broken Android dup2() in test_os by Xavier de Gaye · 9 years ago
  78. 78057b4 Closes #27781: Removes special cases for the experimental aspect of PEP 529 by Steve Dower · 9 years ago
  79. b6bd81d Issue #28353: Make test_os.WalkTests.test_walk_bad_dir stable. by Serhiy Storchaka · 9 years ago
  80. 7865dff Issue #28353: Make test_os.WalkTests.test_walk_bad_dir stable. by Serhiy Storchaka · 9 years ago
  81. 36888dd Issue #28353: Fixed tests of os.fwalk() with broken links. by Serhiy Storchaka · 9 years ago
  82. 28f9820 Issue #28353: Try to fix tests. by Serhiy Storchaka · 9 years ago
  83. af4e474 Issue #28353: os.fwalk() no longer fails on broken links. by Serhiy Storchaka · 9 years ago
  84. 42babab Issue #28353: os.fwalk() no longer fails on broken links. by Serhiy Storchaka · 9 years ago
  85. bf3c1c3 Issue #28075: Fix test_access_denied in Python 3.5 by Berker Peksag · 9 years ago
  86. 9a1c91a Fix test_access_denied in 3.5 by Berker Peksag · 9 years ago
  87. 052e4f1 Issue #28075: Merge from 3.5 by Berker Peksag · 9 years ago
  88. 0b4dc48 Issue #28075: Check for ERROR_ACCESS_DENIED in Windows implementation of os.stat() by Berker Peksag · 9 years ago
  89. 4af23d7 Use requires_os_func() to skip SpawnTests by Berker Peksag · 9 years ago
  90. 47e7062 Make SpawnTest.create_args() keyword-only by Berker Peksag · 9 years ago
  91. 8181646 Issue #28114: Fix a crash in parse_envlist() when env contains byte strings by Berker Peksag · 9 years ago
  92. 4659ccf Issue #28114: Add unit tests on os.spawn*() by Victor Stinner · 9 years ago
  93. 99e843b Correct spelling in documentation and code comment by Martin Panter · 9 years ago
  94. 3929499 Issue #1602: Windows console doesn't input or print Unicode (PEP 528) by Steve Dower · 9 years ago
  95. 44b548d #27364: fix "incorrect" uses of escape character in the stdlib. by R David Murray · 9 years ago
  96. cc16be8 Issue #27781: Change file system encoding on Windows to UTF-8 (PEP 529) by Steve Dower · 9 years ago
  97. 173a1f3 Fix test_os.GetRandomTests() by Victor Stinner · 9 years ago
  98. 9b1f474 Add os.getrandom() by Victor Stinner · 9 years ago
  99. ec6ce87 Issue #26027: Support path-like objects in PyUnicode-FSConverter(). by Brett Cannon · 9 years ago
  100. a9ab165 os.access does not allow a fd by Benjamin Peterson · 9 years ago