| Commit message (Expand) | Author | Age | Files | Lines |
* | Patch #462635 by Andrew Kuchling correcting bugs in the new | Marc-André Lemburg | 2001-09-20 | 5 | -11/+21 |
|
|
* | SF bug [#463093] File methods need doc strings. | Tim Peters | 2001-09-20 | 1 | -14/+94 |
|
|
* | run_suite(): Oops, update a docstring. | Barry Warsaw | 2001-09-20 | 1 | -1/+1 |
|
|
* | run_suite(): Factor this out of run_unittest() for tests that build | Barry Warsaw | 2001-09-20 | 1 | -2/+7 |
|
|
* | Since inspect.isfunction(obj) is a precondition for calling | Tim Peters | 2001-09-20 | 1 | -6/+6 |
|
|
* | Ensure that isfunction(obj) and (the new) ismethoddescriptor(obj) never | Tim Peters | 2001-09-20 | 1 | -5/+8 |
|
|
* | News about compiler and pydoc. | Guido van Rossum | 2001-09-20 | 1 | -3/+9 |
|
|
* | AFAICT pydoc/inspect do the right thing again. | Guido van Rossum | 2001-09-20 | 1 | -2/+3 |
|
|
* | After much thrashing, I believe this is a truly minimal patch to teach | Tim Peters | 2001-09-20 | 2 | -4/+27 |
|
|
* | Install the compiler package under Lib. | Tim Peters | 2001-09-20 | 1 | -26/+8 |
|
|
* | The compiler package is now part of the standard library. | Jeremy Hylton | 2001-09-20 | 12 | -5811/+0 |
|
|
* | Patch #461321: Support None as a timeout in poll2 and poll3. | Martin v. Löwis | 2001-09-19 | 1 | -4/+6 |
|
|
* | Patch #462849: Pass Unicode objects to file's .write method. | Martin v. Löwis | 2001-09-19 | 2 | -3/+13 |
|
|
* | Keep tabnanny happy. | Guido van Rossum | 2001-09-19 | 1 | -1/+1 |
|
|
* | Fixed search function error reporting in the encodings package | Marc-André Lemburg | 2001-09-19 | 1 | -7/+11 |
|
|
* | Docs and News item for the codecs.py additions. | Marc-André Lemburg | 2001-09-19 | 2 | -0/+36 |
|
|
* | Added new helpers for easy access to codecs. Docs will follow. | Marc-André Lemburg | 2001-09-19 | 1 | -0/+42 |
|
|
* | Fix for bug #462737. | Marc-André Lemburg | 2001-09-19 | 1 | -3/+3 |
|
|
* | Include ctype.h after Python.h. | Martin v. Löwis | 2001-09-19 | 1 | -1/+1 |
|
|
* | Patch to bug #461753: Allow None in ExternalEntityParserCreate. | Martin v. Löwis | 2001-09-19 | 1 | -1/+1 |
|
|
* | Patch to bug #461754: CDATA should not undergo entity subst. | Martin v. Löwis | 2001-09-19 | 1 | -1/+1 |
|
|
* | Add additional coercion support for "self subtypes" to int, long, | Guido van Rossum | 2001-09-19 | 4 | -1/+50 |
|
|
* | Enable two checks for comparing a complex to a complex subtype | Guido van Rossum | 2001-09-19 | 1 | -3/+4 |
|
|
* | complex_coerce(): add explicit PyComplex_Check() test. Previously, | Guido van Rossum | 2001-09-19 | 1 | -0/+5 |
|
|
* | Enable some comparison tests that failed before. Still having problems | Tim Peters | 2001-09-18 | 1 | -3/+3 |
|
|
* | Add a similar test for rich comparisons. | Guido van Rossum | 2001-09-18 | 1 | -1/+67 |
|
|
* | fixed #449964: sre.sub raises an exception if the template contains a | Fredrik Lundh | 2001-09-18 | 4 | -21/+30 |
|
|
* | Hopefully fix 3-way comparisons. This unfortunately adds yet another | Guido van Rossum | 2001-09-18 | 4 | -6/+53 |
|
|
* | Get rid of a superfluous space after "--" in the message printed for a | Guido van Rossum | 2001-09-18 | 1 | -2/+1 |
|
|
* | [Patch #462258] On Cygwin, don't build Tkinter unless the X header files | Andrew M. Kuchling | 2001-09-18 | 1 | -0/+7 |
|
|
* | Fix typo in comment | Andrew M. Kuchling | 2001-09-18 | 1 | -1/+1 |
|
|
* | Properly repr classes without module names. | Martin v. Löwis | 2001-09-18 | 1 | -1/+1 |
|
|
* | Test for the safety check in wrap_cmpfunc(). | Guido van Rossum | 2001-09-18 | 1 | -0/+15 |
|
|
* | wrap_cmpfunc(): added a safety check for the __cmp__ wrapper. We can | Guido van Rossum | 2001-09-18 | 1 | -0/+9 |
|
|
* | an SRE bugfix a day keeps Guido away... | Fredrik Lundh | 2001-09-18 | 3 | -13/+25 |
|
|
* | Fix minor usage and consistency nits. | Fred Drake | 2001-09-18 | 1 | -4/+5 |
|
|
* | All the news that fits, we print. | Guido van Rossum | 2001-09-18 | 1 | -4/+58 |
|
|
* | SF bug #417176 (Martijn Pieters): MultiFile.read() includes CRLF | Guido van Rossum | 2001-09-18 | 1 | -1/+13 |
|
|
* | softspace(): be prepared to catch AttributeError as well as TypeError | Guido van Rossum | 2001-09-18 | 1 | -1/+2 |
|
|
* | This module didn't work at all anymore -- blew up with AttributeError | Tim Peters | 2001-09-18 | 1 | -2/+6 |
|
|
* | Undo some (but not all) of the more lenient acceptance of | Guido van Rossum | 2001-09-18 | 1 | -9/+9 |
|
|
* | Redo the PyMethod attributes using a dir()-friendly approach, creating | Guido van Rossum | 2001-09-18 | 1 | -37/+69 |
|
|
* | - Some tests that check that assignments are not allowed expect this | Guido van Rossum | 2001-09-18 | 1 | -85/+95 |
|
|
* | Sort the headers in PYTHON_HEADERS alphabetically. Add | Guido van Rossum | 2001-09-18 | 1 | -31/+32 |
|
|
* | Whitespace normalization. | Tim Peters | 2001-09-18 | 8 | -21/+18 |
|
|
* | Make test_socketserver require the network resource. | Tim Peters | 2001-09-18 | 2 | -0/+3 |
|
|
* | I don't expect test_socketserver to get skipped on Windows anymore. | Tim Peters | 2001-09-18 | 1 | -1/+0 |
|
|
* | type_new(): Didn't compile anymore, due to change in struct memberlist | Tim Peters | 2001-09-18 | 1 | -1/+1 |
|
|
* | Rework akin to test_threaded_import, so that this can run under regrtest. | Tim Peters | 2001-09-17 | 1 | -7/+8 |
|
|
* | Rewrite function attributes to use the generic routines properly. | Guido van Rossum | 2001-09-17 | 2 | -73/+276 |
|
|