summaryrefslogtreecommitdiffstats
path: root/Modules/posixmodule.c
Commit message (Expand)AuthorAgeFilesLines
* merge Include/my*.h into Include/pyport.hPeter Schneider-Kamp2000-07-311-2/+0
* - changed windows pclose to make sure we don't return before theFredrik Lundh2000-07-261-10/+21
* Create a new section of pyport.h to hold all external function declarationsThomas Wouters2000-07-241-20/+2
* -- added code to the new Windows popen functions to make closeFredrik Lundh2000-07-231-8/+90
* Even more ANSIfication: fix as many function pointers and declarations asThomas Wouters2000-07-221-5/+5
* Remove unused helper-function 'posix_strint'.Thomas Wouters2000-07-221-18/+0
* Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)',Thomas Wouters2000-07-211-9/+6
* ANSIfy the just-checked-in isatty() wrapper.Thomas Wouters2000-07-191-3/+1
* new method isatty from Thomas WoutersSkip Montanaro2000-07-191-0/+16
* Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in eitherThomas Wouters2000-07-161-4/+4
* Move (actually copy) support for the sgi._getpty() function intoThomas Wouters2000-07-141-5/+24
* From Sam Rushing's Medusa, via SF patch #100858: add & documentAndrew M. Kuchling2000-07-131-0/+88
* replace PyXXX_Length calls with PyXXX_Size callsJeremy Hylton2000-07-121-2/+2
* - stupid typo.Fredrik Lundh2000-07-101-1/+1
* -- get rid of a compiler warning on unix. (as reportedFredrik Lundh2000-07-101-21/+13
* - changed the nt.popen2 return values back toFredrik Lundh2000-07-091-30/+30
* - added popen.popen2/popen3/popen4 support forFredrik Lundh2000-07-091-7/+7
* - added optional bufsize argument to new popen methods.Fredrik Lundh2000-07-091-7/+30
* - improved os.popen support for windows, based on win32pipeFredrik Lundh2000-07-091-6/+462
* - fixed pointer size test in spawn functions. also addedFredrik Lundh2000-07-091-6/+6
* this one's a bit risky, but I've spent some considerable timeFredrik Lundh2000-07-081-340/+132
* Fix bug #392, reported by Jonathan Giddy <jon@dstc.edu.au>:Fred Drake2000-07-061-2/+4
* Change copyright notice - 2nd try.Guido van Rossum2000-06-301-6/+0
* Change copyright notice.Guido van Rossum2000-06-301-22/+7
* Crude way to fix a problem on AIX: #undef STAT before defining it.Guido van Rossum2000-06-301-0/+1
* Trent Mick <trentm@activestate.com>:Fred Drake2000-06-291-67/+102
* Thomas Wouters <thomas@xs4all.net>:Fred Drake2000-06-281-0/+64
* Patch from Trent Mick:Andrew M. Kuchling2000-06-061-1/+1
* Michael Hudson <mwh21@cam.ac.uk>:Fred Drake2000-06-011-3/+4
* Mark Hammond to the rescue:Guido van Rossum2000-05-031-3/+4
* posix_utime(): Allow the second argument to be None, which invokes theBarry Warsaw2000-05-011-7/+23
* Michael Hudson:Guido van Rossum2000-04-261-3/+16
* Patch by Brian Hooper, somewhat augmented by GvR, to strip a trailingGuido van Rossum2000-04-211-0/+28
* setup_confname_table(): Close memory leak caused by not decref'ing theBarry Warsaw2000-04-131-16/+15
* Sigh. On Windows, (mode_t)i fails. Assume that there's a prototypeGuido van Rossum2000-03-311-1/+1
* Oops, the previous patch contained a bug in chmod. Fixed now.Guido van Rossum2000-03-311-2/+2
* Two robustness patches:Guido van Rossum2000-03-311-5/+12
* Second attempt to fix the ctermid_r/tmpnam_r warnings: define USE_CTERMID_RGreg Ward2000-03-011-3/+13
* Fix compiler warning: only use "_r" form of 'ctermid()' and 'tmpnam()' whenGreg Ward2000-03-011-2/+2
* Delete references to _SC_AIO_LIST_MAX; it appears that that symbol wasGuido van Rossum2000-02-251-3/+0
* The initialization of posix_putenv_garbage should only be done when itGuido van Rossum2000-01-311-0/+2
* setup_confname_table(): Use size_t instead of int for an index whenFred Drake1999-12-301-1/+1
* Rip out the code to check the ordering of the tables used to mapFred Drake1999-12-151-31/+65
* Added table entries for Irix 6.5 names for confstr()/sysconf()/Fred Drake1999-12-151-0/+174
* Added support for getlogin(); does *not* use getlogin_r() whereFred Drake1999-12-141-44/+73
* Removed debugging prints.Fred Drake1999-12-131-4/+0
* Added bindings for getgroups(), fpathconf(), pathconf(), confstr(),Fred Drake1999-12-131-1/+863
* Added support for abort(), ctermid(), tmpfile(), tempnam(), tmpnam(),Fred Drake1999-12-091-163/+326
* John DuBois tells us that SCO OpenServer 5.0 and later requires _SVID3Guido van Rossum1999-10-191-0/+5
* posix_putenv(): Constrain memory leakage when setting the sameFred Drake1999-08-261-3/+24