1. bce2626 Issue #28732: Raise ValueError when argv[0] is empty by Steve Dower · 8 years ago
  2. 859fd7b Issue #28732: Raise ValueError when os.spawn*() is passed an empty tuple of arguments by Steve Dower · 8 years ago
  3. 2106010 Issue #26935: Fix broken Android dup2() in test_os by Xavier de Gaye · 8 years ago
  4. 78057b4 Closes #27781: Removes special cases for the experimental aspect of PEP 529 by Steve Dower · 8 years ago
  5. b6bd81d Issue #28353: Make test_os.WalkTests.test_walk_bad_dir stable. by Serhiy Storchaka · 8 years ago
  6. 7865dff Issue #28353: Make test_os.WalkTests.test_walk_bad_dir stable. by Serhiy Storchaka · 8 years ago
  7. 36888dd Issue #28353: Fixed tests of os.fwalk() with broken links. by Serhiy Storchaka · 8 years ago
  8. 28f9820 Issue #28353: Try to fix tests. by Serhiy Storchaka · 8 years ago
  9. af4e474 Issue #28353: os.fwalk() no longer fails on broken links. by Serhiy Storchaka · 8 years ago
  10. 42babab Issue #28353: os.fwalk() no longer fails on broken links. by Serhiy Storchaka · 8 years ago
  11. bf3c1c3 Issue #28075: Fix test_access_denied in Python 3.5 by Berker Peksag · 8 years ago
  12. 9a1c91a Fix test_access_denied in 3.5 by Berker Peksag · 8 years ago
  13. 052e4f1 Issue #28075: Merge from 3.5 by Berker Peksag · 8 years ago
  14. 0b4dc48 Issue #28075: Check for ERROR_ACCESS_DENIED in Windows implementation of os.stat() by Berker Peksag · 8 years ago
  15. 4af23d7 Use requires_os_func() to skip SpawnTests by Berker Peksag · 8 years ago
  16. 47e7062 Make SpawnTest.create_args() keyword-only by Berker Peksag · 8 years ago
  17. 8181646 Issue #28114: Fix a crash in parse_envlist() when env contains byte strings by Berker Peksag · 8 years ago
  18. 4659ccf Issue #28114: Add unit tests on os.spawn*() by Victor Stinner · 8 years ago
  19. 99e843b Correct spelling in documentation and code comment by Martin Panter · 8 years ago
  20. 3929499 Issue #1602: Windows console doesn't input or print Unicode (PEP 528) by Steve Dower · 8 years ago
  21. 44b548d #27364: fix "incorrect" uses of escape character in the stdlib. by R David Murray · 8 years ago
  22. cc16be8 Issue #27781: Change file system encoding on Windows to UTF-8 (PEP 529) by Steve Dower · 8 years ago
  23. 173a1f3 Fix test_os.GetRandomTests() by Victor Stinner · 8 years ago
  24. 9b1f474 Add os.getrandom() by Victor Stinner · 8 years ago
  25. ec6ce87 Issue #26027: Support path-like objects in PyUnicode-FSConverter(). by Brett Cannon · 8 years ago
  26. a9ab165 os.access does not allow a fd by Benjamin Peterson · 8 years ago
  27. d0f5bab Issue #26027: Fix test_path_t_converter on Windows by Berker Peksag · 8 years ago
  28. 3ce2fd4 Don't test for path-like bytes paths on Windows by Brett Cannon · 8 years ago
  29. 8f96a30 Issue #26027: Don't test for bytearray in path_t as that's now deprecated. by Brett Cannon · 8 years ago
  30. 3f9183b Issue #26027, #27524: Add PEP 519/__fspath__() support to os and os.path. by Brett Cannon · 8 years ago
  31. d73c318 Issue #26800: Undocumented support of general bytes-like objects by Serhiy Storchaka · 8 years ago
  32. d141531 Issue #27472: Add test.support.unix_shell as the path to the default shell. by Xavier de Gaye · 8 years ago
  33. 33ed881 Fix a failing test introduced as part of issue #27512 by Brett Cannon · 8 years ago
  34. 044283a Issue #27512: Don't segfault when os.fspath() calls an object whose by Brett Cannon · 8 years ago
  35. a32c4d0 Issue #27038: Expose DirEntry as os.DirEntry. by Brett Cannon · 8 years ago
  36. c78ca1e Issue #27186: Update os.fspath()/PyOS_FSPath() to check the return by Brett Cannon · 8 years ago
  37. 0c9ad59 Issue #27186: Skip scandir(bytes) test with os.name == "nt" by Martin Panter · 8 years ago
  38. 41ae559 Issue #27186: skip bytes path test for os.scandir() on Windows by Brett Cannon · 8 years ago
  39. 96881cd Issue #27186: Add os.PathLike support to DirEntry by Brett Cannon · 8 years ago
  40. 228c636 issue27186: fix fsencode/fsdecode and update tests; patch by Jelle Zijlstra by Ethan Furman · 8 years ago
  41. 958b3e4 issue27186: add PathLike ABC by Ethan Furman · 8 years ago
  42. 410ef8e issue27186: add C version of os.fspath(); patch by Jelle Zijlstra by Ethan Furman · 8 years ago
  43. c1cbeed issue27182: update fsencode and fsdecode for os.path(); patch by Dusty Phillips by Ethan Furman · 8 years ago
  44. cdc0879 issue27186 -- initial docs, tests, and python version of os.fspath by Ethan Furman · 8 years ago
  45. 9e92355 Issue #26783: test_os.WalkTests.test_walk_topdown did't test fwalk and bytes. by Serhiy Storchaka · 8 years ago
  46. a07ab29 Issue #26783: test_os.WalkTests.test_walk_topdown did't test fwalk and bytes. by Serhiy Storchaka · 8 years ago
  47. 53b0a41 Issue #25911: more info on test_os failure by Victor Stinner · 9 years ago
  48. e984eb5 Fix test_os.test_symlink(): remove create symlink by Victor Stinner · 9 years ago
  49. 3283014 changeset: 100749:0b61b2d28a07 by Victor Stinner · 9 years ago
  50. e77c974 test_os: Win32ErrorTests now ensures that TESTFN doesn't exist by Victor Stinner · 9 years ago
  51. 3899b54 test_os: use support.rmtree() to cleanup WalkTests by Victor Stinner · 9 years ago
  52. ae39d23 Enhance and modernize test_os by Victor Stinner · 9 years ago
  53. f95a19b test_os: use @support.requires_linux_version by Victor Stinner · 9 years ago
  54. 923590e Fix DeprecationWarning on Windows by Victor Stinner · 9 years ago
  55. 786e922 Issue #25911: Tring to silence deprecation warnings in bytes path walk tests. by Serhiy Storchaka · 9 years ago
  56. ada6db7 Issue #25911: Tring to silence deprecation warnings in bytes path walk tests. by Serhiy Storchaka · 9 years ago
  57. 706379a Backed out changeset da020e408c7f by Serhiy Storchaka · 9 years ago
  58. 7ab61ae Backed out changeset f9e22717722d by Serhiy Storchaka · 9 years ago
  59. adca846 Backed out changeset 19a3e0e664af by Serhiy Storchaka · 9 years ago
  60. 238fecd Issues #23808, #25911: Trying to fix walk tests on Windows. by Serhiy Storchaka · 9 years ago
  61. 55e3218 Issues #23808, #25911: Trying to fix walk tests on Windows. by Serhiy Storchaka · 9 years ago
  62. 388b90f Issues #23808, #25911: Trying to fix walk tests on Windows. by Serhiy Storchaka · 9 years ago
  63. ffe96ae Issue #25994: Added the close() method and the support of the context manager by Serhiy Storchaka · 9 years ago
  64. 79ad897 Issue #25911: Restored support of bytes paths in os.walk() on Windows. by Serhiy Storchaka · 9 years ago
  65. 5f6a0b4 Issue #25911: Restored support of bytes paths in os.walk() on Windows. by Serhiy Storchaka · 9 years ago
  66. 85896f7 Issue #25860: Fixed test failure caused by inconsistency of os.walk() and by Serhiy Storchaka · 9 years ago
  67. a17ca19 Issue #25860: Fixed test failure caused by inconsistency of os.walk() and by Serhiy Storchaka · 9 years ago
  68. 345e78e Issue #25860: os.fwalk() no longer skips remaining directories when error occurs. by Serhiy Storchaka · 9 years ago
  69. 0bddc9e Issue #25860: os.fwalk() no longer skips remaining directories when error occurs. by Serhiy Storchaka · 9 years ago
  70. 5e02af4 Issue #25583: Merge makedirs fix from 3.5 by Martin Panter · 9 years ago
  71. 97cabb9 Issue #25583: Merge makedirs fix from 3.4 into 3.5 by Martin Panter · 9 years ago
  72. a82642f Issue #25583: Avoid incorrect errors raised by os.makedirs(exist_ok=True) by Martin Panter · 9 years ago
  73. e56a919 Issue #25523: Merge a-to-an corrections from 3.5 by Martin Panter · 9 years ago
  74. 2eb819f Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5 by Martin Panter · 9 years ago
  75. 7462b649 Issue #25523: Correct "a" article to "an" article by Martin Panter · 9 years ago
  76. bae2d62 Issue #25003: On Solaris 11.3 or newer, os.urandom() now uses the getrandom() by Victor Stinner · 9 years ago
  77. d8f432a Issue #25003: Skip test_os.URandomFDTests on Solaris 11.3 and newer by Victor Stinner · 9 years ago
  78. 024364a Merge 3.5 (os.waitpid) by Victor Stinner · 9 years ago
  79. d3ffd32 Issue #25118: Fix a regression of Python 3.5.0 in os.waitpid() on Windows. by Victor Stinner · 9 years ago
  80. 233cdb3 Marked keystrokes with the :kbd: role. Fixed the case of the "Ctrl-" prefixes. by Serhiy Storchaka · 9 years ago
  81. 153627c Marked keystrokes with the :kbd: role. Fixed the case of the "Ctrl-" prefixes. by Serhiy Storchaka · 9 years ago
  82. 0424eaf Marked keystrokes with the :kbd: role. Fixed the case of the "Ctrl-" prefixes. by Serhiy Storchaka · 9 years ago
  83. 3f560c1 Merge 3.5 into 3.6 by Martin Panter · 9 years ago
  84. 6088b7b Merge 3.4 into 3.5 by Martin Panter · 9 years ago
  85. 9499413 os.sendfile(headers=None, trailers=None) arguments are not actually accepted by Martin Panter · 9 years ago
  86. a122b5a Issue #23738: Merge 3.5 into 3.6 by Martin Panter · 9 years ago
  87. 0ff8909 Issue #23738: Merge 3.4 into 3.5 by Martin Panter · 9 years ago
  88. bf19d16 Issue #23738: Document and test actual keyword parameter names by Martin Panter · 9 years ago
  89. 95e0960 Use setUpClass and tearDownClass correctly in test_os. by Berker Peksag · 9 years ago
  90. 036a71b Use setUpClass and tearDownClass correctly in test_os. by Berker Peksag · 9 years ago
  91. fd44384 Merge 3.5 by Victor Stinner · 9 years ago
  92. 3d0b842 Merge 3.4 by Victor Stinner · 9 years ago
  93. c0b1e0f Issue #24675: Avoid DeprecationWarning in test_os by Victor Stinner · 9 years ago
  94. 138adb8 (Merge 3.4) Issue #15745: Rewrite os.utime() tests in test_os by Victor Stinner · 9 years ago
  95. e12e7aa Issue #15745: Rewrite os.utime() tests in test_os by Victor Stinner · 9 years ago
  96. cf05970 Remove unused import on test_os by Victor Stinner · 9 years ago
  97. 47aacc8 Issue #15745: Rewrite os.utime() tests in test_os by Victor Stinner · 9 years ago
  98. ce64391 Issue #9517: Move script_helper to the support package. by Berker Peksag · 9 years ago
  99. 9eb57c5 Issue #22181: The availability of the getrandom() is now checked in configure, by Victor Stinner · 10 years ago
  100. ebaa81f Merge 3.4 (test_os) by Victor Stinner · 10 years ago