summaryrefslogtreecommitdiffstats
path: root/Modules/posixmodule.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #18667: Add missing "HAVE_FCHOWNAT" symbol to posix._have_functions.Larry Hastings2013-08-121-0/+4
* Issue #17557: Fix os.getgroups() to work with the modified behavior ofNed Deily2013-08-021-0/+30
* Issue #17899: Fix rare file descriptor leak in os.listdir().Larry Hastings2013-08-021-0/+11
* Initialize utime with 0. It fixes a couple of compiler warnung:Christian Heimes2013-07-311-0/+1
* Fix posix_chflags(): return_value was uninitialized when follow_symlinks=FalseVictor Stinner2013-07-181-1/+1
* Close #18109: os.uname() now decodes fields from the locale encoding, andVictor Stinner2013-06-031-1/+1
* Issue #13772: Restored directory detection of targets in `os.symlink` on Wind...Jason R. Coombs2013-05-281-2/+127
* indicate that read/write work with bytes (closes #18009)Benjamin Peterson2013-05-241-3/+3
* prevent double free in cleanup code (#17968)Benjamin Peterson2013-05-141-0/+1
* Issue #17968: Fix memory leak in os.listxattr().Antoine Pitrou2013-05-131-1/+3
* - Issue #17782: Fix undefined behaviour on platforms where ``struct timespec`...Antoine Pitrou2013-04-171-2/+8
* Reject float as uid or gid.Serhiy Storchaka2013-02-101-2/+14
* Issue #4591: Uid and gid values larger than 2**31 are supported now.Serhiy Storchaka2013-02-101-112/+199
* Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in...Antoine Pitrou2013-02-091-1/+1
|\
| * Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in...Antoine Pitrou2013-02-091-1/+1
* | Issue #1602133: 'environ' is not really available with shared libraries on OS...Ronald Oussoren2013-01-251-3/+4
|\ \ | |/
| * Issue #1602133: 'environ' is not really available with shared libraries on OSXRonald Oussoren2013-01-251-3/+4
* | Issue #15989: Fix several occurrences of integer overflowSerhiy Storchaka2013-01-191-1/+1
|\ \ | |/
| * Issue #9644: Fix the encoding used by os.statvfs(): use the filesystem encodingVictor Stinner2013-01-011-3/+7
* | Issue #15972: Fix error messages when os functions expecting a file name orSerhiy Storchaka2013-01-071-31/+35
* | Issue #16714: use 'raise' exceptions, don't 'throw'.Andrew Svetlov2012-12-181-1/+1
|\ \ | |/
| * Issue #16714: use 'raise' exceptions, don't 'throw'.Andrew Svetlov2012-12-181-1/+1
* | Replace tabs with spaces in posixmodule.cPetri Lehtinen2012-10-231-6/+6
* | Use C-style comments for C89 / ANSI C compatibilityChristian Heimes2012-09-231-1/+1
* | #15965: Explicitly cast AT_FDCWD as (int).Trent Nelson2012-09-191-1/+8
* | Issue #15926: Fix crash after multiple reinitializations of the interpreter.Antoine Pitrou2012-09-121-1/+1
* | Issue #12655: Instead of requiring a custom type, os.sched_getaffinity andAntoine Pitrou2012-08-041-321/+130
* | Closes #15514: Correct __sizeof__ support for cpu_setJesus Cea2012-08-031-0/+15
* | Issue #15413: os.times() had disappeared under Windows.Antoine Pitrou2012-07-241-25/+25
* | Issue #15261: Stop os.stat(fd) crashing on Windows when fd not open.Richard Oudkerk2012-07-061-3/+4
* | Remove dead codeVictor Stinner2012-06-271-36/+0
* | Use ValueError, not RuntimeError for a utime flag combination illegal on some...Georg Brandl2012-06-261-1/+1
* | Issue #15176: Clarified behavior, documentation, and implementationLarry Hastings2012-06-251-13/+22
* | Whitespace cleanup.Georg Brandl2012-06-241-6/+6
* | Issue #15118: Change return value of os.uname() and os.times() fromLarry Hastings2012-06-241-24/+138
* | Closes #15161: add support for giving path as a fd for truncate() and pathcon...Georg Brandl2012-06-241-20/+62
* | Issue #15154: Add "dir_fd" parameter to os.rmdir, remove "rmdir"Larry Hastings2012-06-231-34/+67
* | Try to fix shutil.which() tests on Windows by fixing a typo introduced in 27f...Georg Brandl2012-06-231-1/+1
* | Issue #14626: Fix buildbot issue on OpenIndiana 3.x machines. (Hopefully.)Larry Hastings2012-06-231-2/+5
* | Issue #14626: Fix buildbot issue on x86 Tiger 3.x.Larry Hastings2012-06-231-1/+1
* | Issue #14626: Large refactoring of functions / parameters in the os module.Larry Hastings2012-06-221-2318/+2528
* | Closes #10142: Support for SEEK_HOLE/SEEK_DATAJesus Cea2012-06-221-0/+7
* | Issue #14711: os.stat_float_times() has been deprecated.Victor Stinner2012-06-041-2/+6
* | capitialize utime statusesBenjamin Peterson2012-05-251-20/+20
* | Backed out changeset 709850f1ec67Benjamin Peterson2012-05-061-333/+31
* | Update Misc/NEWS for issues #14127 and #14705. (And, technically, #10148.)Larry Hastings2012-05-061-31/+333
* | Fix typo in exception message.Stefan Krah2012-05-051-1/+1
* | initialization not neededBenjamin Peterson2012-05-041-1/+1
* | Fix for fatal errors in os.*utime*()Richard Oudkerk2012-05-041-1/+1
* | Issue #14127: Fix two bugs with the Windows implementation.Larry Hastings2012-05-041-19/+42