summaryrefslogtreecommitdiffstats
path: root/Modules/posixmodule.c
Commit message (Expand)AuthorAgeFilesLines
* Ensure path is initialized to prevent freeing random memoryNeal Norwitz2004-06-091-4/+2
* Plug a few memory leaks in utime(). path is allocated from withinNeal Norwitz2004-06-061-4/+12
* Patch #954115: Fix os.stat handling of UNC roots.Martin v. Löwis2004-06-021-18/+94
* Fix [ 947405 ] os.utime() raises bad exception for unicode filenamesMark Hammond2004-05-041-1/+6
* OS/2 has support for spawnvp() and spawnvpe() in the C libraries suppliedAndrew MacIntyre2004-04-041-0/+229
* OS/2 VACPP build updates/fixesAndrew MacIntyre2004-03-291-1/+1
* Fix docstrings to mention the correct functionNeal Norwitz2004-02-161-2/+2
* remove support for missing ANSI C header files (limits.h, stddef.h, etc).Skip Montanaro2004-02-101-2/+0
* Remove support for SunOS 4.Skip Montanaro2004-01-171-19/+0
* Make parameter names in docstring more mnemonicAndrew M. Kuchling2004-01-161-1/+1
* FIx unicodefilename support of posix.uname(). This fixes test_unicode_fileHye-Shik Chang2004-01-041-1/+2
* Fix [ 846133 ] os.chmod/os.utime/shutil do not work with unicode filenamesMark Hammond2003-12-031-3/+50
* Patch #839038: Add getsid(2).Martin v. Löwis2003-11-101-0/+22
* Patch #788404: ignore "b" and "t" mode modifiers in posix_popen.Martin v. Löwis2003-10-311-0/+5
* Fix a bunch of typos in documentation, docstrings and comments.Walter Dörwald2003-10-201-1/+1
* Simplify and speedup uses of Py_BuildValue():Raymond Hettinger2003-10-121-4/+4
* Patch #730597: Disable POPEN for RTEMS.Martin v. Löwis2003-09-201-0/+2
* Patch #790000: Allow os.access to handle Unicode file name.Martin v. Löwis2003-09-121-0/+16
* SF patch #798534: Windows os.popen needlessly gets a reference to tuple ()Raymond Hettinger2003-09-011-3/+1
* Demonstrate and fix [ 783882 ] os.lstat crashes with Unicode filename.Mark Hammond2003-08-061-1/+1
* Clarify docstring for symlink.Brett Cannon2003-06-111-1/+1
* Patch #708495: Port more stuff to OpenVMS.Martin v. Löwis2003-05-031-82/+2
* Enable os.fsync() for Windows, mapping it to MS's _commit() there. TheTim Peters2003-04-231-16/+18
* apply Mark Hammond's PEP 311 changes to the EMX ripoff of the WindowsAndrew MacIntyre2003-04-211-51/+6
* - DosSetExtLIBPATH objects to a NULL pointer, but a pointer to a NULLAndrew MacIntyre2003-04-211-7/+1
* New PyGILState_ API - implements pep 311, from patch 684256.Mark Hammond2003-04-191-50/+6
* Rename LONG_LONG to PY_LONG_LONG. Fixes #710285.Martin v. Löwis2003-03-291-13/+13
* Get rid of warning on IRIXNeal Norwitz2003-03-211-1/+2
* Add support for os.openpty() on AIX which uses /dev/ptc instead of /dev/ptmx.Neal Norwitz2003-03-211-3/+11
* Patch #696645: Remove VMS code with uncertain authorship.Martin v. Löwis2003-03-051-209/+52
* os.listdir(): Fall back to the original byte string if conversion to unicodeJust van Rossum2003-03-041-6/+8
* plugged leak noted by nnorwitz: the 'et' format returns allocated memoryJust van Rossum2003-03-031-2/+4
* Patch #683592 revisited, after discussions with MvL:Just van Rossum2003-03-031-10/+8
* Patch #683592: unicode support for os.listdir()Just van Rossum2003-02-251-0/+24
* os.mkdir() would crash with a Unicode filename and mode param.Mark Hammond2003-02-191-1/+1
* Added test_posix (hopefully it works on Windows).Neal Norwitz2003-02-171-130/+64
* Add more missing PyErr_NoMemory() after failled memory allocsNeal Norwitz2003-02-111-2/+2
* Fix memory leak of newstr when putenv() failsNeal Norwitz2003-02-101-0/+1
* Get rid of compiler warningsNeal Norwitz2003-01-101-17/+17
* all_ins(): EX_OK and friends, constants from sysexits.hBarry Warsaw2003-01-071-0/+57
* Expose I_ constants. Auto-detect stropts.h. Properly configure the slave term...Martin v. Löwis2003-01-011-2/+2
* Fix compilation errors on HPUX11Neal Norwitz2002-12-311-3/+3
* Restore signalhandler in case of error. Fix type of signal handler.Martin v. Löwis2002-12-311-3/+9
* Patch #656590: /dev/ptmx support for ptys.Martin v. Löwis2002-12-311-7/+39
* Patch #657889: Implement posix.getloadavg.Martin v. Löwis2002-12-271-0/+25
* execve(), spawnve(): add some extra sanity checking to env;Guido van Rossum2002-12-131-18/+50
* Patch #614055: Support OpenVMS.Martin v. Löwis2002-12-061-2/+264
* Fix --disable-unicode compilation problems.Martin v. Löwis2002-11-211-0/+5
* Comment out the getcwdu implementation for --disable-unicode buildsWalter Dörwald2002-11-211-0/+4
* Enforce valid filemode. Fixes SF Bug #623464.Thomas Heller2002-11-071-0/+6