summaryrefslogtreecommitdiffstats
path: root/Modules/posixmodule.c
Commit message (Expand)AuthorAgeFilesLines
* Patch #411138: Rename config.h to pyconfig.h. Closes bug #231774.Martin v. Löwis2001-07-261-1/+1
* Remove warnings from the SGI compiler.Fred Drake2001-07-191-1/+1
* On Windows, tempnam() is spelled with a leading underscore.Fred Drake2001-07-171-0/+4
* Re-do the broken-nice() patch to break less platforms. Hopefully none :PThomas Wouters2001-07-111-3/+9
* Patch #439995 (slightly modified from the uploaded version):Thomas Wouters2001-07-111-1/+18
* SF patch #418147 Fixes to allow compiling w/ Borland, from Stephen Hansen.Tim Peters2001-05-141-10/+8
* Fix the Py_FileSystemDefaultEncoding checkin - declare the variable in a file...Mark Hammond2001-05-141-10/+0
* Add support for Windows using "mbcs" as the default Unicode encoding when dea...Mark Hammond2001-05-131-40/+99
* Make some private symbols static.Guido van Rossum2001-04-141-1/+1
* Unixware 7 support by Billy G. Allie (SF patch 413011)Guido van Rossum2001-04-111-0/+30
* conditionally include unistd.h to pick up confstr declaration. attempt toSkip Montanaro2001-02-271-0/+5
* Add a few more missing prototypes to the SunOS 4.1.4 section (no SFThomas Wouters2001-02-151-0/+3
* Partial fix to [ Bug #128685 ] popen on Win9x isnt smart enough about finding...Mark Hammond2001-01-311-9/+45
* Fix Bug #125891 - os.popen2,3 and 4 leaked file objects on Windows.Mark Hammond2001-01-311-0/+5
* Plug memory leak.Neil Schemenauer2001-01-161-1/+2
* Anonymous SF bug report #128053 point out that the #ifdef forGuido van Rossum2001-01-081-1/+1
* Trivial typo fix, submitted by Charles Waldman (SF patch #102794).Guido van Rossum2000-12-121-1/+1
* posix_getlogin(): Be more cautious about interpreting a NULL fromFred Drake2000-12-061-1/+1
* posix_getlogin(): Handle the possibility that getlogin() can returnFred Drake2000-12-061-3/+12
* Ka-Ping Yee <ping@lfw.org>:Fred Drake2000-10-241-28/+28
* Clarify that isatty is only guaranteed to return true for slave ends ofThomas Wouters2000-10-031-1/+1
* Add missing prototypes for the benefit of SunOS 4.1.4 */Guido van Rossum2000-09-251-0/+7
* It's better to test for __hpux rather than __hppa, and hpux or hppa isGuido van Rossum2000-09-221-1/+1
* Hopefully fix the problem with undeclared fdatasync() on HP-UX thatGuido van Rossum2000-09-221-0/+5
* Implemented new os.startfile function, unique to Windows, exposing aTim Peters2000-09-221-0/+33
* Closes SF bug 113894: on Windows, things like os.listdir("k:") andTim Peters2000-09-151-9/+7
* REMOVED all CWI, CNRI and BeOpen copyright markings.Guido van Rossum2000-09-011-9/+0
* Repaired damaged comments, and extra spaces in fatal error msgs we'd betterTim Peters2000-09-011-6/+7
* Fix test_popen2 on Windows, recently broken by changes to the dict(!)Tim Peters2000-09-011-1/+57
* Chris Herborth <chrish@pobox.com>:Fred Drake2000-08-151-5/+0
* Fix for bug #110670 - Win32 os.listdir raises confusing errors:Mark Hammond2000-08-151-3/+7
* Patch #101032, from David Bolen:Mark Hammond2000-08-141-48/+154
* 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