summaryrefslogtreecommitdiffstats
path: root/Modules/posixmodule.c
Commit message (Expand)AuthorAgeFilesLines
...
* Fix alignment error on Itanium.Martin v. Löwis2006-05-121-3/+6
* Dynamically allocate path name buffer for UnicodeMartin v. Löwis2006-05-121-17/+28
* Add missing PyMem_Free.Martin v. Löwis2006-05-081-0/+1
* Port access, chmod, parts of getcwdu, mkdir, and utime to direct Win32 API.Martin v. Löwis2006-05-061-52/+193
* Drop now-unnecessary arguments to posix_2str.Martin v. Löwis2006-05-041-3/+3
* Implement os.{chdir,rename,rmdir,remove} using Win32 directly.Martin v. Löwis2006-05-041-93/+156
* Define MAXPATHLEN to be at least PATH_MAX, if that's defined. Python usesThomas Wouters2006-04-251-0/+4
* Patch 1471925 - Weak linking support for OSXRonald Oussoren2006-04-231-0/+51
* Fix more ssize_t problems.Martin v. Löwis2006-04-221-5/+7
* Address issues brought up by MvL on python-checkins.Neal Norwitz2006-04-201-4/+4
* Whitespace, fix indentationNeal Norwitz2006-04-201-2/+1
* Correct implementation and documentation of os.confstr. Add a simple testSkip Montanaro2006-04-201-6/+9
* reset errno before calling confstr - use confstr() doc to simplify checks aft...Skip Montanaro2006-04-181-7/+9
* Initialize structseq types only once.Martin v. Löwis2006-04-161-10/+14
* spread the extern "C" { } magic pixie dust around. Python itself builds nowAnthony Baxter2006-04-131-0/+9
* Some more changes to make code compile under a C++ compiler.Anthony Baxter2006-04-111-4/+4
* Clear errno before calling opendir() and readdir().Georg Brandl2006-04-111-0/+1
* Bug #1467952: os.listdir() now correctly raises an error if readdir()Georg Brandl2006-04-111-0/+6
* Fix warning about ptsname not being a prototype on Solaris. Is this prototyp...Neal Norwitz2006-04-101-1/+1
* Properly support empty woperation in win32_startfile;Martin v. Löwis2006-04-031-9/+12
* Bug #1451503: allow unicode filenames in os.startfile().Georg Brandl2006-04-031-0/+35
* In the fdopen(fd, 'a') case on UNIX, don't try to set fd's flags to -1 ifThomas Wouters2006-03-311-1/+1
* Add guards against fcntl() not being available on Windows.Georg Brandl2006-03-311-0/+4
* bug #1461855: make os.fdopen() add the O_APPEND flag if using "a" mode.Georg Brandl2006-03-311-2/+13
* Try to fix broken compile on openbsd.Neal Norwitz2006-03-261-4/+4
* Damn Coverity. I can't even sneak in a leak any more. :-)Neal Norwitz2006-03-201-1/+1
* The helper is only necessary for wait3/4.Neal Norwitz2006-03-201-0/+2
* Try to cleanup a lot of boilerplate #ifdef wrt wait types and make the codeNeal Norwitz2006-03-201-143/+47
* Patch #1309579: wait3 and wait4 were added to the posix module by Chad J. Sch...Neal Norwitz2006-03-201-0/+128
* SF #1445431, fix some leaks in error conditions.Neal Norwitz2006-03-201-4/+5
* Reformulate 42903 using an if statement.Martin v. Löwis2006-03-071-35/+31
* Fix bug introduced in rev. 42884.Georg Brandl2006-03-071-3/+5
* Bug #1432525: os.listdir now releases the GIL while callingGeorg Brandl2006-03-071-3/+15
* Change int to Py_ssize_t in several places.Martin v. Löwis2006-03-071-4/+4
* Repair mangled code in the Windows flavor ofTim Peters2006-03-011-2/+1
* Py_ssize_t-ify.Thomas Wouters2006-03-011-5/+10
* Fix a build problem introduced by r42230.Hye-Shik Chang2006-02-191-1/+1
* Patch #1393157: os.startfile() now has an optional argument to specifyGeorg Brandl2006-02-181-7/+14
* Merge ssize_t branch.Martin v. Löwis2006-02-151-20/+21
* Drop C library for stat/fstat on Windows.Martin v. Löwis2006-02-031-117/+246
* Check return result from Py_InitModule*(). This API can fail.Neal Norwitz2006-01-191-0/+2
* Fix SF bug #1072182, problems with signed characters.Neal Norwitz2005-12-191-1/+1
* Bug #869197: setgroups rejects long integer argumentGeorg Brandl2005-11-221-6/+31
* Commit memory leaking fix.Georg Brandl2005-09-251-2/+6
* Remove unnecessary/extra parens when returning a value.Neal Norwitz2005-09-191-6/+6
* Forward port fixes for problems reported by valgrindNeal Norwitz2005-09-191-1/+2
* bug [ 1007046 ] os.startfile() doesn't accept Unicode filenamesGeorg Brandl2005-09-141-1/+2
* Correct definition of ST_GEN_IDX.Martin v. Löwis2005-08-141-2/+2
* Patch #1180695: Implement nanosecond stat resolution on FreeBSD,Martin v. Löwis2005-08-091-0/+47
* Fix bugMichael W. Hudson2005-07-051-0/+2