summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* This module has a poor name, since it can be used under FreeBSD andJeremy Hylton2000-08-311-0/+10
* If Setup is older than Setup.in, issue a bold warning that the Setup mayFred Drake2000-08-311-2/+11
* Skip Montanaro <skip@mojam.com>:Fred Drake2000-08-313-1/+16
* apply patch #101362 by Vladimir MarangozovJeremy Hylton2000-08-311-33/+24
* Peter Schneider-Kamp <nowonder@nowonder.de>:Fred Drake2000-08-313-11/+9
* Remove one compiler warning found with -Wstrict-prototypes.Fred Drake2000-08-311-1/+1
* oops. accidentally reintroduced a memory leak. put the bugfix back.Fredrik Lundh2000-08-271-3/+4
* don't mistake memory errors (including reaching the recursion limit)Fredrik Lundh2000-08-271-18/+24
* Add three new APIs: PyRun_AnyFileEx(), PyRun_SimpleFileEx(),Guido van Rossum2000-08-271-4/+3
* Charles Waldman's patch to reinitialize the interpreter lock after aGuido van Rossum2000-08-271-0/+1
* Fixed this problem.Thomas Wouters2000-08-261-4/+0
* Try to supply a prototype for the module init function but avoidTim Peters2000-08-262-2/+2
* Update the parser module to support augmented assignment.Fred Drake2000-08-251-6/+30
* initpyexpat(): Code cleanup; makes it more robust and reduces warnings.Fred Drake2000-08-251-126/+143
* Not every OS that support poll seems to support POLLMSG.Sjoerd Mullender2000-08-251-0/+2
* Add interface to poll() system call (SF patch #100852)Andrew M. Kuchling2000-08-251-2/+319
* Adjust the name for the socket module in the SSL line.Thomas Wouters2000-08-241-1/+1
* Fix the evil booboos. ;( Causes discussed with Jeremy offline.Fred Drake2000-08-241-2/+2
* Remove the Py_FatalError() from initpyexpat(); the Guido has decreedFred Drake2000-08-241-10/+22
* validate_listmaker(): Revise to match Skip's latest changes to theFred Drake2000-08-231-6/+12
* Nuked unused variable.Tim Peters2000-08-221-1/+0
* Update to reflect recent grammar changes (list comprehensions, extendedFred Drake2000-08-211-178/+363
* Add alias for old function name -- removing it broke Alexei Gilchrist's cfmAndrew M. Kuchling2000-08-201-0/+2
* Use METH_VARARGS constant in example module.Andrew M. Kuchling2000-08-191-6/+6
* Removed references to Py_FPROTO.Sjoerd Mullender2000-08-181-2/+2
* ANSI-fy function headers. Not much more can be done since I don'tBarry Warsaw2000-08-181-249/+82
* lad_dealloc(): if xp->x_fd == -1, it means the descriptor's alreadyBarry Warsaw2000-08-181-1/+3
* pattern_findall(): Plug small memory leak discovered by Insure.Barry Warsaw2000-08-181-3/+3
* init_locale(): This file defines the _locale module, so theBarry Warsaw2000-08-181-1/+1
* The sre test suite currently overruns the stack on Win64, Linux64, and MontereyTrent Mick2000-08-161-2/+11
* The socket module is now _socket on all platforms.Fred Drake2000-08-161-2/+1
* Remove a lot of the confusing conditional compilation from the beginningFred Drake2000-08-161-47/+4
* Chris Herborth <chrish@pobox.com>:Fred Drake2000-08-153-21/+1
* Fix new compiler warnings. Unused var in compile.c. Argsize mismatchesTim Peters2000-08-151-1/+1
* binascii_unhexlify(): Better error message, courtesy effbot.Barry Warsaw2000-08-151-5/+5
* After a brief conversation and code review with TP, adding two veryBarry Warsaw2000-08-151-22/+126
* SHA_hexdigest(): A couple of small patches to this function, addedBarry Warsaw2000-08-151-2/+10
* md5_hexdigest(): After a brief conversation with TP, added hexdigest()Barry Warsaw2000-08-151-9/+41
* 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
* Use safer comparisons (only matters when sizeof(int) != sizeof(size_t)). freadTrent Mick2000-08-122-4/+4
* Add support for FreeBSD --rpath linker option; this is equivalent toFred Drake2000-08-111-0/+1
* Clean up compiler warning exposed by GCC's -Wall option: make sureFred Drake2000-08-101-2/+2
* remove all occurence of math.rint() from the sourcesPeter Schneider-Kamp2000-08-101-7/+0
* -- changed findall to return empty strings instead of NoneFredrik Lundh2000-08-091-11/+11
* Added a missing } in the USE_STACKCHECK code.Jack Jansen2000-08-071-0/+1
* -- reset marks if repeat_one tail doesn't matchFredrik Lundh2000-08-071-93/+128
* + if USE_STACKCHECK is defined, use PyOS_CheckStack to lookFredrik Lundh2000-08-071-0/+7
* Neil Schemenauer: GC enable(), disable(), isenabled() interface.Vladimir Marangozov2000-08-061-16/+76
* Removed unnecessary local variable -- gave warning on gcc -WallMoshe Zadka2000-08-041-2/+0