1. 8714cfd Get rid of unused-but-set-variable warning. len and len2 should be equal and len2 is technically more correct, too. by Christian Heimes · 9 years ago
  2. 7e9d1d1 Issue #23908: os functions now reject paths with embedded null character by Serhiy Storchaka · 9 years ago
  3. 2b0d200 Issue #23908: os functions now reject paths with embedded null character by Serhiy Storchaka · 9 years ago
  4. 89964c4 Issue #23944: Argument Clinic now wraps long impl prototypes at column 78. by Larry Hastings · 9 years ago
  5. 5646de4 make DirEntryType and ScandirIteratorType static (closes #23918) by Benjamin Peterson · 9 years ago
  6. a1c7e72 Issue #23668: Suppresses invalid parameter handler around chsize calls. by Steve Dower · 9 years ago
  7. 8fc8980 Issue #23524: Replace _PyVerify_fd function with calls to _set_thread_local_invalid_parameter_handler. by Steve Dower · 9 years ago
  8. fe0a41a Issue #23668: Adds support for os.truncate and os.ftruncate on Windows by Steve Dower · 9 years ago
  9. a4c6bad Issue #23501: #include "clinic/posixmodule.c.h" was in the section skipped on Windows. by Serhiy Storchaka · 9 years ago
  10. 1009bf1 Issue #23501: Argumen Clinic now generates code into separate files by default. by Serhiy Storchaka · 9 years ago
  11. 0759f84 Issue #23500: Argument Clinic is now smarter about generating the "#ifndef" by Larry Hastings · 9 years ago
  12. e134a7f Issue #23752: _Py_fstat() is now responsible to raise the Python exception by Victor Stinner · 9 years ago
  13. dca028b Issue #22117: Fix os.utime(), it now rounds the timestamp towards minus by Victor Stinner · 9 years ago
  14. 2ea51c9 Closes #9445: Removes detection of GetFinalPathNameByHandle by Steve Dower · 9 years ago
  15. 66aab0c Issue #23708: Add _Py_read() and _Py_write() functions to factorize code handle by Victor Stinner · 9 years ago
  16. a555cfc Issue #23694: Enhance _Py_open(), it now raises exceptions by Victor Stinner · 9 years ago
  17. 35a97c0 Issue #22524: Fix os.scandir() for platforms which don't have a d_type field in by Victor Stinner · 9 years ago
  18. 6036e44 Issue #22524: New os.scandir() function, part of the PEP 471: "os.scandir() by Victor Stinner · 9 years ago
  19. d81431f Issue #23524: Replace _PyVerify_fd function with calling _set_thread_local_invalid_parameter_handler on every thread. by Steve Dower · 9 years ago
  20. 06a13f8 Issue #23152: Move declarations back to posixmodule.c. by Serhiy Storchaka · 9 years ago
  21. 12ebbc7 Issue #23152: Move declaration into a header and exclude from stable API. by Serhiy Storchaka · 9 years ago
  22. bf1f376 Issue #23152: Renames time_t_to_FILE_TIME to _Py_time_t_to_FILE_TIME, removes unused struct win32_stat and return value by Steve Dower · 9 years ago
  23. a2af1a5 Issue #23152: Renames attribute_data_to_stat to _Py_attribute_data_to_stat by Steve Dower · 9 years ago
  24. f2f373f Issue #23152: Implement _Py_fstat() to support files larger than 2 GB on Windows. by Steve Dower · 9 years ago
  25. 4d0d982 Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integer by Serhiy Storchaka · 9 years ago
  26. 1a1ff29 Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integer by Serhiy Storchaka · 9 years ago
  27. 6e6c59b Issue #23285: PEP 475 -- Retry system calls failing with EINTR. by Charles-François Natali · 9 years ago
  28. bd4976b Always #define _PyLong_FromDev as we always need it to compile rather than by Gregory P. Smith · 9 years ago
  29. 702dada Always #define _PyLong_FromDev as we always need it to compile rather than by Gregory P. Smith · 9 years ago
  30. 7d0e0c9 Closes #23253: Delay-load ShellExecute by Steve Dower · 9 years ago
  31. acdb7c1 Issue #23098: 64-bit dev_t is now supported in the os module. by Serhiy Storchaka · 9 years ago
  32. b2653b3 Issue #23098: 64-bit dev_t is now supported in the os module. by Serhiy Storchaka · 9 years ago
  33. 56a6d85 Removed duplicated words in in comments and docs. by Serhiy Storchaka · 10 years ago
  34. 65e4cb1 Issue #22919: Windows build updated to support VC 14.0 (Visual Studio 2015), which will be used for the official 3.5 release. by Steve Dower · 10 years ago
  35. cbc18f3 Issue #9647: os.confstr() ensures that the second call to confstr() returns the by Victor Stinner · 10 years ago
  36. 83000a4 Removed duplicated words in in comments and docs. by Serhiy Storchaka · 10 years ago
  37. f427a14 Issue #22592: Drop support of the Borland C compiler to build Python by Victor Stinner · 10 years ago
  38. bfd7881 #22568: merge with 3.4 by Georg Brandl · 10 years ago
  39. e1a7d9d Closes #22568: fix UTIME_TO_* macros in posixmodule for rare cases. by Georg Brandl · 10 years ago
  40. d42c428 Closes #22579: Fix posixmodule.c to support any C compiler on Windows by Victor Stinner · 10 years ago
  41. 67e2e6d (Merge 3.4) Issue #22568: Fix compilation of posixmodule.c with Open Watcom: by Victor Stinner · 10 years ago
  42. 484df00 Issue #22568: Fix compilation of posixmodule.c with Open Watcom: rename "utime" by Victor Stinner · 10 years ago
  43. ec39e26 (Merge 3.4) Issue #22396: On 32-bit AIX platform, don't expose by Victor Stinner · 10 years ago
  44. d6b1769 Issue #22396: On 32-bit AIX platform, don't expose os.posix_fadvise() nor by Victor Stinner · 10 years ago
  45. d8a1447 Issue #22215: Now ValueError is raised instead of TypeError when str or bytes by Serhiy Storchaka · 10 years ago
  46. 706768c Issue #22156: Fix some "comparison between signed and unsigned integers" by Victor Stinner · 10 years ago
  47. a73cb8a Issue #22120: For functions using an unsigned integer return converter, by Larry Hastings · 10 years ago
  48. b1dc112 More fixes for the unhappy AMD FreeBSD 9 buildbot. Fingers crossed. by Larry Hastings · 10 years ago
  49. 548095c Fix for AMD FreeBSD 9 buildbot (hopefully), broken by my last checkin. by Larry Hastings · 10 years ago
  50. 2f93635 Issue #20170: Convert posixmodule to use Argument Clinic. by Larry Hastings · 10 years ago
  51. 1db9e7b Issue #22054: Add os.get_blocking() and os.set_blocking() functions to get and by Victor Stinner · 10 years ago
  52. b28ed92 Issue #21932: os.read() now uses a :c:func:`Py_ssize_t` type instead of by Victor Stinner · 10 years ago
  53. 63f277b Issue #21741: Add st_file_attributes to os.stat_result on Windows. by Zachary Ware · 10 years ago
  54. 0321cf2 Issue18314 Allow unlink to remove junctions. Includes support for creating junctions. Patch by Kim Gräsman by Tim Golden · 10 years ago
  55. fbf963c Backed out changeset: 17df50df62c7 by Tim Golden · 10 years ago
  56. 4675d79 Issue #18314 os.unlink will now remove junction points on Windows. Patch by Kim Gräsman. by Tim Golden · 10 years ago
  57. 4a173bc Fixes for KFreeBSD and the Hurd: by doko@ubuntu.com · 10 years ago
  58. 3c1b379 Issue #20320: select.select() and select.kqueue.control() now round the timeout by Victor Stinner · 10 years ago
  59. e18e787 merge 3.3 (#20594) by Benjamin Peterson · 10 years ago
  60. 932bba3 avoid name clash with posix_close (closes #20594) by Benjamin Peterson · 10 years ago
  61. b082731 Issue #20517: Functions in the os module that accept two filenames by Larry Hastings · 10 years ago
  62. dfe98a1 Issue #20437: Fixed 22 potential bugs when deleting objects references. by Serhiy Storchaka · 10 years ago
  63. 505ff75 Issue #20437: Fixed 21 potential bugs when deleting objects references. by Serhiy Storchaka · 10 years ago
  64. 2623c8c Issue #20530: Argument Clinic's signature format has been revised again. by Larry Hastings · 10 years ago
  65. 7726ac9 #Issue 20456: Several improvements and bugfixes for Argument Clinic, by Larry Hastings · 10 years ago
  66. 581ee36 Issue #20326: Argument Clinic now uses a simple, unique signature to by Larry Hastings · 10 years ago
  67. 5c66189 Issue #20189: Four additional builtin types (PyTypeObject, by Larry Hastings · 10 years ago
  68. dc3cce0 merge 3.3 (#17811) by Benjamin Peterson · 10 years ago
  69. e83ed43 improve description of buffers argument for readv/writev (closes #17811) by Benjamin Peterson · 10 years ago
  70. 2a72791 Issue #20226: Major improvements to Argument Clinic. by Larry Hastings · 10 years ago
  71. 4637538 fix build when SCHED_SPORADIC is defined (closes #20217) by Benjamin Peterson · 10 years ago
  72. 149e540 (Merge 3.3) Issue #20113: os.readv() and os.writev() now raise an OSError by Victor Stinner · 10 years ago
  73. 57ddf78 Issue #20113: os.readv() and os.writev() now raise an OSError exception on by Victor Stinner · 10 years ago
  74. 61272b7 Issue #19273: The marker comments Argument Clinic uses have been changed by Larry Hastings · 10 years ago
  75. af01f66 Issue #16136: Remove VMS support and VMS-related code by Christian Heimes · 10 years ago
  76. f326665 Fix os.listdir(): _Py_dup() already raises an exception on error, no need to by Victor Stinner · 10 years ago
  77. 3c2a178 Merge: #19970: Fix some comment typos. by R David Murray · 11 years ago
  78. fc06999 #19970: Fix some comment typos. by R David Murray · 11 years ago
  79. ca616a2 - Issue #19736: Add module-level statvfs constants defined for GNU/glibc by doko@ubuntu.com · 11 years ago
  80. 000de53 Issue #19752: Fix "HAVE_DEV_PTMX" implementation of os.openpty() by Victor Stinner · 11 years ago
  81. 7587507 Issue #19636: Fix usage of MAX_PATH in posixmodule.c by Victor Stinner · 11 years ago
  82. 6edddfa Issue #19636: Fix posix__getvolumepathname(), raise an OverflowError if by Victor Stinner · 11 years ago
  83. 44e2eaa Issue #19674: inspect.signature() now produces a correct signature by Larry Hastings · 11 years ago
  84. ebdcb50 Issue #19730: Argument Clinic now supports all the existing PyArg by Larry Hastings · 11 years ago
  85. 91a7af3 Issue #19727: os.utime(..., None) is now potentially more precise under Windows. by Antoine Pitrou · 11 years ago
  86. ed4a1c5 Argument Clinic: rename "self" to "module" for module-level functions. by Larry Hastings · 11 years ago
  87. 85ba92a GetVolumePathNameW: downcast bufsize to DWORD by Christian Heimes · 11 years ago
  88. b031427 Issue #19437: Fix parse_envlist() of the posix/nt module, don't call by Victor Stinner · 11 years ago
  89. 59799a8 Don't use deprecated function PyUnicode_GET_SIZE() by Victor Stinner · 11 years ago
  90. 50abf22 Issue #19437: Fix fsconvert_strdup(), raise a MemoryError on PyMem_Malloc() by Victor Stinner · 11 years ago
  91. f0a7bac Issue #19437: Fix os.statvfs(), handle errors by Victor Stinner · 11 years ago
  92. 781bbeb Issue13234 Allow listdir to handle extended paths on Windows (Patch by Santoso Wijaya) by Tim Golden · 11 years ago
  93. 2300508 Issue4905: use INVALID_FILE_ATTRIBUTES where appropriate. (Patch by Ulrich Eckhardt) by Tim Golden · 11 years ago
  94. ebe83f9 fix compile issue on windows. path is now a struct ptr by Christian Heimes · 11 years ago
  95. 3182680 Issue #16612: Add "Argument Clinic", a compile-time preprocessor by Larry Hastings · 11 years ago
  96. 2582762 Issue #19209: Remove import of copyreg from the os module to speed up by Christian Heimes · 11 years ago
  97. b9981ba fix a compilation warning in posix_openpty() on "PPC64 AIX 3.x" buildbot by Victor Stinner · 11 years ago
  98. daf4555 Issue #18571: Implementation of the PEP 446: file descriptors and file handles by Victor Stinner · 11 years ago
  99. 3a7dffa remove support for compiling on systems without getcwd() by Benjamin Peterson · 11 years ago
  100. 177b3f9 Issue #18673: Add O_TMPFILE to os module. O_TMPFILE requires Linux kernel by Christian Heimes · 11 years ago