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