| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix typo | Neal Norwitz | 2002-05-31 | 1 | -1/+1 |
|
|
* | Implement the intention of SF patch 472523 (but coded differently). | Guido van Rossum | 2002-05-31 | 1 | -15/+67 |
|
|
* | - A new type object, 'string', is added. This is a common base type | Guido van Rossum | 2002-05-24 | 1 | -0/+3 |
|
|
* | Jim Fulton reported a segfault in dir(). A heavily proxied object | Guido van Rossum | 2002-05-13 | 1 | -7/+15 |
|
|
* | PyNumber_CoerceEx: this took a shortcut (not doing anything) when the | Guido van Rossum | 2002-04-26 | 1 | -1/+4 |
|
|
* | First stab at rationalizing the PyMem_ API. Mixing PyObject_xyz with | Tim Peters | 2002-04-12 | 1 | -6/+1 |
|
|
* | Move PyObject_Malloc and PyObject_Free to obmalloc.c. | Neil Schemenauer | 2002-04-12 | 1 | -21/+2 |
|
|
* | Add the 'bool' type and its values 'False' and 'True', as described in | Guido van Rossum | 2002-04-03 | 1 | -0/+3 |
|
|
* | If the GC is enabled then don't use the ob_type pointer to create a list | Neil Schemenauer | 2002-03-29 | 1 | -1/+12 |
|
|
* | Build obmalloc.c directly instead of #include'ing from object.c. | Tim Peters | 2002-03-23 | 1 | -43/+0 |
|
|
* | Add pymalloc object memory management functions. These must be | Neil Schemenauer | 2002-03-22 | 1 | -0/+24 |
|
|
* | Drop the PyCore_* memory API. | Neil Schemenauer | 2002-03-18 | 1 | -1/+16 |
|
|
* | Patch #517521: Consider byte strings before Unicode strings | Martin v. Löwis | 2002-03-15 | 1 | -52/+60 |
|
|
* | Whether platform malloc(0) returns NULL has nothing to do with whether | Tim Peters | 2002-03-02 | 1 | -5/+2 |
|
|
* | SF patch 514641 (Naofumi Honda) - Negative ob_size of LongObjects | Guido van Rossum | 2002-03-01 | 1 | -2/+8 |
|
|
* | PyObject_Generic{Get,Set}Attr(): ensure that the attribute name is a | Guido van Rossum | 2001-12-04 | 1 | -20/+72 |
|
|
* | Rehabilitated the fast-path richcmp code, and sped it up. It wasn't | Tim Peters | 2001-11-04 | 1 | -31/+35 |
|
|
* | No code change -- just trying to document the return conditions for all | Tim Peters | 2001-11-04 | 1 | -17/+43 |
|
|
* | cleanup indentation | Jeremy Hylton | 2001-10-22 | 1 | -1/+1 |
|
|
* | SF patch #470578: Fixes to synchronize unicode() and str() | Guido van Rossum | 2001-10-19 | 1 | -16/+27 |
|
|
* | SF bug [#468061] __str__ ignored in str subclass. | Tim Peters | 2001-10-16 | 1 | -6/+0 |
|
|
* | Guido suggests, and I agree, to insist that SIZEOF_VOID_P be a power of 2. | Tim Peters | 2001-10-07 | 1 | -5/+3 |
|
|
* | _PyObject_VAR_SIZE: always round up to a multiple-of-pointer-size value. | Tim Peters | 2001-10-06 | 1 | -18/+11 |
|
|
* | _PyObject_GetDictPtr(): | Tim Peters | 2001-10-06 | 1 | -8/+12 |
|
|
* | PyObject_ClearWeakRefs() is now a real function instead of a function pointer; | Fred Drake | 2001-10-05 | 1 | -15/+0 |
|
|
* | Merge branch changes (coercion, rich comparisons) into trunk. | Guido van Rossum | 2001-09-27 | 1 | -0/+8 |
|
|
* | _PyObject_GetDictPtr(): when the offset is negative, always align -- | Guido van Rossum | 2001-09-20 | 1 | -11/+6 |
|
|
* | Hopefully fix 3-way comparisons. This unfortunately adds yet another | Guido van Rossum | 2001-09-18 | 1 | -1/+15 |
|
|
* | 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 |
|
|
* | _PyObject_Dump(): print the type of the object. This is by far the | Guido van Rossum | 2001-09-14 | 1 | -2/+8 |
|
|
* | More on SF bug [#460020] bug or feature: unicode() and subclasses. | Tim Peters | 2001-09-11 | 1 | -1/+7 |
|
|
* | PyObject_Dir(): | Guido van Rossum | 2001-09-10 | 1 | -2/+6 |
|
|
* | At Guido's suggestion, here's a new C API function, PyObject_Dir(), like | Tim Peters | 2001-09-04 | 1 | -0/+145 |
|
|
* | Add warning mode for classic division, almost exactly as specified in | Guido van Rossum | 2001-08-31 | 1 | -0/+2 |
|
|
* | PyObject_Repr(): add missing ">" back at end of format string: "<%s | Guido van Rossum | 2001-08-30 | 1 | -1/+1 |
|
|
* | Remove GC related code. It lives in gcmodule now. | Neil Schemenauer | 2001-08-29 | 1 | -26/+1 |
|
|
* | repr's converted to using PyString_FromFormat() instead of sprintf'ing | Barry Warsaw | 2001-08-24 | 1 | -6/+4 |
|
|
* | Patch #445762: Support --disable-unicode | Martin v. Löwis | 2001-08-17 | 1 | -1/+15 |
|
|
* | Add a function _Py_ReadyTypes() which initializes various and sundry | Guido van Rossum | 2001-08-16 | 1 | -4/+21 |
|
|
* | Update to MvL's patch #424475 to avoid returning 2 when tp_compare | Guido van Rossum | 2001-08-16 | 1 | -2/+5 |
|
|
* | - Rename PyType_InitDict() to PyType_Ready(). | Guido van Rossum | 2001-08-07 | 1 | -2/+2 |
|
|
* | Merge of descr-branch back into trunk. | Tim Peters | 2001-08-02 | 1 | -83/+210 |
|
|
* | Add _PyUnicode_AsDefaultEncodedString to unicodeobject.h. | Jeremy Hylton | 2001-07-30 | 1 | -5/+0 |
|
|
* | _Py_GetObjects(): GCC suggests to add () around && within || for some | Guido van Rossum | 2001-07-14 | 1 | -1/+1 |
|
|
* | Patch #424475: Speed-up tp_compare usage, by special-casing the common | Martin v. Löwis | 2001-06-09 | 1 | -20/+49 |
|
|
* | Cosmetic: code under "else" clause was missing indent. | Tim Peters | 2001-05-11 | 1 | -1/+1 |
|
|
* | SF bug #422108 - Error in rich comparisons. | Tim Peters | 2001-05-07 | 1 | -1/+7 |
|
|
* | Make 'x in y' and 'x not in y' (PySequence_Contains) play nice w/ iterators. | Tim Peters | 2001-05-05 | 1 | -0/+1 |
|
|
* | The weakref support in PyObject_InitVar() as well; this should have come out | Fred Drake | 2001-05-03 | 1 | -4/+0 |
|
|