summaryrefslogtreecommitdiff
path: root/Modules/posixmodule.c
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 88111 via svnmerge fromAntoine Pitrou2011-01-191-0/+2
* Merged revisions 87802 via svnmerge fromAntoine Pitrou2011-01-061-0/+1
* Merged revisions 87666 via svnmerge fromAmaury Forgeot d'Arc2011-01-031-12/+21
* Fix indentationAntoine Pitrou2011-01-021-9/+9
* Issue #4662: os.tempnam(), os.tmpfile() and os.tmpnam() now raise a py3kAntoine Pitrou2011-01-021-0/+12
* Merged revisions 86808 via svnmerge fromStefan Krah2010-11-261-40/+40
* Merged revisions 86804 via svnmerge fromStefan Krah2010-11-261-6/+10
* Merged revisions 82798,82805,83659,83977,84015,84018,84141,84264,84326-84327,...Georg Brandl2010-10-061-1/+1
* Merged revisions 84489 via svnmerge fromAntoine Pitrou2010-09-041-1/+10
* Merged revisions 83921 via svnmerge fromAntoine Pitrou2010-08-101-0/+4
* Merged revisions 83088 via svnmerge fromRonald Oussoren2010-07-241-7/+42
* Remove PYOS_OS2 special cases from the Solaris/OpenBSD section.Stefan Krah2010-07-131-5/+1
* Issue #9185: On Solaris and OpenBSD, posix_getcwd() could loop indefinitelyStefan Krah2010-07-131-0/+23
* Fix Issue4452 - Incorrect docstring of os.setpgrpSenthil Kumaran2010-06-171-1/+1
* Remove unused variable, and fix a compilation warning on WindowsAmaury Forgeot d'Arc2010-05-151-1/+1
* Untabify Modules/posixmodule.c (2)Victor Stinner2010-05-061-10/+10
* Untabify Modules/posixmodule.cVictor Stinner2010-05-051-5047/+5047
* Add missing return statement in an error condition.Brian Curtin2010-04-031-1/+1
* Implement #1220212. Add os.kill support for Windows.Brian Curtin2010-04-021-0/+48
* - Issue #1039, #8154: Fix os.execlp() crash with missing 2nd argument.Matthias Klose2010-03-191-0/+5
* Fixes issue #7999: os.setreuid() and os.setregid() would refuse to acceptGregory P. Smith2010-03-011-6/+20
* Fix for r78527. It left out updating forkpty.Gregory P. Smith2010-03-011-4/+7
* Issue #7242: On Solaris 9 and earlier calling os.fork() from within aGregory P. Smith2010-03-011-10/+19
* - Issue #7658: Ensure that the new pythonw executable works on OSX 10.4Ronald Oussoren2010-01-171-0/+4
* Fix possible integer overflow in lchown and fchown functions. For issue1747858.Gregory P. Smith2009-12-231-4/+5
* Issue #7333: The `posix` module gains an `initgroups()` function providingAntoine Pitrou2009-12-021-0/+27
* Issue #6508: Add posix.{getresuid,getresgid,setresuid,setresgid}.Martin v. Löwis2009-11-271-0/+89
* Fix issue #1590864, multiple threads and fork() can cause deadlocks, byThomas Wouters2009-09-161-3/+31
* Issue #4856: Py_GetFileAttributesEx[AW] are not needed because GetFileAttribu...Hirokazu Yamamoto2009-06-291-58/+2
* Issue #4856: Remove checks for win NT.Hirokazu Yamamoto2009-06-281-324/+262
* Fix build under WindowsAntoine Pitrou2009-05-241-3/+1
* Some pid_t-expecting or producing functions were forgotten in r72852.Antoine Pitrou2009-05-231-11/+17
* Issue #1983: Fix functions taking or returning a process identifier to useAntoine Pitrou2009-05-231-16/+35
* Issue #3527: Removed Py_WIN_WIDE_FILENAMES which is not used any more.Hirokazu Yamamoto2009-05-171-33/+25
* Issue #5913: os.listdir() should fail for empty path on windows.Hirokazu Yamamoto2009-05-041-6/+7
* Fixes issue5705: os.setuid() and friends did not accept the same range ofGregory P. Smith2009-04-051-17/+55
* http://bugs.python.org/issue5623Kristján Valur Jónsson2009-04-011-33/+24
* Issue #5341: Fix a variety of spelling errors.Mark Dickinson2009-02-211-2/+2
* Issue 4804. Add a function to test the validity of file descriptors on Windo...Kristján Valur Jónsson2009-02-101-1/+125
* simplify codeBenjamin Peterson2009-01-191-4/+2
* Issue 4957Kristján Valur Jónsson2009-01-191-1/+1
* Issue #1040026: Fix os.times result on systems where HZ is incorrect.Martin v. Löwis2008-12-291-9/+16
* Issue #4071: ntpath.abspath returned an empty string for long unicode path.Hirokazu Yamamoto2008-11-081-6/+20
* removed unused _PyUnicode_FromFileSystemEncodedObject.Hirokazu Yamamoto2008-10-161-6/+2
* r66862 contained memory leak.Hirokazu Yamamoto2008-10-091-1/+3
* On windows, os.chdir given unicode was not working if GetCurrentDirectoryWHirokazu Yamamoto2008-10-091-1/+4
* Issue #2222: Fixed reference leak when occured os.rename()Hirokazu Yamamoto2008-08-171-28/+26
* Issue #3139: Make buffer-interface thread-safe wrt. PyArg_ParseTuple,Martin v. Löwis2008-08-121-3/+4
* On Windows, silence a Purify warning and initialize the memory passed to Cryp...Amaury Forgeot d'Arc2008-07-211-0/+1
* #1608818: errno can get set by every call to readdir().Georg Brandl2008-07-161-8/+10