summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* # Typo in docstring (Retrun -> Return).Guido van Rossum1999-02-231-1/+1
* Carefully check for overflow when allocating the memory for fromfileGuido van Rossum1999-02-231-1/+8
* Patch by Tadayoshi Funaba (with some changes) to be smarter aboutGuido van Rossum1999-02-231-6/+12
* Document *static* -- in two places!Guido van Rossum1999-02-221-1/+4
* We don't support leap seconds, so the seconds field of a time 9-tupleGuido van Rossum1999-02-221-1/+1
* In atoi(), don't use isxdigit() to test whether the last characterGuido van Rossum1999-02-221-1/+1
* The docstring for ttyname(..) claims a second "mode" argument. TheGuido van Rossum1999-02-221-1/+1
* When the parameter to PyInt_AsLong() has already been checked withFred Drake1999-02-171-2/+2
* Use the portable form of initializing the ob_type field for new types.Fred Drake1999-02-161-2/+8
* The symbols P_* (for spawn*(), MS specific) should not have a leadingGuido van Rossum1999-02-161-5/+5
* Fixed totally bogus conversion factors used in the Win32 version ofGuido van Rossum1999-02-161-3/+10
* Got rid of the file-global PosixError. This was redundant since itBarry Warsaw1999-02-091-8/+4
* On Windows, -i shouldn't call set[v]buf(stdin, ...) because it screwsGuido van Rossum1999-02-091-1/+1
* Fix buglet in load_put -- the test for bad readline result tested theGuido van Rossum1999-02-081-1/+1
* The variable TESTPATH should be initialized to empty.Guido van Rossum1999-02-081-1/+1
* The writelines() function was never tested and contained numerous bugsGuido van Rossum1999-02-081-4/+16
* Jim Fulton: this fixes seg faults with bad pickles like "c".Guido van Rossum1999-02-041-3/+22
* Portability fix for [f]statvfs() return tuple: no longer return theGuido van Rossum1999-02-031-12/+8
* Never mind, this belongs in the PC subdirectory,Guido van Rossum1999-02-021-71/+0
* Added documentation to the docstrings for the W*() functions that takeFred Drake1999-02-021-6/+8
* Windows sound playing module, by Fredrik Lundh.Guido van Rossum1999-02-021-0/+71
* Add _P_WAIT etc. for NT.Guido van Rossum1999-02-011-0/+12
* spawnv, spawnve docstrings: added mode parameter; this is required!Fred Drake1999-02-011-2/+4
* PyPcre_expand(): Fixed two memory leaks, where a PyString_FromString()Barry Warsaw1999-02-011-3/+26
* Oops, the patch for NeXT always replaced waitpid() with wait4() --Guido van Rossum1999-02-011-0/+4
* setup_readline(): Added a comment about memory leak (reported byBarry Warsaw1999-01-291-1/+5
* Added missing DECREF's in the error branches when creating a compressor orAndrew M. Kuchling1999-01-291-1/+12
* PyInit_zlib(): Plug a small memory leak. Jeremy is looking into theBarry Warsaw1999-01-281-0/+1
* Document -OO; "unsafe" optimization that removes docstrings.Guido van Rossum1999-01-281-1/+2
* pcre_exec(): Andrew Kuchling's patch for pcre memory leak.Barry Warsaw1999-01-271-0/+1
* initerrno(): Nailed a not-so-tiny memory leak. The de dictionary isBarry Warsaw1999-01-271-1/+2
* Patches by William Lewis for Nextstep descendants.Guido van Rossum1999-01-275-30/+124
* expandtabs__doc__: blank line which was not terminated with \n\ causedBarry Warsaw1999-01-261-1/+0
* Add spawnv and spawnve functions for Win32 platforms.Guido van Rossum1999-01-251-0/+178
* A gift from Fredrik Lundh: fast C implementation of expandtabs().Guido van Rossum1999-01-251-0/+75
* Make sure not to call realloc() with a NULL pointer -- call malloc()Guido van Rossum1999-01-251-1/+4
* Include myselect.h -- needed on some platforms.Guido van Rossum1999-01-251-0/+1
* Rearrange the -I flags for compiling _tkinter.c so thatGuido van Rossum1999-01-251-2/+2
* Only do ttyname() when HAVE_TTYNAME is defined.Guido van Rossum1999-01-251-0/+18
* Should include "Python.h", not <Python.h> -- it's not a standardGuido van Rossum1999-01-141-1/+1
* Jim Ahlstrom patch: Watcom chokes on a long expression in c_asinh().Guido van Rossum1999-01-141-1/+5
* Need extern decl. for fdatasync() in case it exists but isn't declaredGuido van Rossum1999-01-081-2/+2
* Added fsync() and fdatasync(). Patches by Scott Cotton. RequiresGuido van Rossum1999-01-081-0/+57
* The doc string for strptime had the arguments reversed -- the stringGuido van Rossum1999-01-071-1/+1
* fix bug in PyZlib_flush.Jeremy Hylton1999-01-061-4/+4
* Change the access() code to return 1 if granted, 0 if not granted.Guido van Rossum1999-01-061-4/+11
* Changes for long file support by Steve Clift.Guido van Rossum1999-01-061-3/+22
* Changes for long file support by Steve Clift.Guido van Rossum1999-01-061-9/+33
* Changes for long file support by Steve Clift.Guido van Rossum1999-01-061-14/+231
* Patch by Charles Waldman to implement an optional nlines argument toGuido van Rossum1999-01-051-2/+18