| Commit message (Expand) | Author | Age | Files | Lines |
* | _PyObject_GetDictPtr(): when the offset is negative, always align -- | Guido van Rossum | 2001-09-20 | 1 | -11/+6 |
|
|
* | Implement the changes proposed in patch #413333. unicode(obj) now | Marc-André Lemburg | 2001-09-20 | 1 | -42/+55 |
|
|
* | Patch #435971: UTF-7 codec by Brian Quinlan. | Marc-André Lemburg | 2001-09-20 | 1 | -0/+300 |
|
|
* | SF bug [#463093] File methods need doc strings. | Tim Peters | 2001-09-20 | 1 | -14/+94 |
|
|
* | Patch #462849: Pass Unicode objects to file's .write method. | Martin v. Löwis | 2001-09-19 | 1 | -3/+8 |
|
|
* | Add additional coercion support for "self subtypes" to int, long, | Guido van Rossum | 2001-09-19 | 3 | -1/+22 |
|
|
* | complex_coerce(): add explicit PyComplex_Check() test. Previously, | Guido van Rossum | 2001-09-19 | 1 | -0/+5 |
|
|
* | Hopefully fix 3-way comparisons. This unfortunately adds yet another | Guido van Rossum | 2001-09-18 | 2 | -6/+21 |
|
|
* | Properly repr classes without module names. | Martin v. Löwis | 2001-09-18 | 1 | -1/+1 |
|
|
* | wrap_cmpfunc(): added a safety check for the __cmp__ wrapper. We can | Guido van Rossum | 2001-09-18 | 1 | -0/+9 |
|
|
* | Redo the PyMethod attributes using a dir()-friendly approach, creating | Guido van Rossum | 2001-09-18 | 1 | -37/+69 |
|
|
* | type_new(): Didn't compile anymore, due to change in struct memberlist | Tim Peters | 2001-09-18 | 1 | -1/+1 |
|
|
* | Rewrite function attributes to use the generic routines properly. | Guido van Rossum | 2001-09-17 | 1 | -72/+118 |
|
|
* | PyObject_Dir(): Merge in __members__ and __methods__ too (if they exist, | Tim Peters | 2001-09-17 | 1 | -0/+45 |
|
|
* | merge_class_dict(): Clear the error if __bases__ doesn't exist. | Tim Peters | 2001-09-16 | 1 | -1/+3 |
|
|
* | A fix for SF bug #461546 (bug in long_mul). | Guido van Rossum | 2001-09-15 | 2 | -14/+20 |
|
|
* | 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 |
|
|
* | 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 |
|
|
* | _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 | 1 | -13/+16 |
|
|
* | Get rid of builtin_open() entirely (the C code and docstring, not the | Tim Peters | 2001-09-13 | 1 | -2/+2 |
|
|
* | Now that file objects are subclassable, you can get at the file constructor | Tim Peters | 2001-09-13 | 1 | -0/+8 |
|
|
* | type_call(): Change in policy. The keyword args (if any) are now passed | Tim Peters | 2001-09-13 | 1 | -1/+1 |
|
|
* | based upon a suggestion in c.l.py, this slight expansion of the | Skip Montanaro | 2001-09-13 | 1 | -1/+1 |
|
|
* | SF bug [#460467] file objects should be subclassable. | Tim Peters | 2001-09-13 | 1 | -23/+100 |
|
|
* | Again perhaps the end of [#460020] bug or feature: unicode() and subclasses. | Tim Peters | 2001-09-12 | 2 | -12/+20 |
|
|
* | If interning an instance of a string subclass, intern a real string object | Tim Peters | 2001-09-12 | 1 | -4/+20 |
|
|
* | str_subtype_new, unicode_subtype_new: | Tim Peters | 2001-09-12 | 2 | -15/+26 |
|
|
* | More on bug 460020: disable many optimizations of unicode subclasses. | Tim Peters | 2001-09-12 | 1 | -10/+11 |
|
|
* | More bug 460020: lots of string optimizations inhibited for string | Tim Peters | 2001-09-12 | 1 | -79/+46 |
|
|
* | long_invert(): tiny speed and space optimization. | Tim Peters | 2001-09-11 | 1 | -2/+1 |
|
|
* | More bug 460020. Disable a number of long optimizations for long subclasses. | Tim Peters | 2001-09-11 | 1 | -18/+15 |
|
|
* | More bug 460020: when F is a subclass of float, disable the unary plus | Tim Peters | 2001-09-11 | 1 | -2/+6 |
|
|
* | More bug 460020. When I is a subclass of int, disable the +I(whatever), | Tim Peters | 2001-09-11 | 1 | -10/+10 |
|
|
* | The endless 460020 bug. | Tim Peters | 2001-09-11 | 1 | -6/+9 |
|
|
* | Replace a few places where X->ob_type was compared to &PyXXX_Type with | Guido van Rossum | 2001-09-11 | 2 | -7/+7 |
|
|
* | Possibly the end of SF [#460020] bug or feature: unicode() and subclasses. | Tim Peters | 2001-09-11 | 1 | -4/+12 |
|
|
* | PyUnicode_FromEncodedObject(): Repair memory leak in an error case. | Tim Peters | 2001-09-11 | 1 | -2/+2 |
|
|
* | More on SF bug [#460020] bug or feature: unicode() and subclasses. | Tim Peters | 2001-09-11 | 2 | -2/+8 |
|
|
* | Fix tortured comment -- I must be on drugs today. | Tim Peters | 2001-09-10 | 1 | -2/+2 |
|
|
* | More on SF bug [#460020] bug or feature: unicode() and subclasses. | Tim Peters | 2001-09-10 | 1 | -1/+5 |
|
|
* | More for SF bug [#460020] bug or feature: unicode() and subclasses | Tim Peters | 2001-09-10 | 1 | -1/+5 |
|
|
* | SF bug #460020: bug or feature: unicode() and subclasses. | Tim Peters | 2001-09-10 | 2 | -3/+29 |
|
|
* | _portable_fseek(): | Guido van Rossum | 2001-09-10 | 1 | -0/+6 |
|
|
* | PyObject_Dir(): | Guido van Rossum | 2001-09-10 | 1 | -2/+6 |
|
|
* | Generalize operator.indexOf (PySequence_Index) to work with any | Tim Peters | 2001-09-08 | 3 | -74/+66 |
|
|
* | PyClass_New(): put the extended Don Beaudry hook back in. When one of | Guido van Rossum | 2001-09-07 | 1 | -4/+14 |
|
|