| Commit message (Expand) | Author | Age | Files | Lines |
* | Since we had a bug with multiplication of dynamic long subclasses, add a | Tim Peters | 2001-09-15 | 1 | -1/+6 |
|
|
* | A fix for SF bug #461546 (bug in long_mul). | Guido van Rossum | 2001-09-15 | 1 | -0/+13 |
|
|
* | The 'p' (Pascal string) pack code acts unreasonably when the string size | Tim Peters | 2001-09-15 | 1 | -0/+25 |
|
|
* | Add code generator for yield stmt | Jeremy Hylton | 2001-09-14 | 1 | -0/+5 |
|
|
* | limit prefix test for lambda | Jeremy Hylton | 2001-09-14 | 1 | -1/+1 |
|
|
* | del no longer necessary now that new module is gone | Jeremy Hylton | 2001-09-14 | 1 | -2/+0 |
|
|
* | Various sundry changes for 2.2 compatibility | Jeremy Hylton | 2001-09-14 | 2 | -137/+94 |
|
|
* | The object-being sliced in an assignment to a slice is referenced, not | Jeremy Hylton | 2001-09-14 | 1 | -2/+2 |
|
|
* | the new new doesn't define CO_xxx as the old new did | Jeremy Hylton | 2001-09-14 | 1 | -1/+9 |
|
|
* | the names attribute of Global is not a node | Jeremy Hylton | 2001-09-14 | 1 | -1/+1 |
|
|
* | SF patch #461413 (Gerhard Häring): Add STARTTLS feature to smtplib | Guido van Rossum | 2001-09-14 | 1 | -2/+54 |
|
|
* | Changed the dict implementation to take "string shortcuts" only when | Tim Peters | 2001-09-14 | 1 | -2/+36 |
|
|
* | Now that file objects are subclassable, you can get at the file constructor | Tim Peters | 2001-09-13 | 2 | -2/+44 |
|
|
* | Use the keyword form of file() instead of open() to create TESTFN. | Tim Peters | 2001-09-13 | 1 | -2/+2 |
|
|
* | Added simple tests of keyword arguments in the basic type constructors. | Tim Peters | 2001-09-13 | 1 | -0/+24 |
|
|
* | type_call(): Change in policy. The keyword args (if any) are now passed | Tim Peters | 2001-09-13 | 1 | -2/+13 |
|
|
* | SF bug [#460467] file objects should be subclassable. | Tim Peters | 2001-09-13 | 2 | -7/+49 |
|
|
* | SF bug #461073: mailbox __iter__ bug, by Andrew Dalke. | Guido van Rossum | 2001-09-13 | 1 | -3/+3 |
|
|
* | Added subclass equality tests. Almost all of these are commented out now, | Tim Peters | 2001-09-12 | 1 | -0/+11 |
|
|
* | Again perhaps the end of [#460020] bug or feature: unicode() and subclasses. | Tim Peters | 2001-09-12 | 1 | -0/+24 |
|
|
* | If interning an instance of a string subclass, intern a real string object | Tim Peters | 2001-09-12 | 1 | -0/+14 |
|
|
* | str_subtype_new, unicode_subtype_new: | Tim Peters | 2001-09-12 | 1 | -0/+10 |
|
|
* | More on bug 460020: disable many optimizations of unicode subclasses. | Tim Peters | 2001-09-12 | 1 | -2/+55 |
|
|
* | More bug 460020: lots of string optimizations inhibited for string | Tim Peters | 2001-09-12 | 1 | -2/+25 |
|
|
* | More bug 460020. Disable a number of long optimizations for long subclasses. | Tim Peters | 2001-09-11 | 1 | -0/+24 |
|
|
* | More bug 460020: when F is a subclass of float, disable the unary plus | Tim Peters | 2001-09-11 | 1 | -0/+1 |
|
|
* | More bug 460020. When I is a subclass of int, disable the +I(whatever), | Tim Peters | 2001-09-11 | 1 | -0/+5 |
|
|
* | The endless 460020 bug. | Tim Peters | 2001-09-11 | 1 | -0/+9 |
|
|
* | Add login() method and SMTPAuthenticationError exception. SF patch | Guido van Rossum | 2001-09-11 | 1 | -3/+93 |
|
|
* | Test for new hmac module. | Guido van Rossum | 2001-09-11 | 1 | -0/+2 |
|
|
* | HMAC algorithm as described by RFC 2104, by Gerhard Häring (SF patch | Guido van Rossum | 2001-09-11 | 1 | -0/+110 |
|
|
* | Patch #460554: Properly test for tuples. | Martin v. Löwis | 2001-09-11 | 1 | -1/+1 |
|
|
* | Fix the second reincarnation of SF #456395 -- failure on IRIX. This | Guido van Rossum | 2001-09-11 | 1 | -6/+2 |
|
|
* | Restore the comparisons that I initially put in the test but that Tim | Guido van Rossum | 2001-09-11 | 1 | -6/+6 |
|
|
* | Possibly the end of SF [#460020] bug or feature: unicode() and subclasses. | Tim Peters | 2001-09-11 | 1 | -2/+2 |
|
|
* | Added another test of str() applied to a string subclass instance, | Tim Peters | 2001-09-11 | 1 | -0/+4 |
|
|
* | More on SF bug [#460020] bug or feature: unicode() and subclasses. | Tim Peters | 2001-09-11 | 1 | -1/+1 |
|
|
* | More on SF bug [#460020] bug or feature: unicode() and subclasses. | Tim Peters | 2001-09-10 | 1 | -1/+1 |
|
|
* | test_dir(): Add tests for dir(i) where i is a module subclass. | Tim Peters | 2001-09-10 | 1 | -0/+23 |
|
|
* | more xmlrpclib tweaks: fixed repr(Fault()); enable UTF-8 parsing in | Fredrik Lundh | 2001-09-10 | 1 | -12/+17 |
|
|
* | More for SF bug [#460020] bug or feature: unicode() and subclasses | Tim Peters | 2001-09-10 | 1 | -1/+1 |
|
|
* | SF bug #460020: bug or feature: unicode() and subclasses. | Tim Peters | 2001-09-10 | 1 | -0/+21 |
|
|
* | sync with pythonware codebase: much faster import (doesn't import | Fredrik Lundh | 2001-09-10 | 1 | -65/+70 |
|
|
* | Remove two XXX comments that have been resolved. | Guido van Rossum | 2001-09-10 | 1 | -2/+0 |
|
|
* | Move the global variables 'size' and 'name' to the top -- these are | Guido van Rossum | 2001-09-10 | 1 | -5/+5 |
|
|
* | Change the criteria for skipping the test. | Guido van Rossum | 2001-09-10 | 1 | -19/+22 |
|
|
* | Test the failed-unicode-decoding bug in PyArg_ParseTuple(). | Jeremy Hylton | 2001-09-10 | 1 | -0/+24 |
|
|
* | Repair late-night doc typos. | Tim Peters | 2001-09-10 | 2 | -3/+3 |
|
|
* | Teach regrtest how to pass on doctest failure msgs. This is done via a | Tim Peters | 2001-09-09 | 8 | -27/+95 |
|
|
* | Force "test." into the start of the module name, inherited by class and | Tim Peters | 2001-09-09 | 1 | -17/+11 |
|
|