1. 9eb57c5 Issue #22181: The availability of the getrandom() is now checked in configure, by Victor Stinner · 10 years ago
  2. ebaa81f Merge 3.4 (test_os) by Victor Stinner · 10 years ago
  3. 0561c53 Issue #23605: Refactor os.walk() tests to also run them on os.fwalk() by Victor Stinner · 10 years ago
  4. d5a0be6 Suppress assert dialogs in test_os by Steve Dower · 10 years ago
  5. 6036e44 Issue #22524: New os.scandir() function, part of the PEP 471: "os.scandir() by Victor Stinner · 10 years ago
  6. a9e00d1 Issue #20069: Fixed test_os on Solaris: error message is platform depended. by Serhiy Storchaka · 10 years ago
  7. f2ad173 #20069: Add tests for os.chown. by R David Murray · 10 years ago
  8. fe02e39 Issue #22585: On OpenBSD 5.6 and newer, os.urandom() now calls getentropy(), by Victor Stinner · 10 years ago
  9. 4d6a3d6 Issue #22585: On OpenBSD 5.6 and newer, os.urandom() now calls getentropy(), by Victor Stinner · 10 years ago
  10. 65ee467 Issue #22777: Test pickling with all protocols. by Serhiy Storchaka · 10 years ago
  11. bad1257 Issue #22777: Test pickling with all protocols. by Serhiy Storchaka · 10 years ago
  12. 97e2e06 os: Include posix functions in os.__all__. Closes issue #18554. by Yury Selivanov · 10 years ago
  13. 1db9e7b Issue #22054: Add os.get_blocking() and os.set_blocking() functions to get and by Victor Stinner · 10 years ago
  14. 5c6e6fc Issue #21932: Skip test_os.test_large_read() on 32-bit system by Victor Stinner · 10 years ago
  15. 6e1ccfe Issue #21932: Ooops, os.read(fd, size) allocates a buffer of size bytes, even by Victor Stinner · 10 years ago
  16. b28ed92 Issue #21932: os.read() now uses a :c:func:`Py_ssize_t` type instead of by Victor Stinner · 10 years ago
  17. 63f277b Issue #21741: Add st_file_attributes to os.stat_result on Windows. by Zachary Ware · 10 years ago
  18. 0321cf2 Issue18314 Allow unlink to remove junctions. Includes support for creating junctions. Patch by Kim Gräsman by Tim Golden · 10 years ago
  19. fbf963c Backed out changeset: 17df50df62c7 by Tim Golden · 10 years ago
  20. 4675d79 Issue #18314 os.unlink will now remove junction points on Windows. Patch by Kim Gräsman. by Tim Golden · 10 years ago
  21. 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
  22. 9dc203f merge 3.3 (#21082) by Benjamin Peterson · 11 years ago
  23. 4717e21 merge 3.2 (#21082) by Benjamin Peterson · 11 years ago
  24. ee5f1c1 remove directory mode check from makedirs (closes #21082) by Benjamin Peterson · 11 years ago
  25. 149e540 (Merge 3.3) Issue #20113: os.readv() and os.writev() now raise an OSError by Victor Stinner · 11 years ago
  26. 57ddf78 Issue #20113: os.readv() and os.writev() now raise an OSError exception on by Victor Stinner · 11 years ago
  27. 101d9e7 Issue 19572: More silently skipped tests explicitly skipped. by Zachary Ware · 11 years ago
  28. 9fe6d86 Issue 19572: More silently skipped tests explicitly skipped. by Zachary Ware · 11 years ago
  29. 4376763 Issue #18702: All skipped tests now reported as skipped. by Serhiy Storchaka · 11 years ago
  30. 7908068 Issue #18702: All skipped tests now reported as skipped. by Serhiy Storchaka · 11 years ago
  31. 1cc3540 Correct whitespace in test_os by Tim Golden · 11 years ago
  32. 781bbeb Issue13234 Allow listdir to handle extended paths on Windows (Patch by Santoso Wijaya) by Tim Golden · 11 years ago
  33. 370cb25 test_os: report tests as skipped when os.statvfs() fails with ENOSYS by Victor Stinner · 11 years ago
  34. 2582762 Issue #19209: Remove import of copyreg from the os module to speed up by Christian Heimes · 11 years ago
  35. 4f7a36f Issue #18904: test_os and test_socket use unittest.skipIf() to check if fcntl by Victor Stinner · 11 years ago
  36. 7ba6b0f Issue #18904: Improve os.get/set_inheritable() tests by Victor Stinner · 11 years ago
  37. daf4555 Issue #18571: Implementation of the PEP 446: file descriptors and file handles by Victor Stinner · 11 years ago
  38. f5e30d8 Issue #18756: make test_urandom_failure more robust by executing its code in a subprocess by Antoine Pitrou · 11 years ago
  39. eba25ba Issue #18756: make test_urandom_failure more robust by executing its code in a subprocess by Antoine Pitrou · 11 years ago
  40. a93c6db (Merge 3.3) Close #17702: On error, os.environb now removes suppress the except by Victor Stinner · 11 years ago
  41. 0c2dd0c Close #17702: On error, os.environb now removes suppress the except context by Victor Stinner · 11 years ago
  42. 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
  43. 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
  44. f0e5210 (Merge 3.3) Issue #18296: Try to fix TestSendfile.test_trailers() of test_os on FreeBSD by Victor Stinner · 11 years ago
  45. 5e4d639 Issue #18296: Try to fix TestSendfile.test_trailers() of test_os on FreeBSD by Victor Stinner · 11 years ago
  46. 4a0b6f7 Issue #15301: skip new test method so Windows builtbots stop failing. by Terry Jan Reedy · 11 years ago
  47. a27b83a Issue #15301: Parsing fd, uid, and gid parameters for builtins by Larry Hastings · 11 years ago
  48. b501b56 Use simple call to os.symlink for broken link (intended for previous commit) by Jason R. Coombs · 11 years ago
  49. 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
  50. fb1141c Merge with 3.3 by Jason R. Coombs · 11 years ago
  51. 8f1a8e3 Merge with 3.3 by Jason R. Coombs · 11 years ago
  52. 44feda3 Issue #17914: Add os.cpu_count(). Patch by Yogesh Chaudhari, based on an by Charles-Francois Natali · 11 years ago
  53. 672559f (Merge 3.3) Issue #17702: use assertRaises() for the unit test by Victor Stinner · 11 years ago
  54. 839e5ea Issue #17702: use assertRaises() for the unit test by Victor Stinner · 11 years ago
  55. 43aa0d0 (Merge 3.3) Close #17702: os.environ now raises KeyError with the original by Victor Stinner · 11 years ago
  56. 6d10139 Close #17702: os.environ now raises KeyError with the original environment by Victor Stinner · 11 years ago
  57. a8e59fe Merge 3.3. by Stefan Krah · 12 years ago
  58. ebee49a Issue #14110: Fix test failures on FreeBSD if the user is in the wheel group. by Stefan Krah · 12 years ago
  59. 67eb8df (Merge 3.3) Issue #9644: Add a test on os.statvfs() for the PEP 383 by Victor Stinner · 12 years ago
  60. a25be07 Issue #9644: Add a test on os.statvfs() for the PEP 383 by Victor Stinner · 12 years ago
  61. e4110dc Issue #9644: Fix the encoding used by os.statvfs(): use the filesystem encoding by Victor Stinner · 12 years ago
  62. 914ab84 Add test coverage for os.removedirs (#16775) by Andrew Svetlov · 12 years ago
  63. 34dcdee Add test coverage for os.removedirs (#16775) by Andrew Svetlov · 12 years ago
  64. 405faed Add test coverage for os.removedirs (#16775) by Andrew Svetlov · 12 years ago
  65. 8b33dd8 Use OESeeror instead of os.error (#16720) by Andrew Svetlov · 12 years ago
  66. 2606a6f Issue #16719: Get rid of WindowsError. Use OSError instead by Andrew Svetlov · 12 years ago
  67. a191959 Issue #16714: use 'raise' exceptions, don't 'throw'. by Andrew Svetlov · 12 years ago
  68. 5b89840 Issue #16714: use 'raise' exceptions, don't 'throw'. by Andrew Svetlov · 12 years ago
  69. 737fb89 Issue #16714: use 'raise' exceptions, don't 'throw'. by Andrew Svetlov · 12 years ago
  70. ee36c24 Issue #15478: os.lchflags() is not always available when os.chflags() is available by Victor Stinner · 12 years ago
  71. e667e98 Issue #16218, #16444: Backport improvment on tests for non-ASCII characters by Victor Stinner · 12 years ago
  72. 64e039a Issue #16414: Fix test_os on Windows, don't test os.listdir() with undecodable by Victor Stinner · 12 years ago
  73. 8b219b2 Issue #16414: Add support.FS_NONASCII and support.TESTFN_NONASCII by Victor Stinner · 12 years ago
  74. afe1706 Issue #15478: Use source filename in OSError, not destination filename by Victor Stinner · 12 years ago
  75. a0c811e Issue #15478: Fix again to fix test_os on Windows by Victor Stinner · 12 years ago
  76. bd54f0e Issue #15478: Fix test_os on FreeBSD by Victor Stinner · 12 years ago
  77. f69055e Issue #15478: Fix test_os on Windows (os.chown is missing) by Victor Stinner · 12 years ago
  78. 292c835 Issue #15478: Raising an OSError doesn't decode or encode the filename anymore by Victor Stinner · 12 years ago
  79. c7e139b #1087: use proper skips in test_os. by Ezio Melotti · 12 years ago
  80. 3a2b97e Issue #14992: merge from 3.2 by Ned Deily · 12 years ago
  81. c622f42 Issue #14992: Prevent test_os test_exist_ok_s_isgid_directory test case by Ned Deily · 12 years ago
  82. b403806 Issue #15202: Consistently use the name "follow_symlinks" for by Larry Hastings · 12 years ago
  83. 0af71aa Issue #16218, #16414, #16444: Backport FS_NONASCII, TESTFN_UNDECODABLE, by Victor Stinner · 12 years ago
  84. 2240ac1 Issue #15261: Stop os.stat(fd) crashing on Windows when fd not open. by Richard Oudkerk · 12 years ago
  85. c48fe98 Issue #15177: Added dir_fd parameter to os.fwalk(). by Larry Hastings · 12 years ago
  86. 306336b Closes #15161: add support for giving path as a fd for truncate() and pathconf(). by Georg Brandl · 12 years ago
  87. b698d8e Issue #15154: Add "dir_fd" parameter to os.rmdir, remove "rmdir" by Larry Hastings · 12 years ago
  88. 9cf065c Issue #14626: Large refactoring of functions / parameters in the os module. by Larry Hastings · 12 years ago
  89. 034d0aa Issue #14711: os.stat_float_times() has been deprecated. by Victor Stinner · 12 years ago
  90. f0a9a9b Fixes Issue #14992: os.makedirs(path, exist_ok=True) would raise an OSError by Gregory P. Smith · 12 years ago
  91. a81c856 Fixes Issue #14992: os.makedirs(path, exist_ok=True) would raise an OSError by Gregory P. Smith · 12 years ago
  92. 39bf90d Add two more sorts to test_os.WalkTests I've missed before by Hynek Schlawack · 12 years ago
  93. c96f5a0 Sort file list in test_os.WalkTests by Hynek Schlawack · 12 years ago
  94. 66bfcc1 #14773: Fix os.fwalk() failing on dangling symlinks by Hynek Schlawack · 12 years ago
  95. 424246f Issue #14082: shutil.copy2() now copies extended attributes, if possible. by Antoine Pitrou · 12 years ago
  96. 76ad59b Issue #14127: Add ns= parameter to utime, futimes, and lutimes. by Larry Hastings · 12 years ago
  97. 6fe20b3 Issue #14127: Add st_{cma}time_ns fields to os.stat() result object. by Larry Hastings · 12 years ago
  98. 4ca5661 all OSErrors should indicate there are no extended attributes (closes #14358) by Benjamin Peterson · 13 years ago
  99. d7aff2d update skip reason by Philip Jenvey · 13 years ago
  100. e308b7c also skip test_device_encoding when stdin isn't a tty by Philip Jenvey · 13 years ago