| Commit message (Expand) | Author | Age | Files | Lines |
* | merge_class_dict(): Clear the error if __bases__ doesn't exist. | Tim Peters | 2001-09-16 | 1 | -1/+3 |
|
|
* | In a world with a growing number of subclassable types, replace | Tim Peters | 2001-09-16 | 1 | -10/+8 |
|
|
* | Improve handling of docstrings. I had feared this was a case of | Tim Peters | 2001-09-16 | 1 | -5/+10 |
|
|
* | Fixed typo in new 'p' description. | Tim Peters | 2001-09-15 | 1 | -1/+1 |
|
|
* | SF bug [#461674] struct 'p' format doesn't work (maybe) | Tim Peters | 2001-09-15 | 1 | -7/+11 |
|
|
* | 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 | 3 | -14/+33 |
|
|
* | The 'p' (Pascal string) pack code acts unreasonably when the string size | Tim Peters | 2001-09-15 | 2 | -0/+27 |
|
|
* | Add code generator for yield stmt | Jeremy Hylton | 2001-09-14 | 2 | -0/+10 |
|
|
* | 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 | 2 | -4/+0 |
|
|
* | Various sundry changes for 2.2 compatibility | Jeremy Hylton | 2001-09-14 | 4 | -274/+188 |
|
|
* | The object-being sliced in an assignment to a slice is referenced, not | Jeremy Hylton | 2001-09-14 | 2 | -4/+4 |
|
|
* | the new new doesn't define CO_xxx as the old new did | Jeremy Hylton | 2001-09-14 | 2 | -2/+18 |
|
|
* | the names attribute of Global is not a node | Jeremy Hylton | 2001-09-14 | 4 | -4/+4 |
|
|
* | Update the warning about transporting marshals across boxes with different | Tim Peters | 2001-09-14 | 1 | -13/+8 |
|
|
* | Supply code objects a new-style tp_members slot and tp_getattr impl. | Jeremy Hylton | 2001-09-14 | 1 | -16/+34 |
|
|
* | tp_new_wrapper(): A subtle change in the check for safe use. | Guido van Rossum | 2001-09-14 | 1 | -1/+1 |
|
|
* | Add call_maybe(): a variant of call_method() that returns | Guido van Rossum | 2001-09-14 | 1 | -10/+67 |
|
|
* | Markup adjustments for consistency. | Fred Drake | 2001-09-14 | 1 | -5/+6 |
|
|
* | call_method(): | Guido van Rossum | 2001-09-14 | 1 | -36/+27 |
|
|
* | PyObject_CallObject(): this may as well call PyEval_CallObject() | Guido van Rossum | 2001-09-14 | 1 | -16/+1 |
|
|
* | Mention SMTP additions and hmac module. | Guido van Rossum | 2001-09-14 | 1 | -0/+6 |
|
|
* | Add support for SMTP TLS | Andrew M. Kuchling | 2001-09-14 | 1 | -0/+5 |
|
|
* | SF patch #461413 (Gerhard Häring): Add STARTTLS feature to smtplib | Guido van Rossum | 2001-09-14 | 2 | -2/+62 |
|
|
* | _PyObject_Dump(): print the type of the object. This is by far the | Guido van Rossum | 2001-09-14 | 1 | -2/+8 |
|
|
* | The end of [#460467] file objects should be subclassable. | Tim Peters | 2001-09-14 | 1 | -30/+63 |
|
|
* | Changed the dict implementation to take "string shortcuts" only when | Tim Peters | 2001-09-14 | 2 | -15/+52 |
|
|
* | Get rid of builtin_open() entirely (the C code and docstring, not the | Tim Peters | 2001-09-13 | 2 | -22/+5 |
|
|
* | _PyBuiltin_Init(): For clarity, macroize this purely repetitive code. | Tim Peters | 2001-09-13 | 1 | -49/+25 |
|
|
* | Now that file objects are subclassable, you can get at the file constructor | Tim Peters | 2001-09-13 | 3 | -2/+52 |
|
|
* | 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 | 2 | -3/+14 |
|
|
* | based upon a suggestion in c.l.py, this slight expansion of the | Skip Montanaro | 2001-09-13 | 1 | -1/+1 |
|
|
* | Admit that we'll never add the args for a "call" event to the profile | Fred Drake | 2001-09-13 | 2 | -11/+9 |
|
|
* | Comment tweak: point to Robin Dunn's pybsddb project on SourceForge. | Greg Ward | 2001-09-13 | 1 | -2/+2 |
|
|
* | SF bug [#460467] file objects should be subclassable. | Tim Peters | 2001-09-13 | 7 | -53/+170 |
|
|
* | SF bug #461073: mailbox __iter__ bug, by Andrew Dalke. | Guido van Rossum | 2001-09-13 | 1 | -3/+3 |
|
|
* | Added items about significant subclass bugfixes. | Tim Peters | 2001-09-12 | 1 | -0/+10 |
|
|
* | Added subclass equality tests. Almost all of these are commented out now, | Tim Peters | 2001-09-12 | 1 | -0/+11 |
|
|
* | build_class(): one more (hopefully the last) step on the way to | Guido van Rossum | 2001-09-12 | 1 | -14/+21 |
|
|
* | Again perhaps the end of [#460020] bug or feature: unicode() and subclasses. | Tim Peters | 2001-09-12 | 4 | -12/+45 |
|
|
* | When MAKEFLAGS contains '-s', invoke setup.py with '-q', to silence | Guido van Rossum | 2001-09-12 | 1 | -1/+4 |
|
|
* | If interning an instance of a string subclass, intern a real string object | Tim Peters | 2001-09-12 | 2 | -4/+34 |
|
|
* | str_subtype_new, unicode_subtype_new: | Tim Peters | 2001-09-12 | 3 | -15/+36 |
|
|
* | More on bug 460020: disable many optimizations of unicode subclasses. | Tim Peters | 2001-09-12 | 2 | -12/+66 |
|
|
* | More bug 460020: lots of string optimizations inhibited for string | Tim Peters | 2001-09-12 | 2 | -81/+71 |
|
|
* | Add missing "}". | Fred Drake | 2001-09-12 | 1 | -1/+1 |
|
|
* | long_invert(): tiny speed and space optimization. | Tim Peters | 2001-09-11 | 1 | -2/+1 |
|
|