1. 6394188 Use the new Py_ARRAY_LENGTH macro by Victor Stinner · 14 years ago
  2. 6fa6777 os.statvfs() encodes the filename to the filesystem encoding by Victor Stinner · 14 years ago
  3. b1e5d59 Issue #12517: Silence warning on windows buildbots (from 7fd80c61ddaa). by Ross Lagerwall · 14 years ago
  4. 9428d53 only compile xattrs on glibc (closes #12720) by Benjamin Peterson · 14 years ago
  5. b77fe17 Use xattr functions from sys/xattr.h instead of attr/xattr.h (closes #12720) by Benjamin Peterson · 14 years ago
  6. 54b0149 Typo by Jesus Cea · 14 years ago
  7. 9c82227 Yet another fix for #12763: test_posix failure on OpenIndiana by Jesus Cea · 14 years ago
  8. f2cb4e8 Close issue 12952: Solaris/Illumos (OpenIndiana) Scheduling policies by Jesus Cea · 14 years ago
  9. 9e3e70b Issue #12904: os.utime, os.futimes, os.lutimes, and os.futimesat now write by Larry Hastings · 14 years ago
  10. ea0d5fc Issue #12871: sched_get_priority_(min|max) might not be defined even though by Charles-François Natali · 14 years ago
  11. 799bd80 expose linux extended file system attributes (closes #12720) by Benjamin Peterson · 14 years ago
  12. dfc80e3 Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED. by Brian Curtin · 14 years ago
  13. a17a5d6 typo by Benjamin Peterson · 14 years ago
  14. 087a2a9 merge 3.2 by Benjamin Peterson · 14 years ago
  15. fc9bbd1 dosmodule is, thankfully, no more by Benjamin Peterson · 14 years ago
  16. 7ac9214 fix arg strings by Benjamin Peterson · 14 years ago
  17. 4e36d5a need NULL sentinel by Benjamin Peterson · 14 years ago
  18. bad9c2f avoid warning when SchedParamType is not used by Benjamin Peterson · 14 years ago
  19. e3298dd only add sched_param if it is initialized by Benjamin Peterson · 14 years ago
  20. 8f7bdd3 I have been spoiled by chained comparisons in python by Benjamin Peterson · 14 years ago
  21. 9b374bf comparing on number of cpus makes more sense by Benjamin Peterson · 14 years ago
  22. 0163c9a fix sched defines by Benjamin Peterson · 14 years ago
  23. c5fce4d check individually for some for sched_ functions by Benjamin Peterson · 14 years ago
  24. e870fe6 make_new_cpu_set takes the number of cpus by Benjamin Peterson · 14 years ago
  25. 2740af8 sched.h can exist without sched affinity support by Benjamin Peterson · 14 years ago
  26. 94b580d expose sched.h functions (closes #12655) by Benjamin Peterson · 14 years ago
  27. 210e7ca Issue #12442: add shutil.disk_usage() by Giampaolo Rodola' · 14 years ago
  28. 6ee7a57 (Merge 3.2) posixmodule.c: fix function name in argument parsing by Victor Stinner · 14 years ago
  29. 26de69d posixmodule.c: fix function name in argument parsing by Victor Stinner · 14 years ago
  30. 4ff1a41 Merge 3.2 - update to the fix for #12084 by Brian Curtin · 14 years ago
  31. c8be840 Correct completely broken os.stat behavior on Windows XP. by Brian Curtin · 14 years ago
  32. a87d586 branch merge? by Brian Curtin · 14 years ago
  33. c9d6a50 branch merge by Brian Curtin · 14 years ago
  34. 3e86c99 Merge from 3.2 for Issue #12084. by Brian Curtin · 14 years ago
  35. d25aef5 Fix #12084. os.stat on Windows wasn't working properly with relative symlinks. by Brian Curtin · 14 years ago
  36. b0ae53d Issue #9344: Add os.getgrouplist(). by Ross Lagerwall · 14 years ago
  37. d9463b2 Merge 3.2 by Brian Curtin · 14 years ago
  38. 95d028f Correction to 88e318166eaf - Issue #11583 by Brian Curtin · 14 years ago
  39. 9a82eaa Fix #11583. Changed os.path.isdir to use GetFileAttributes instead of os.stat. by Brian Curtin · 14 years ago
  40. 9c669cc Fix #11583. Changed os.path.isdir to use GetFileAttributes instead of os.stat. by Brian Curtin · 14 years ago
  41. 368f34b Issue #12196: Make os.pipe2() flags argument mandatory. by Charles-François Natali · 14 years ago
  42. daafdd5 Issue #12196: Add pipe2() to the os module. by Charles-François Natali · 14 years ago
  43. 7870bdf Issue #6501: os.device_encoding() returns None on Windows if the application by Victor Stinner · 14 years ago
  44. 1e045b1 Issue #12105: Add O_CLOEXEC to the os module. by Charles-François Natali · 14 years ago
  45. b90db4c Issue #11918: OS/2 and VMS are no more supported because of the lack of by Victor Stinner · 14 years ago
  46. 877509a Issue #11382: Trivial system calls, such as dup() or pipe(), needn't by Antoine Pitrou · 14 years ago
  47. 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
  48. 4969f70 #11515: Merge with 3.1. by Ezio Melotti · 14 years ago
  49. 9ad63e0 Fix refleak introduced by #10812. by Ross Lagerwall · 14 years ago
  50. 4d076da Issue #11592: Fix compilation warnings in os module. by Ross Lagerwall · 14 years ago
  51. 8e74967 Issue #10812: Revert os.lseek change. by Ross Lagerwall · 14 years ago
  52. 7807c35 Issue #10812: Add some extra posix functions to the os module. by Ross Lagerwall · 14 years ago
  53. 3730892 #11515: Merge with 3.2. by Ezio Melotti · 14 years ago
  54. acdad9a Issue 11351 - apply patch by Steffen Daode Nurpmeso which should fix TestSendfile.test_headers failure on OSX. by Giampaolo Rodolà · 14 years ago
  55. d8a43b4 revert accidental formatting change by Benjamin Peterson · 14 years ago
  56. c6696d2 this isn't true anymore by Benjamin Peterson · 14 years ago
  57. dcc20b8 Check error return from _parse_off_t(), and remove cruft from the 2->3 transition. by Antoine Pitrou · 14 years ago
  58. 8250e23 Issue #10755: Add the posix.fdlistdir() function. Patch by Ross Lagerwall. by Antoine Pitrou · 14 years ago
  59. f65132d Issue #4761: Add the *at() family of functions (openat(), etc.) to the posix by Antoine Pitrou · 14 years ago
  60. 18e8bcb Issue 10784: adds os.getpriority() and os.setpriority() functions. by Giampaolo Rodolà · 14 years ago
  61. a391b11 Rename internal helper function and make it static. by Georg Brandl · 14 years ago
  62. c9c2c8b Issue 10882: add os.sendfile(). (patch provided by Ross Lagerwall) by Giampaolo Rodolà · 14 years ago
  63. 710e966 Merged revisions 88111 via svnmerge from by Antoine Pitrou · 15 years ago
  64. e47e093 Issue #10898: Allow compiling the posix module when the C library defines by Antoine Pitrou · 15 years ago
  65. 7234479 Issue #9611: remove useless and dangerous explicit conversion to size_t by Victor Stinner · 15 years ago
  66. ff17385 Merged revisions 87802 via svnmerge from by Antoine Pitrou · 15 years ago
  67. e85da7a Issue #7858: Raise an error properly when os.utime() fails under Windows by Antoine Pitrou · 15 years ago
  68. e6edec2 Issue #9015, #9611: FileIO.readinto(), FileIO.write() and os.write() clamp the by Victor Stinner · 15 years ago
  69. 32e8aab Merged revisions 87666 via svnmerge from by Amaury Forgeot d'Arc · 15 years ago
  70. a251a85 #8278: In the Windows implementation of stat() and utime(), by Amaury Forgeot d'Arc · 15 years ago
  71. 3b4499c Fix #9333. The symlink function is always available now, raising OSError by Brian Curtin · 15 years ago
  72. 7ed117a Issue #10637: Called CloseHandle twice in os.stat/os.lstat (Windows) by Hirokazu Yamamoto · 15 years ago
  73. 26253bb Should use posix_error here. by Hirokazu Yamamoto · 15 years ago
  74. 7467351 Sorry, I had introduced tab in source code. by Hirokazu Yamamoto · 15 years ago
  75. 427d314 Fixed several corner case issues on os.stat/os.lstat related to reparse by Hirokazu Yamamoto · 15 years ago
  76. 52173d4 Fix #9333. Expose os.symlink on Windows only when usable. by Brian Curtin · 15 years ago
  77. 71c23d4 Include structseq.h in Python.h, and remove now-redundant includes in individual sources. by Georg Brandl · 15 years ago
  78. fc889c4 Fix for #8879. by Brian Curtin · 15 years ago
  79. 2a7feee Windows: fix leak in posix_listdir. by Stefan Krah · 15 years ago
  80. 30b341f Fix additional leaks. by Stefan Krah · 15 years ago
  81. 6773331 Merged revisions 86808 via svnmerge from by Stefan Krah · 15 years ago
  82. 0e803b3 Further indentation cleanup. by Stefan Krah · 15 years ago
  83. 40b6123 Merged revisions 86804 via svnmerge from by Stefan Krah · 15 years ago
  84. 9943926 Issue #10383: Fix two leaks. by Stefan Krah · 15 years ago
  85. 1b9df39 Fix #8879. Add os.link support to Windows. by Brian Curtin · 15 years ago
  86. fc1be6d ifdef a Windows specific section. by Brian Curtin · 15 years ago
  87. f5e76d0 Fix #10027. st_nlink not set on Windows calls to os.stat/lstat. by Brian Curtin · 15 years ago
  88. 7e9065c Issue #10143: Update "os.pathconf" values by Jesus Cea · 15 years ago
  89. 94622b0 Fix a typo. full->final by Brian Curtin · 15 years ago
  90. e8e4b3b #9808. Implement os.getlogin for Windows, completed by Jon Anglin. by Brian Curtin · 15 years ago
  91. 3842529 Issue #9908: Fix os.stat() on bytes paths under Windows 7. by Antoine Pitrou · 15 years ago
  92. 6c9c090 Remove unused code in posixmodule.c by Amaury Forgeot d'Arc · 15 years ago
  93. 3d330ad Remove C++-style comments by Antoine Pitrou · 15 years ago
  94. cb04352 Issue #9579, #9580: Fix os.confstr() for value longer than 255 bytes and encode by Victor Stinner · 15 years ago
  95. 66d00ad Untabify file. by Amaury Forgeot d'Arc · 15 years ago
  96. 4b6fdf3 #6394: Add os.getppid() support for Windows. by Amaury Forgeot d'Arc · 15 years ago
  97. 6285774 Implement #7566 - os.path.sameopenfile for Windows. by Brian Curtin · 15 years ago
  98. a9b51d2 #9747: fix copy-paste error in getresgid() doc. by Georg Brandl · 15 years ago
  99. 037077f Merged revisions 84489 via svnmerge from by Antoine Pitrou · 15 years ago
  100. d3ccde8 Issue #7736: Release the GIL around calls to opendir() and closedir() by Antoine Pitrou · 15 years ago