| Commit message (Expand) | Author | Age | Files | Lines |
* | initpyexpat(): Code cleanup; makes it more robust and reduces warnings. | Fred Drake | 2000-08-25 | 1 | -126/+143 |
|
|
* | Not every OS that support poll seems to support POLLMSG. | Sjoerd Mullender | 2000-08-25 | 1 | -0/+2 |
|
|
* | Add interface to poll() system call (SF patch #100852) | Andrew M. Kuchling | 2000-08-25 | 1 | -2/+319 |
|
|
* | Adjust the name for the socket module in the SSL line. | Thomas Wouters | 2000-08-24 | 1 | -1/+1 |
|
|
* | Fix the evil booboos. ;( Causes discussed with Jeremy offline. | Fred Drake | 2000-08-24 | 1 | -2/+2 |
|
|
* | Remove the Py_FatalError() from initpyexpat(); the Guido has decreed | Fred Drake | 2000-08-24 | 1 | -10/+22 |
|
|
* | validate_listmaker(): Revise to match Skip's latest changes to the | Fred Drake | 2000-08-23 | 1 | -6/+12 |
|
|
* | Nuked unused variable. | Tim Peters | 2000-08-22 | 1 | -1/+0 |
|
|
* | Update to reflect recent grammar changes (list comprehensions, extended | Fred Drake | 2000-08-21 | 1 | -178/+363 |
|
|
* | Add alias for old function name -- removing it broke Alexei Gilchrist's cfm | Andrew M. Kuchling | 2000-08-20 | 1 | -0/+2 |
|
|
* | Use METH_VARARGS constant in example module. | Andrew M. Kuchling | 2000-08-19 | 1 | -6/+6 |
|
|
* | Removed references to Py_FPROTO. | Sjoerd Mullender | 2000-08-18 | 1 | -2/+2 |
|
|
* | ANSI-fy function headers. Not much more can be done since I don't | Barry Warsaw | 2000-08-18 | 1 | -249/+82 |
|
|
* | lad_dealloc(): if xp->x_fd == -1, it means the descriptor's already | Barry Warsaw | 2000-08-18 | 1 | -1/+3 |
|
|
* | pattern_findall(): Plug small memory leak discovered by Insure. | Barry Warsaw | 2000-08-18 | 1 | -3/+3 |
|
|
* | init_locale(): This file defines the _locale module, so the | Barry Warsaw | 2000-08-18 | 1 | -1/+1 |
|
|
* | The sre test suite currently overruns the stack on Win64, Linux64, and Monterey | Trent Mick | 2000-08-16 | 1 | -2/+11 |
|
|
* | The socket module is now _socket on all platforms. | Fred Drake | 2000-08-16 | 1 | -2/+1 |
|
|
* | Remove a lot of the confusing conditional compilation from the beginning | Fred Drake | 2000-08-16 | 1 | -47/+4 |
|
|
* | Chris Herborth <chrish@pobox.com>: | Fred Drake | 2000-08-15 | 3 | -21/+1 |
|
|
* | Fix new compiler warnings. Unused var in compile.c. Argsize mismatches | Tim Peters | 2000-08-15 | 1 | -1/+1 |
|
|
* | binascii_unhexlify(): Better error message, courtesy effbot. | Barry Warsaw | 2000-08-15 | 1 | -5/+5 |
|
|
* | After a brief conversation and code review with TP, adding two very | Barry Warsaw | 2000-08-15 | 1 | -22/+126 |
|
|
* | SHA_hexdigest(): A couple of small patches to this function, added | Barry Warsaw | 2000-08-15 | 1 | -2/+10 |
|
|
* | md5_hexdigest(): After a brief conversation with TP, added hexdigest() | Barry Warsaw | 2000-08-15 | 1 | -9/+41 |
|
|
* | Fix for bug #110670 - Win32 os.listdir raises confusing errors: | Mark Hammond | 2000-08-15 | 1 | -3/+7 |
|
|
* | Patch #101032, from David Bolen: | Mark Hammond | 2000-08-14 | 1 | -48/+154 |
|
|
* | Use safer comparisons (only matters when sizeof(int) != sizeof(size_t)). fread | Trent Mick | 2000-08-12 | 2 | -4/+4 |
|
|
* | Add support for FreeBSD --rpath linker option; this is equivalent to | Fred Drake | 2000-08-11 | 1 | -0/+1 |
|
|
* | Clean up compiler warning exposed by GCC's -Wall option: make sure | Fred Drake | 2000-08-10 | 1 | -2/+2 |
|
|
* | remove all occurence of math.rint() from the sources | Peter Schneider-Kamp | 2000-08-10 | 1 | -7/+0 |
|
|
* | -- changed findall to return empty strings instead of None | Fredrik Lundh | 2000-08-09 | 1 | -11/+11 |
|
|
* | Added a missing } in the USE_STACKCHECK code. | Jack Jansen | 2000-08-07 | 1 | -0/+1 |
|
|
* | -- reset marks if repeat_one tail doesn't match | Fredrik Lundh | 2000-08-07 | 1 | -93/+128 |
|
|
* | + if USE_STACKCHECK is defined, use PyOS_CheckStack to look | Fredrik Lundh | 2000-08-07 | 1 | -0/+7 |
|
|
* | Neil Schemenauer: GC enable(), disable(), isenabled() interface. | Vladimir Marangozov | 2000-08-06 | 1 | -16/+76 |
|
|
* | Removed unnecessary local variable -- gave warning on gcc -Wall | Moshe Zadka | 2000-08-04 | 1 | -2/+0 |
|
|
* | Removing warnings discovered by gcc -Wall | Moshe Zadka | 2000-08-04 | 2 | -5/+5 |
|
|
* | Remobe beopen/cnri/cwi copyrights, according to CNRI instructions. | Guido van Rossum | 2000-08-03 | 1 | -10/+0 |
|
|
* | -- added recursion limit (currently ~10,000 levels) | Fredrik Lundh | 2000-08-03 | 2 | -158/+172 |
|
|
* | Changing the CNRI copyright notice according to CNRI's instructions. | Guido van Rossum | 2000-08-03 | 4 | -4/+4 |
|
|
* | Use METH_OLDARGS instead of numeric constant 0 in method def. tables | Andrew M. Kuchling | 2000-08-03 | 9 | -55/+78 |
|
|
* | Use METH_VARARGS instead of numeric constant 1 in method def. tables | Andrew M. Kuchling | 2000-08-03 | 12 | -108/+179 |
|
|
* | Use METH_VARARGS instead of numeric constant 1 | Andrew M. Kuchling | 2000-08-03 | 1 | -12/+22 |
|
|
* | Rob Hooft (Patch #101046): use PyArg_ParseTuple everywhere. | Guido van Rossum | 2000-08-02 | 1 | -21/+27 |
|
|
* | Fix for bug #110651 (Jitterbug PR#343): only use the low 8 bits of an octal | Andrew M. Kuchling | 2000-08-02 | 1 | -1/+1 |
|
|
* | final 0.9.8 updates: | Fredrik Lundh | 2000-08-01 | 2 | -40/+72 |
|
|
* | -- fixed width calculations for alternations | Fredrik Lundh | 2000-08-01 | 2 | -28/+191 |
|
|
* | Removed decl of unreferenced vrbl. | Tim Peters | 2000-08-01 | 1 | -1/+0 |
|
|
* | SRE 0.9.8: passes the entire test suite | Fredrik Lundh | 2000-08-01 | 3 | -481/+324 |
|
|