summaryrefslogtreecommitdiffstats
path: root/Modules/posixmodule.c
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 53623-53858 via svnmerge fromThomas Wouters2007-02-231-0/+57
* Merged revisions 53538-53622 via svnmerge fromThomas Wouters2007-02-051-1/+1
* Merged the int/long unification branch, by very crude means (sorry Thomas!).Guido van Rossum2007-01-141-22/+11
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-10/+149
* Merge current trunk into p3yk. This includes the PyNumber_Index API change,Thomas Wouters2006-08-211-0/+2
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-1/+72
* Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svnThomas Wouters2006-06-081-5/+2
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-188/+465
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-156/+268
* 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
* Patch #1212117: Add optional attribute st_flags to os.stat_resultHye-Shik Chang2005-06-021-2/+15
* Add O_SHLOCK & O_EXLOCK. Closes patch #1103951.Skip Montanaro2005-05-161-0/+6
* Convert file names of posix.access according to the file system encoding.Martin v. Löwis2005-03-081-1/+2
* FixMichael W. Hudson2005-01-311-0/+4
* Default stat_float_times to true.Martin v. Löwis2005-01-161-1/+1
* fix unterminated commentAndrew MacIntyre2004-12-181-1/+1
* OS/2 specific fixes related to SF bug # 1003471.Andrew MacIntyre2004-12-121-68/+67
* Patch 977343, Solaris likes sys/loadavg.h. Added support for sys/loadavg.hAnthony Baxter2004-10-131-0/+4
* Patch #975056 - fixes for restartable signals on *BSD. In addition,Anthony Baxter2004-10-131-4/+4
* Patch #1009075, bug #952953: allow execve with empty 2nd argumentArmin Rigo2004-09-271-12/+0
* win32_urandom(): There's no need to copy the generated byte string, soTim Peters2004-08-301-17/+11
* win32_urandom(): pass the function name to PyArg_ParseTuple, for betterTim Peters2004-08-301-1/+1
* win32_urandom(): Raise ValueError if the argument is negative.Tim Peters2004-08-301-0/+3
* win32_urandom(): Rewrite to Python C standards (hard tabs, function nameTim Peters2004-08-301-52/+59
* Patch #934711: Expose platform-specific entropy.Martin v. Löwis2004-08-291-1/+72
* Return unicode strings from _getfullpathname even on W9X. Fixes #924703 .Martin v. Löwis2004-06-151-0/+4
* 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