| Commit message (Expand) | Author | Age | Files | Lines |
* | Cleanup configure.in. Specifically: | Thomas Wouters | 2000-08-05 | 3 | -266/+242 |
|
|
* | Fix some strange indentation and grammar that have been bugging me for | Thomas Wouters | 2000-08-05 | 1 | -6/+5 |
|
|
* | Changed H specifier to mean "bitfield", i.e. any value from | Jack Jansen | 2000-08-05 | 1 | -5/+27 |
|
|
* | Fixed imports from '*util' modules to not just import everything from util. | Greg Ward | 2000-08-05 | 7 | -16/+18 |
|
|
* | Drop the 'extend()' function -- old 1.5.1 compatibility hack that | Greg Ward | 2000-08-05 | 1 | -20/+0 |
|
|
* | Pragmas that instruct the linker to link against python20.lib (or | Greg Ward | 2000-08-05 | 1 | -2/+4 |
|
|
* | A bundle of wording improvements, corrections, clarifications, updates, | Greg Ward | 2000-08-05 | 1 | -68/+77 |
|
|
* | Removed unnecessary local variable -- gave warning on gcc -Wall | Moshe Zadka | 2000-08-04 | 1 | -2/+0 |
|
|
* | Removing warnings by gcc -Wall -- cast ugly || to void. | Moshe Zadka | 2000-08-04 | 1 | -1/+1 |
|
|
* | add note about compiler directory | Jeremy Hylton | 2000-08-04 | 1 | -0/+4 |
|
|
* | replace most calls to emit 'SET_LINENO' will call to method set_lineno | Jeremy Hylton | 2000-08-04 | 2 | -62/+84 |
|
|
* | update my email address | Jeremy Hylton | 2000-08-04 | 2 | -2/+8 |
|
|
* | Removing warnings discovered by gcc -Wall | Moshe Zadka | 2000-08-04 | 2 | -5/+5 |
|
|
* | Removing warnings found by gcc -Wall | Moshe Zadka | 2000-08-04 | 2 | -4/+9 |
|
|
* | Oooopsss.....tab and space mismatch corrected. | Moshe Zadka | 2000-08-04 | 1 | -2/+2 |
|
|
* | Add a test that Py_IsInitialized() in Py_InitModule4(). See | Guido van Rossum | 2000-08-04 | 1 | -0/+2 |
|
|
* | Raise 'TestSkipped' (from the test_support) module rather than 'ImportError' | Thomas Wouters | 2000-08-04 | 10 | -19/+20 |
|
|
* | Raise TestSkipped, not ImportError. | Moshe Zadka | 2000-08-04 | 1 | -2/+2 |
|
|
* | Make test_support.TestSkipped errors work the same way as ImportErrors: | Thomas Wouters | 2000-08-04 | 1 | -1/+1 |
|
|
* | In case the user isn't allowed to access /dev/dsp or /dev/dsp isn't there | Moshe Zadka | 2000-08-04 | 1 | -0/+3 |
|
|
* | Mention Include/my*.h cleanup | Andrew M. Kuchling | 2000-08-04 | 1 | -1/+4 |
|
|
* | Added zip() builtin | Andrew M. Kuchling | 2000-08-04 | 1 | -0/+8 |
|
|
* | Add missing 'try:'. Patch by Rob W. W. Hooft, #101071 (closed.) | Thomas Wouters | 2000-08-04 | 1 | -0/+1 |
|
|
* | Documented curses.wrapper and curses.textpad. | Eric S. Raymond | 2000-08-04 | 1 | -2/+131 |
|
|
* | Corrected a bug in handling of ^N and ^P with stripspaces on. | Eric S. Raymond | 2000-08-04 | 1 | -8/+12 |
|
|
* | Remove the outer test for __name__; not necessary. | Fred Drake | 2000-08-04 | 1 | -8/+7 |
|
|
* | Boost buffer sizes in the absence of snprintf on Windows. | Tim Peters | 2000-08-04 | 1 | -14/+19 |
|
|
* | snprintf() is not portable, so continue to use sprintf() until a portable | Fred Drake | 2000-08-04 | 1 | -8/+6 |
|
|
* | Added 'debug_print()'. | Greg Ward | 2000-08-04 | 1 | -0/+5 |
|
|
* | Rewrote 'find_library_file()' much more cleanly (and consistently with | Greg Ward | 2000-08-04 | 1 | -18/+16 |
|
|
* | Added 'debug' flag to 'find_library_file()', and changed code to handle it. | Greg Ward | 2000-08-04 | 1 | -6/+11 |
|
|
* | Added 'debug' flag to 'find_library_file()'. | Greg Ward | 2000-08-04 | 2 | -4/+6 |
|
|
* | test the non-multipart sections of the cgi module | Jeremy Hylton | 2000-08-03 | 2 | -0/+196 |
|
|
* | Break the "Python Services" chapter into two: "Python Runtime Services" | Fred Drake | 2000-08-03 | 4 | -17/+30 |
|
|
* | Remove very long doc string (it's all in the docs) | Jeremy Hylton | 2000-08-03 | 1 | -399/+3 |
|
|
* | Added descriptions of the new parser markers for PyArg_ParseTuple(). | Marc-André Lemburg | 2000-08-03 | 1 | -16/+77 |
|
|
* | Python code coverage tool by Skip Montanaro and Andrew Dalke | Jeremy Hylton | 2000-08-03 | 1 | -0/+661 |
|
|
* | This patch finalizes the move from UTF-8 to a default encoding in | Marc-André Lemburg | 2000-08-03 | 4 | -65/+109 |
|
|
* | Remove the tp_print handler. | Fred Drake | 2000-08-03 | 1 | -31/+27 |
|
|
* | add a bit more legal junk | Greg Stein | 2000-08-03 | 2 | -16/+32 |
|
|
* | \py@varvars: Merge the various definitions to be the simplist one that | Fred Drake | 2000-08-03 | 1 | -5/+2 |
|
|
* | int() description: Fix markup to avoid image generation for math mode. | Fred Drake | 2000-08-03 | 1 | -5/+6 |
|
|
* | Checking in empty tests for urlparse, as future place holders | Moshe Zadka | 2000-08-03 | 2 | -0/+1 |
|
|
* | do_cmd_moreargs(), | Fred Drake | 2000-08-03 | 1 | -4/+8 |
|
|
* | Remobe beopen/cnri/cwi copyrights, according to CNRI instructions. | Guido van Rossum | 2000-08-03 | 3 | -30/+0 |
|
|
* | -- added recursion limit (currently ~10,000 levels) | Fredrik Lundh | 2000-08-03 | 4 | -158/+183 |
|
|
* | Changing the CNRI copyright notice according to CNRI's instructions. | Guido van Rossum | 2000-08-03 | 9 | -9/+9 |
|
|
* | TESTOPTS: Since gc is enabled by default now (this may change for the | Barry Warsaw | 2000-08-03 | 1 | -1/+1 |
|
|
* | Added a -l/--leakdebug option which turns on DEBUG_LEAK if the gc | Barry Warsaw | 2000-08-03 | 1 | -12/+23 |
|
|
* | Added output for testsuite for new zip() builtin. | Barry Warsaw | 2000-08-03 | 1 | -0/+1 |
|
|