summaryrefslogtreecommitdiffstats
path: root/Modules/posixmodule.c
Commit message (Expand)AuthorAgeFilesLines
* #7647: add ST_RDONLY, ST_NOSUID constants to os module.Andrew M. Kuchling2010-08-181-0/+8
* r82659 reintroduced some tab characters. Untabify again.Amaury Forgeot d'Arc2010-08-161-7/+7
* Fix other warnings under 64-bit Windows.Antoine Pitrou2010-08-151-4/+5
* Issue #9605: posix.getlogin() decodes the username with file filesystemVictor Stinner2010-08-151-4/+3
* Issue #9604: posix.initgroups() encodes the username using the fileystemVictor Stinner2010-08-151-2/+8
* Issue #9603: posix.ttyname() and posix.ctermid() decode the terminal nameVictor Stinner2010-08-151-2/+2
* use pep 383 decoding for mknod and mkfifo #9570Benjamin Peterson2010-08-111-2/+10
* Issue #6915: Under Windows, os.listdir() didn't release the GlobalAntoine Pitrou2010-08-091-1/+5
* Issue 9445: Fix undefined symbols on VS8.0 build.Raymond Hettinger2010-08-011-0/+9
* This fixes issue7900 by adding code that dealsRonald Oussoren2010-07-231-7/+42
* Issue #6095: Make directory argument to os.listdir optional.Martin v. Löwis2010-07-231-9/+21
* Re-flow several long lines from #1578269.Brian Curtin2010-07-091-11/+23
* Implement #1578269. Patch by Jason R. Coombs.Brian Curtin2010-07-081-20/+526
* Merged revisions 82047 via svnmerge fromSenthil Kumaran2010-06-171-1/+1
* Remove unused variable, and fix a compilation warning on Windows.Amaury Forgeot d'Arc2010-05-151-1/+1
* posix_listdir(), posix_readlink(): avoid temporary PyBytes objectVictor Stinner2010-05-141-38/+10
* posix_error_with_allocated_filename() decodes the filename withVictor Stinner2010-05-081-2/+6
* Replace PyUnicode_Decode(buf, strlen(buf), Py_FileSystemDefaultEncoding,Victor Stinner2010-05-071-1/+1
* Issue #8603: Create a bytes version of os.environ for UnixVictor Stinner2010-05-061-24/+55
* Recorded merge of revisions 80844-80845 via svnmerge fromVictor Stinner2010-05-061-3871/+3872
* Issue #8391: os.execvpe() and os.getenv() supports unicode with surrogates andVictor Stinner2010-04-231-167/+91
* Issue #8485: PyUnicode_FSConverter() doesn't accept bytearray object anymore,Victor Stinner2010-04-221-128/+95
* Keep confstr entries in alphabetical order.Mark Dickinson2010-04-161-6/+6
* Add CS_GNU_LIBC_VERSION and CS_GNU_LIBPTHREAD_VERSION constants for constr(),Victor Stinner2010-04-161-0/+6
* Issue #8412: os.system() now accepts bytes, bytearray and str withVictor Stinner2010-04-161-6/+11
* Port #1220212 (os.kill for Win32) to py3k.Brian Curtin2010-04-121-0/+48
* Change PARSE_PID to _Py_PARSE_PID (cleanup for r78946).Gregory P. Smith2010-03-141-9/+9
* * Replaces the internals of the subprocess module from fork through exec onGregory P. Smith2010-03-141-17/+0
* Merged revisions 78531 via svnmerge fromGregory P. Smith2010-03-011-4/+7
* Merged revisions 78527,78550 via svnmerge fromGregory P. Smith2010-03-011-10/+19
* Merged revisions 78546 via svnmerge fromGregory P. Smith2010-03-011-6/+20
* Forward port a number of OSX bugfixes from the trunk to 3.2Ronald Oussoren2010-02-071-0/+4
* Issue #7561: Fix crashes when using bytearray objects with the posixAntoine Pitrou2010-01-171-1/+1
* Merged revisions 76847,76851,76869,76882,76891-76892,76924,77007,77070,77092,...Benjamin Peterson2009-12-311-4/+5
* Merged revisions 76636 via svnmerge fromAntoine Pitrou2009-12-021-0/+27
* Merged revisions 76550 via svnmerge fromMartin v. Löwis2009-11-271-0/+89
* Merged revisions 74841 via svnmerge fromBenjamin Peterson2009-10-041-3/+31
* Merged revisions 73675 via svnmerge fromHirokazu Yamamoto2009-06-291-58/+2
* Merged revisions 73603 via svnmerge fromHirokazu Yamamoto2009-06-281-300/+241
* Issue #6012: Add cleanup support to O& argument parsing.Martin v. Löwis2009-05-291-2/+0
* Make some private functions static (thanks `make smelly`)Antoine Pitrou2009-05-241-0/+1
* Try to fix building under Windows (where SIZEOF_PID_T apparently doesn't exist)Antoine Pitrou2009-05-241-3/+1
* Merged revisions 72855 via svnmerge fromAntoine Pitrou2009-05-231-11/+17
* Merged revisions 72852 via svnmerge fromAntoine Pitrou2009-05-231-17/+33
* Merged revisions 72698-72699 via svnmerge fromHirokazu Yamamoto2009-05-171-24/+16
* Issue #5990: fix memory leak introduced by PEP 383 commitsAntoine Pitrou2009-05-101-2/+5
* Rename utf8b error handler to surrogateescape.Martin v. Löwis2009-05-101-5/+5
* Issue #5943: Fix lchflags crash.Martin v. Löwis2009-05-051-1/+1
* Added missing semicolon.Eric Smith2009-05-051-1/+1
* Issue #5915: Implement PEP 383, Non-decodable Bytes inMartin v. Löwis2009-05-051-205/+315