1. 5d272cc Close #14180: Factorize code to convert a number of seconds to time_t, timeval or timespec by Victor Stinner · 13 years ago
  2. efb00c0 Issue #14153 Create _Py_device_encoding() to prevent _io from having to import by Brett Cannon · 13 years ago
  3. 2fb477c Merge 3.2: Issue #13703 plus some related test suite fixes. by Georg Brandl · 13 years ago
  4. 09a7c72 Merge from 3.1: Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) by Georg Brandl · 13 years ago
  5. 2daf6ae Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) by Georg Brandl · 13 years ago
  6. bcf2b59 Issue #13609: Add two functions to query the terminal size: by Antoine Pitrou · 13 years ago
  7. 4195b5c Backout f8409b3d6449: the PEP 410 is not accepted yet by Victor Stinner · 13 years ago
  8. ccd5715 PEP 410 by Victor Stinner · 13 years ago
  9. 1aa54a4 Issue #13964: Skip os.*utime*() tests if os.stat() doesn't support timestamp by Victor Stinner · 13 years ago
  10. a2f7c00 Issue #13964: Split os.*utime*() subsecond tests into multiple tests to help by Victor Stinner · 13 years ago
  11. 7794090 Following Nick's suggestion, rename posix.fdlistdir() to posix.flistdir(), to by Charles-François Natali · 13 years ago
  12. f3b2d88 Issue #8828: Add new function os.replace(), for cross-platform renaming with overwriting. by Antoine Pitrou · 13 years ago
  13. 91ecea2 Issue #13772: In os.symlink() under Windows, do not try to guess the link by Antoine Pitrou · 13 years ago
  14. 5311c1d Issue #13772: In os.symlink() under Windows, do not try to guess the link by Antoine Pitrou · 13 years ago
  15. 50590f1 Use GetModuleHandleW to avoid *A functions where possible. by Martin v. Löwis · 13 years ago
  16. e83f899 Issue #13530: Document os.lseek() result by Victor Stinner · 13 years ago
  17. 76961fa Issue #13757: Change os.fdlistdir() so that it duplicates the passed file by Charles-François Natali · 13 years ago
  18. f2840a8 Backed out changeset 36f2e236c601: For some reason, rewinddir() doesn't work as by Charles-François Natali · 13 years ago
  19. 38f425e Issue #13739: It's simpler and more direct to call rewinddir() at the beginning. by Charles-François Natali · 13 years ago
  20. 7546ad3 Issue #13739: In os.listdir(), rewind the directory stream (so that listdir() by Charles-François Natali · 13 years ago
  21. 25ec056 Issue #13530: Document os.lseek() result by Victor Stinner · 13 years ago
  22. 1b57967 Issue #13560: Locale codec functions use the classic "errors" parameter, by Victor Stinner · 13 years ago
  23. 1f33f2b Issue #13560: os.strerror() now uses the current locale encoding instead of UTF-8 by Victor Stinner · 13 years ago
  24. 984890f Close #13415: Test in configure if unsetenv() has a return value or not. by Victor Stinner · 13 years ago
  25. e8eb0e8 merge 3.2 by Benjamin Peterson · 13 years ago
  26. 4bb867d plug refleak by Benjamin Peterson · 13 years ago
  27. 6517095 (Merge 3.2) Issue #13415: os.unsetenv() doesn't ignore errors anymore. by Victor Stinner · 13 years ago
  28. 60b385e Issue #13415: os.unsetenv() doesn't ignore errors anymore. by Victor Stinner · 13 years ago
  29. f8facac Fix compiler warnings by Victor Stinner · 13 years ago
  30. 9d3b93b Use the new Unicode API by Victor Stinner · 13 years ago
  31. f7c5ae2 Issue #13374: Deprecate os.getcwdb() on Windows by Victor Stinner · 13 years ago
  32. 1ab6c2d Issue #13374: The Windows bytes API has been deprecated in the os module. Use by Victor Stinner · 13 years ago
  33. 6139c1b Issue #12442: nt._getdiskusage() is now using the Windows Unicode API by Victor Stinner · 13 years ago
  34. d03a491 Commit 59dca1e2363d for issue #13327 introduced a compilation warning by Jesus Cea · 13 years ago
  35. 569b494 Fix #13327. utimensat now has the atime and mtime arguments set as optional, by Brian Curtin · 13 years ago
  36. 7ef53ef Forgot to apply the futimesat change. by Brian Curtin · 13 years ago
  37. c1b65d1 Fix 13327. Remove explicit None arguments from futimes, futimens, futimesat, by Brian Curtin · 13 years ago
  38. b0d5b5d Adjust None handling to be a bit more clean. Thanks to Benjamin by Brian Curtin · 13 years ago
  39. 52fbea1 Fix #13327. Remove the need for an explicit None as the second argument to by Brian Curtin · 13 years ago
  40. ab1078b (Merge 3.2) Issue #13339. by Ross Lagerwall · 13 years ago
  41. dcfde5a Issue #13339: Fix compile error in posixmodule.c due to missing semicolon. by Ross Lagerwall · 13 years ago
  42. 8b905bd Issue #13226: Add RTLD_xxx constants to the os module. These constants can by by Victor Stinner · 13 years ago
  43. bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
  44. beac78b Use PyUnicode_AsUnicodeAndSize() instead of PyUnicode_GET_SIZE() by Victor Stinner · 13 years ago
  45. 1ee1b6f Use identifier API for PyObject_GetAttrString. by Martin v. Löwis · 13 years ago
  46. 034f6cf Add PyUnicode_Copy() function, include it to the public API by Victor Stinner · 13 years ago
  47. eb5657a posix module catches PyUnicode_AsUnicode() failure by Victor Stinner · 13 years ago
  48. 6394188 Use the new Py_ARRAY_LENGTH macro by Victor Stinner · 13 years ago
  49. 6fa6777 os.statvfs() encodes the filename to the filesystem encoding by Victor Stinner · 13 years ago
  50. b1e5d59 Issue #12517: Silence warning on windows buildbots (from 7fd80c61ddaa). by Ross Lagerwall · 13 years ago
  51. 9428d53 only compile xattrs on glibc (closes #12720) by Benjamin Peterson · 13 years ago
  52. b77fe17 Use xattr functions from sys/xattr.h instead of attr/xattr.h (closes #12720) by Benjamin Peterson · 13 years ago
  53. 54b0149 Typo by Jesus Cea · 13 years ago
  54. 9c82227 Yet another fix for #12763: test_posix failure on OpenIndiana by Jesus Cea · 13 years ago
  55. f2cb4e8 Close issue 12952: Solaris/Illumos (OpenIndiana) Scheduling policies by Jesus Cea · 13 years ago
  56. 9e3e70b Issue #12904: os.utime, os.futimes, os.lutimes, and os.futimesat now write by Larry Hastings · 13 years ago
  57. ea0d5fc Issue #12871: sched_get_priority_(min|max) might not be defined even though by Charles-François Natali · 13 years ago
  58. 799bd80 expose linux extended file system attributes (closes #12720) by Benjamin Peterson · 13 years ago
  59. dfc80e3 Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED. by Brian Curtin · 13 years ago
  60. a17a5d6 typo by Benjamin Peterson · 13 years ago
  61. 087a2a9 merge 3.2 by Benjamin Peterson · 13 years ago
  62. fc9bbd1 dosmodule is, thankfully, no more by Benjamin Peterson · 13 years ago
  63. 7ac9214 fix arg strings by Benjamin Peterson · 13 years ago
  64. 4e36d5a need NULL sentinel by Benjamin Peterson · 13 years ago
  65. bad9c2f avoid warning when SchedParamType is not used by Benjamin Peterson · 13 years ago
  66. e3298dd only add sched_param if it is initialized by Benjamin Peterson · 13 years ago
  67. 8f7bdd3 I have been spoiled by chained comparisons in python by Benjamin Peterson · 13 years ago
  68. 9b374bf comparing on number of cpus makes more sense by Benjamin Peterson · 13 years ago
  69. 0163c9a fix sched defines by Benjamin Peterson · 13 years ago
  70. c5fce4d check individually for some for sched_ functions by Benjamin Peterson · 13 years ago
  71. e870fe6 make_new_cpu_set takes the number of cpus by Benjamin Peterson · 13 years ago
  72. 2740af8 sched.h can exist without sched affinity support by Benjamin Peterson · 13 years ago
  73. 94b580d expose sched.h functions (closes #12655) by Benjamin Peterson · 13 years ago
  74. 6613c18 Issue #13415: Test in configure if unsetenv() has a return value or not. by Charles-François Natali · 13 years ago
  75. 06403cf decref correct object by Benjamin Peterson · 13 years ago
  76. 210e7ca Issue #12442: add shutil.disk_usage() by Giampaolo Rodola' · 13 years ago
  77. 6ee7a57 (Merge 3.2) posixmodule.c: fix function name in argument parsing by Victor Stinner · 13 years ago
  78. 26de69d posixmodule.c: fix function name in argument parsing by Victor Stinner · 13 years ago
  79. 4ff1a41 Merge 3.2 - update to the fix for #12084 by Brian Curtin · 13 years ago
  80. c8be840 Correct completely broken os.stat behavior on Windows XP. by Brian Curtin · 13 years ago
  81. a87d586 branch merge? by Brian Curtin · 13 years ago
  82. c9d6a50 branch merge by Brian Curtin · 13 years ago
  83. 3e86c99 Merge from 3.2 for Issue #12084. by Brian Curtin · 13 years ago
  84. d25aef5 Fix #12084. os.stat on Windows wasn't working properly with relative symlinks. by Brian Curtin · 13 years ago
  85. b0ae53d Issue #9344: Add os.getgrouplist(). by Ross Lagerwall · 13 years ago
  86. d9463b2 Merge 3.2 by Brian Curtin · 13 years ago
  87. 95d028f Correction to 88e318166eaf - Issue #11583 by Brian Curtin · 13 years ago
  88. 9a82eaa Fix #11583. Changed os.path.isdir to use GetFileAttributes instead of os.stat. by Brian Curtin · 13 years ago
  89. 9c669cc Fix #11583. Changed os.path.isdir to use GetFileAttributes instead of os.stat. by Brian Curtin · 13 years ago
  90. 368f34b Issue #12196: Make os.pipe2() flags argument mandatory. by Charles-François Natali · 13 years ago
  91. daafdd5 Issue #12196: Add pipe2() to the os module. by Charles-François Natali · 13 years ago
  92. 7870bdf Issue #6501: os.device_encoding() returns None on Windows if the application by Victor Stinner · 13 years ago
  93. 1e045b1 Issue #12105: Add O_CLOEXEC to the os module. by Charles-François Natali · 13 years ago
  94. b90db4c Issue #11918: OS/2 and VMS are no more supported because of the lack of by Victor Stinner · 14 years ago
  95. 877509a Issue #11382: Trivial system calls, such as dup() or pipe(), needn't by Antoine Pitrou · 14 years ago
  96. ff1a735 os.sendfile(): on Linux if offset parameter is passed as NULL we were erroneously returning a (bytes_sent, None) tuple instead of bytes_sent by Giampaolo Rodola' · 14 years ago
  97. 4969f70 #11515: Merge with 3.1. by Ezio Melotti · 14 years ago
  98. 9ad63e0 Fix refleak introduced by #10812. by Ross Lagerwall · 14 years ago
  99. 4d076da Issue #11592: Fix compilation warnings in os module. by Ross Lagerwall · 14 years ago
  100. 8e74967 Issue #10812: Revert os.lseek change. by Ross Lagerwall · 14 years ago