1. a07ab29 Issue #26783: test_os.WalkTests.test_walk_topdown did't test fwalk and bytes. by Serhiy Storchaka · 8 years ago
  2. ada6db7 Issue #25911: Tring to silence deprecation warnings in bytes path walk tests. by Serhiy Storchaka · 8 years ago
  3. 7ab61ae Backed out changeset f9e22717722d by Serhiy Storchaka · 8 years ago
  4. adca846 Backed out changeset 19a3e0e664af by Serhiy Storchaka · 8 years ago
  5. 55e3218 Issues #23808, #25911: Trying to fix walk tests on Windows. by Serhiy Storchaka · 8 years ago
  6. 388b90f Issues #23808, #25911: Trying to fix walk tests on Windows. by Serhiy Storchaka · 8 years ago
  7. 5f6a0b4 Issue #25911: Restored support of bytes paths in os.walk() on Windows. by Serhiy Storchaka · 9 years ago
  8. a17ca19 Issue #25860: Fixed test failure caused by inconsistency of os.walk() and by Serhiy Storchaka · 9 years ago
  9. 0bddc9e Issue #25860: os.fwalk() no longer skips remaining directories when error occurs. by Serhiy Storchaka · 9 years ago
  10. 97cabb9 Issue #25583: Merge makedirs fix from 3.4 into 3.5 by Martin Panter · 9 years ago
  11. a82642f Issue #25583: Avoid incorrect errors raised by os.makedirs(exist_ok=True) by Martin Panter · 9 years ago
  12. 2eb819f Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5 by Martin Panter · 9 years ago
  13. 7462b649 Issue #25523: Correct "a" article to "an" article by Martin Panter · 9 years ago
  14. bae2d62 Issue #25003: On Solaris 11.3 or newer, os.urandom() now uses the getrandom() by Victor Stinner · 9 years ago
  15. d3ffd32 Issue #25118: Fix a regression of Python 3.5.0 in os.waitpid() on Windows. by Victor Stinner · 9 years ago
  16. 153627c Marked keystrokes with the :kbd: role. Fixed the case of the "Ctrl-" prefixes. by Serhiy Storchaka · 9 years ago
  17. 0424eaf Marked keystrokes with the :kbd: role. Fixed the case of the "Ctrl-" prefixes. by Serhiy Storchaka · 9 years ago
  18. 6088b7b Merge 3.4 into 3.5 by Martin Panter · 9 years ago
  19. 9499413 os.sendfile(headers=None, trailers=None) arguments are not actually accepted by Martin Panter · 9 years ago
  20. 0ff8909 Issue #23738: Merge 3.4 into 3.5 by Martin Panter · 9 years ago
  21. bf19d16 Issue #23738: Document and test actual keyword parameter names by Martin Panter · 9 years ago
  22. c0b1e0f Issue #24675: Avoid DeprecationWarning in test_os by Victor Stinner · 9 years ago
  23. 036a71b Use setUpClass and tearDownClass correctly in test_os. by Berker Peksag · 9 years ago
  24. 3d0b842 Merge 3.4 by Victor Stinner · 9 years ago
  25. 138adb8 (Merge 3.4) Issue #15745: Rewrite os.utime() tests in test_os by Victor Stinner · 9 years ago
  26. e12e7aa Issue #15745: Rewrite os.utime() tests in test_os by Victor Stinner · 9 years ago
  27. ce64391 Issue #9517: Move script_helper to the support package. by Berker Peksag · 9 years ago
  28. 9eb57c5 Issue #22181: The availability of the getrandom() is now checked in configure, by Victor Stinner · 9 years ago
  29. ebaa81f Merge 3.4 (test_os) by Victor Stinner · 9 years ago
  30. 0561c53 Issue #23605: Refactor os.walk() tests to also run them on os.fwalk() by Victor Stinner · 9 years ago
  31. d5a0be6 Suppress assert dialogs in test_os by Steve Dower · 9 years ago
  32. 6036e44 Issue #22524: New os.scandir() function, part of the PEP 471: "os.scandir() by Victor Stinner · 9 years ago
  33. a9e00d1 Issue #20069: Fixed test_os on Solaris: error message is platform depended. by Serhiy Storchaka · 10 years ago
  34. f2ad173 #20069: Add tests for os.chown. by R David Murray · 10 years ago
  35. fe02e39 Issue #22585: On OpenBSD 5.6 and newer, os.urandom() now calls getentropy(), by Victor Stinner · 10 years ago
  36. 4d6a3d6 Issue #22585: On OpenBSD 5.6 and newer, os.urandom() now calls getentropy(), by Victor Stinner · 10 years ago
  37. 65ee467 Issue #22777: Test pickling with all protocols. by Serhiy Storchaka · 10 years ago
  38. bad1257 Issue #22777: Test pickling with all protocols. by Serhiy Storchaka · 10 years ago
  39. 97e2e06 os: Include posix functions in os.__all__. Closes issue #18554. by Yury Selivanov · 10 years ago
  40. 1db9e7b Issue #22054: Add os.get_blocking() and os.set_blocking() functions to get and by Victor Stinner · 10 years ago
  41. 5c6e6fc Issue #21932: Skip test_os.test_large_read() on 32-bit system by Victor Stinner · 10 years ago
  42. 6e1ccfe Issue #21932: Ooops, os.read(fd, size) allocates a buffer of size bytes, even by Victor Stinner · 10 years ago
  43. b28ed92 Issue #21932: os.read() now uses a :c:func:`Py_ssize_t` type instead of by Victor Stinner · 10 years ago
  44. 63f277b Issue #21741: Add st_file_attributes to os.stat_result on Windows. by Zachary Ware · 10 years ago
  45. ab6b9f8 Issue #22585: make URandomFDTests test case actually run by Ned Deily · 9 years ago
  46. 0321cf2 Issue18314 Allow unlink to remove junctions. Includes support for creating junctions. Patch by Kim Gräsman by Tim Golden · 10 years ago
  47. fbf963c Backed out changeset: 17df50df62c7 by Tim Golden · 10 years ago
  48. 4675d79 Issue #18314 os.unlink will now remove junction points on Windows. Patch by Kim Gräsman. by Tim Golden · 10 years ago
  49. e472aea Issue #21207: Detect when the os.urandom cached fd has been closed or replaced, and open it anew. by Antoine Pitrou · 10 years ago
  50. 9dc203f merge 3.3 (#21082) by Benjamin Peterson · 10 years ago
  51. 4717e21 merge 3.2 (#21082) by Benjamin Peterson · 10 years ago
  52. ee5f1c1 remove directory mode check from makedirs (closes #21082) by Benjamin Peterson · 10 years ago
  53. 149e540 (Merge 3.3) Issue #20113: os.readv() and os.writev() now raise an OSError by Victor Stinner · 11 years ago
  54. 57ddf78 Issue #20113: os.readv() and os.writev() now raise an OSError exception on by Victor Stinner · 11 years ago
  55. 101d9e7 Issue 19572: More silently skipped tests explicitly skipped. by Zachary Ware · 11 years ago
  56. 9fe6d86 Issue 19572: More silently skipped tests explicitly skipped. by Zachary Ware · 11 years ago
  57. 4376763 Issue #18702: All skipped tests now reported as skipped. by Serhiy Storchaka · 11 years ago
  58. 7908068 Issue #18702: All skipped tests now reported as skipped. by Serhiy Storchaka · 11 years ago
  59. 1cc3540 Correct whitespace in test_os by Tim Golden · 11 years ago
  60. 781bbeb Issue13234 Allow listdir to handle extended paths on Windows (Patch by Santoso Wijaya) by Tim Golden · 11 years ago
  61. 370cb25 test_os: report tests as skipped when os.statvfs() fails with ENOSYS by Victor Stinner · 11 years ago
  62. 2582762 Issue #19209: Remove import of copyreg from the os module to speed up by Christian Heimes · 11 years ago
  63. 4f7a36f Issue #18904: test_os and test_socket use unittest.skipIf() to check if fcntl by Victor Stinner · 11 years ago
  64. 7ba6b0f Issue #18904: Improve os.get/set_inheritable() tests by Victor Stinner · 11 years ago
  65. daf4555 Issue #18571: Implementation of the PEP 446: file descriptors and file handles by Victor Stinner · 11 years ago
  66. f5e30d8 Issue #18756: make test_urandom_failure more robust by executing its code in a subprocess by Antoine Pitrou · 11 years ago
  67. eba25ba Issue #18756: make test_urandom_failure more robust by executing its code in a subprocess by Antoine Pitrou · 11 years ago
  68. a93c6db (Merge 3.3) Close #17702: On error, os.environb now removes suppress the except by Victor Stinner · 11 years ago
  69. 0c2dd0c Close #17702: On error, os.environb now removes suppress the except context by Victor Stinner · 11 years ago
  70. 95b2146 Issue #18756: Improve error reporting in os.urandom() when the failure is due to something else than /dev/urandom not existing. by Antoine Pitrou · 11 years ago
  71. ec34ab5 Issue #18756: Improve error reporting in os.urandom() when the failure is due to something else than /dev/urandom not existing. by Antoine Pitrou · 11 years ago
  72. f0e5210 (Merge 3.3) Issue #18296: Try to fix TestSendfile.test_trailers() of test_os on FreeBSD by Victor Stinner · 11 years ago
  73. 5e4d639 Issue #18296: Try to fix TestSendfile.test_trailers() of test_os on FreeBSD by Victor Stinner · 11 years ago
  74. 4a0b6f7 Issue #15301: skip new test method so Windows builtbots stop failing. by Terry Jan Reedy · 11 years ago
  75. a27b83a Issue #15301: Parsing fd, uid, and gid parameters for builtins by Larry Hastings · 11 years ago
  76. b501b56 Use simple call to os.symlink for broken link (intended for previous commit) by Jason R. Coombs · 11 years ago
  77. 3a09286 Issue #13772: Restored directory detection of targets in `os.symlink` on Windows, which was temporarily removed in Python 3.2.3 due to an incomplete implementation. The implementation now works even if the symlink is created in a location other than the current directory. by Jason R. Coombs · 11 years ago
  78. fb1141c Merge with 3.3 by Jason R. Coombs · 11 years ago
  79. 8f1a8e3 Merge with 3.3 by Jason R. Coombs · 11 years ago
  80. 44feda3 Issue #17914: Add os.cpu_count(). Patch by Yogesh Chaudhari, based on an by Charles-Francois Natali · 11 years ago
  81. 672559f (Merge 3.3) Issue #17702: use assertRaises() for the unit test by Victor Stinner · 11 years ago
  82. 839e5ea Issue #17702: use assertRaises() for the unit test by Victor Stinner · 11 years ago
  83. 43aa0d0 (Merge 3.3) Close #17702: os.environ now raises KeyError with the original by Victor Stinner · 11 years ago
  84. 6d10139 Close #17702: os.environ now raises KeyError with the original environment by Victor Stinner · 11 years ago
  85. a8e59fe Merge 3.3. by Stefan Krah · 12 years ago
  86. ebee49a Issue #14110: Fix test failures on FreeBSD if the user is in the wheel group. by Stefan Krah · 12 years ago
  87. 67eb8df (Merge 3.3) Issue #9644: Add a test on os.statvfs() for the PEP 383 by Victor Stinner · 12 years ago
  88. a25be07 Issue #9644: Add a test on os.statvfs() for the PEP 383 by Victor Stinner · 12 years ago
  89. e4110dc Issue #9644: Fix the encoding used by os.statvfs(): use the filesystem encoding by Victor Stinner · 12 years ago
  90. 914ab84 Add test coverage for os.removedirs (#16775) by Andrew Svetlov · 12 years ago
  91. 34dcdee Add test coverage for os.removedirs (#16775) by Andrew Svetlov · 12 years ago
  92. 405faed Add test coverage for os.removedirs (#16775) by Andrew Svetlov · 12 years ago
  93. 8b33dd8 Use OESeeror instead of os.error (#16720) by Andrew Svetlov · 12 years ago
  94. 2606a6f Issue #16719: Get rid of WindowsError. Use OSError instead by Andrew Svetlov · 12 years ago
  95. a191959 Issue #16714: use 'raise' exceptions, don't 'throw'. by Andrew Svetlov · 12 years ago
  96. 5b89840 Issue #16714: use 'raise' exceptions, don't 'throw'. by Andrew Svetlov · 12 years ago
  97. 737fb89 Issue #16714: use 'raise' exceptions, don't 'throw'. by Andrew Svetlov · 12 years ago
  98. ee36c24 Issue #15478: os.lchflags() is not always available when os.chflags() is available by Victor Stinner · 12 years ago
  99. e667e98 Issue #16218, #16444: Backport improvment on tests for non-ASCII characters by Victor Stinner · 12 years ago
  100. 64e039a Issue #16414: Fix test_os on Windows, don't test os.listdir() with undecodable by Victor Stinner · 12 years ago