| Commit message (Expand) | Author | Age | Files | Lines |
* | slot_sq_length(): squash a leak. | Guido van Rossum | 2001-10-01 | 1 | -1/+4 |
|
|
* | slot_tp_new(): newargs was leaking. | Guido van Rossum | 2001-10-01 | 1 | -0/+1 |
|
|
* | Fix typo found by doerwalter. | Guido van Rossum | 2001-10-01 | 1 | -1/+1 |
|
|
* | SF bug [#466173] unpack TypeError unclear | Tim Peters | 2001-09-30 | 3 | -3/+3 |
|
|
* | SF [#466125] PyLong_AsLongLong works for any integer. | Tim Peters | 2001-09-30 | 1 | -1/+7 |
|
|
* | The changes to ternary_op could cause a core dump. Fix this, and | Guido van Rossum | 2001-09-29 | 1 | -55/+44 |
|
|
* | It's a fact: for binary operators, *under certain circumstances*, | Guido van Rossum | 2001-09-28 | 1 | -28/+48 |
|
|
* | Ouch. The wrapper for __rpow__ was the same as for __pow__, resulting | Guido van Rossum | 2001-09-28 | 1 | -1/+15 |
|
|
* | Merge branch changes (coercion, rich comparisons) into trunk. | Guido van Rossum | 2001-09-27 | 4 | -11/+106 |
|
|
* | add_operators(): the __floordiv__ and __truediv__ descriptors (and | Guido van Rossum | 2001-09-25 | 1 | -0/+10 |
|
|
* | - Provisional support for pickling new-style objects. (*) | Guido van Rossum | 2001-09-25 | 1 | -11/+50 |
|
|
* | Change repr() of a new-style class to say <class 'ClassName'> rather | Guido van Rossum | 2001-09-25 | 1 | -4/+11 |
|
|
* | Make __class__ assignment possible, when the object structures are the | Guido van Rossum | 2001-09-25 | 1 | -4/+83 |
|
|
* | Make properties discoverable from Python: | Tim Peters | 2001-09-24 | 1 | -25/+56 |
|
|
* | Another comparison patch-up: comparing a type with a dynamic metatype | Guido van Rossum | 2001-09-24 | 1 | -1/+2 |
|
|
* | Do the same thing to complex that I did to str: the rich comparison | Guido van Rossum | 2001-09-24 | 1 | -7/+10 |
|
|
* | Change string comparison so that it applies even when one (or both) | Guido van Rossum | 2001-09-24 | 1 | -3/+4 |
|
|
* | Fix the baffler that Tim reported: sometimes the repr() of an object | Guido van Rossum | 2001-09-24 | 1 | -2/+2 |
|
|
* | Generalize file.writelines() to allow iterable objects. | Tim Peters | 2001-09-23 | 1 | -31/+31 |
|
|
* | Add the __getattr__ hook back. The rules are now: | Guido van Rossum | 2001-09-21 | 1 | -0/+39 |
|
|
* | Change the name of the __getattr__ special method for new-style | Guido van Rossum | 2001-09-21 | 1 | -4/+4 |
|
|
* | Fix a bug in rendering of \\ by repr() -- it rendered as \\\ instead | Guido van Rossum | 2001-09-21 | 1 | -0/+1 |
|
|
* | Add optional docstrings to getset descriptors. Fortunately, there's | Guido van Rossum | 2001-09-20 | 7 | -19/+34 |
|
|
* | Add optional docstrings to member descriptors. For backwards | Guido van Rossum | 2001-09-20 | 9 | -34/+57 |
|
|
* | Fix Unicode .join() method to raise a TypeError for sequence | Marc-André Lemburg | 2001-09-20 | 1 | -1/+11 |
|
|
* | _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 |
|
|