summaryrefslogtreecommitdiffstats
path: root/Modules/posixmodule.c
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 67154,67157-67159,67162-67163,67166,67175-67176,67189,67224-...Georg Brandl2008-12-051-6/+20
* Merged revisions 66809-66810,66835,66862-66863 via svnmerge fromHirokazu Yamamoto2008-10-091-1/+6
* 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
* Fix posix.fork1() / os.fork1() to only call PyOS_AfterFork() in the childGregory P. Smith2008-07-141-1/+2
* Issue #2722. Now the char buffer to support the path string hasFacundo Batista2008-06-221-5/+24
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-34/+34
* Renamed PyString to PyBytesChristian Heimes2008-05-261-34/+34
* #2890: support os.O_ASYNC and fcntl.FASYNC.Georg Brandl2008-05-161-0/+5
* Fix chown on 64-bit linux. It needed to take a long (64-bit on 64bit linux) asGregory P. Smith2008-03-181-2/+2
* Remove all traces of HAVE_STRERROR.Brett Cannon2008-03-181-4/+0
* #2063: correct order of utime and stime in os.times()Georg Brandl2008-02-131-2/+2
* Another int -> pid_t caseChristian Heimes2008-02-031-1/+2
* The wrapper function is supposed to be for spawnvpe() so that'sAndrew MacIntyre2008-02-031-2/+2
* More int -> pid_t.Christian Heimes2008-02-011-11/+18
* Fixed bug #1983: Return from fork() is pid_t, not intChristian Heimes2008-01-311-6/+7
* #1663329: add os.closerange() to close a range of fds,Georg Brandl2008-01-191-0/+19
* Modified PyImport_Import and PyImport_ImportModule to always use absolute imp...Christian Heimes2008-01-031-1/+1
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...Christian Heimes2007-12-191-1/+1
* Forward-port r59310:Martin v. Löwis2007-12-031-2/+5
* Fix for feature request #1528 Add os.fchmodChristian Heimes2007-11-301-0/+83
* #1735632: add O_NOATIME constant to os module.Georg Brandl2007-11-241-0/+4
* Document that we rely on the OS to release the cryptoMartin v. Löwis2007-09-041-0/+2
* Fix memory leak in os.readlinkNeal Norwitz2007-08-121-2/+6
* PEP 3123: Provide forward compatibility with Python 3.0, while keepingMartin v. Löwis2007-07-211-1/+1
* Fix problems in x64 build that were discovered by the testsuite:Kristján Valur Jónsson2007-05-031-1/+0
* Stop using PyMem_FREE while the GIL is not held. For details see:Neal Norwitz2007-05-021-1/+1
* Export function sanitize_the_mode from fileobject.c as _PyFile_SanitizeMode()...Kristján Valur Jónsson2007-04-261-6/+14
* Merge change 54909 from release25-maint: Fix several minor issues discovered...Kristján Valur Jónsson2007-04-251-3/+4
* Bug #1686475: Support stat'ing open files on Windows again.Martin v. Löwis2007-04-041-34/+66
* Patch #1490190: posixmodule now includes os.chflags() and os.lchflags()Martin v. Löwis2007-02-191-0/+57
* Bug #1645944: os.access now returns bool but docstring is not updatedGeorg Brandl2007-01-271-1/+1
* Patch #1580674: with this patch os.readlink uses the filesystem encoding toRonald Oussoren2006-10-221-2/+38
* Bug #1567666: Emulate GetFileAttributesExA for Win95.Martin v. Löwis2006-10-151-2/+102
* Patch #1576166: Support os.utime for directories on Windows NT+.Martin v. Löwis2006-10-151-2/+5
* Bug #1565150: Fix subsecond processing for os.utime on Windows.Martin v. Löwis2006-10-091-3/+3
* Bug #1551427: fix a wrong NULL pointer check in the win32 versionGeorg Brandl2006-09-061-1/+1
* If _stat_float_times is false, we will try to INCREF ival which could be NULL.Neal Norwitz2006-08-121-0/+2
* Bug #1524310: Properly report errors from FindNextFile in os.listdir.Martin v. Löwis2006-07-241-0/+17
* Patch #1516912: improve Modules support for OpenVMS.Neal Norwitz2006-07-101-0/+39
* Correct arithmetic in access on Win32. Fixes #1513646.Martin v. Löwis2006-07-021-1/+1
* Patch #1495999: Part two of Windows CE changes.Martin v. Löwis2006-06-101-0/+13
* Turn off warning about deprecated CRT functions on for VisualStudio .NET 2005.Kristján Valur Jónsson2006-06-091-0/+2
* Make use of METH_O and METH_NOARGS where possible.Georg Brandl2006-05-291-5/+2
* Patch #1492356: Port to Windows CE (patch set 1).Martin v. Löwis2006-05-221-10/+10
* Fix typo in os.utime docstring (patch #1490189)Georg Brandl2006-05-171-1/+1
* - Test for sys/statvfs.h before including it, as statvfs is presentMartin v. Löwis2006-05-161-5/+5
* Fix memory leak.Martin v. Löwis2006-05-151-0/+1