| Commit message (Expand) | Author | Age | Files | Lines |
| * | - 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 |
| * | Remove unnecessary intialization for the case of weakly-referencable objects; | Fred Drake | 2001-05-03 | 1 | -4/+0 |
| * | Printing objects to a real file still wasn't done right: if the | Guido van Rossum | 2001-05-01 | 1 | -32/+14 |
| * | (Adding this to the trunk as well.) | Guido van Rossum | 2001-04-27 | 1 | -1/+4 |
| * | Fixed ref count bug. Patch #411191. Found by Walter Dörwald. | Marc-André Lemburg | 2001-03-25 | 1 | -1/+3 |
| * | Add Vladimir Marangozov's object allocator. It is disabled by default. This | Neil Schemenauer | 2001-02-27 | 1 | -0/+4 |
| * | The return value from PyObject_ClearWeakRefs() is no longer meaningful, | Fred Drake | 2001-02-26 | 1 | -3/+3 |
| * | _PyObject_Dump(): If argument is NULL, print "NULL" instead of | Barry Warsaw | 2001-02-22 | 1 | -3/+7 |
| * | In try_3way_to_rich_compare(), swap the call to default_3way_compare() | Guido van Rossum | 2001-02-22 | 1 | -2/+2 |
| * | PEP 205, Weak References -- initial checkin. | Fred Drake | 2001-02-01 | 1 | -0/+23 |
| * | Check the Py_TPFLAGS_HAVE_RICHCOMPARE flag before using the | Guido van Rossum | 2001-01-24 | 1 | -7/+9 |
| * | PyObject_Dump() -> _PyObject_Dump() | Barry Warsaw | 2001-01-24 | 1 | -3/+3 |
| * | PyObject_Dump(): Use %p format to print the address of the pointer. | Barry Warsaw | 2001-01-23 | 1 | -2/+4 |
| * | A few miscellaneous helpers. | Barry Warsaw | 2001-01-23 | 1 | -2/+26 |
| * | New special case in comparisons: None is smaller than any other object | Guido van Rossum | 2001-01-22 | 1 | -0/+6 |
| * | Once again, numeric-smelling objects compare smaller than non-numeric | Guido van Rossum | 2001-01-22 | 1 | -2/+17 |
| * | Remove a smelly export. | Neil Schemenauer | 2001-01-21 | 1 | -1/+1 |
| * | Tim chastens: | Barry Warsaw | 2001-01-20 | 1 | -1/+5 |
| * | default_3way_compare(): When comparing the pointers, they must be cast | Barry Warsaw | 2001-01-20 | 1 | -2/+2 |
| * | Rich comparisons fallout: PyObject_Hash() should check for both | Guido van Rossum | 2001-01-18 | 1 | -1/+1 |
| * | Changes to recursive-object comparisons, having to do with a test case | Guido van Rossum | 2001-01-18 | 1 | -107/+137 |
| * | Deal properly (?) with comparing recursive datastructures. | Guido van Rossum | 2001-01-17 | 1 | -62/+69 |
| * | This patch adds a new builtin unistr() which behaves like str() | Marc-André Lemburg | 2001-01-17 | 1 | -0/+47 |
| * | Rich comparisons. Refactored internal routine do_cmp() and added APIs | Guido van Rossum | 2001-01-17 | 1 | -74/+293 |
| * | Changes for PEP 208. PyObject_Compare has been rewritten. Instances no | Neil Schemenauer | 2001-01-04 | 1 | -118/+139 |
| * | Ka-Ping Yee <ping@lfw.org>: | Fred Drake | 2000-10-24 | 1 | -2/+2 |
| * | Rationalize use of limits.h, moving the inclusion to Python.h. | Fred Drake | 2000-09-26 | 1 | -3/+0 |
| * | As suggested by Toby Dickenson, setting ob_type to NULL in | Guido van Rossum | 2000-09-21 | 1 | -4/+0 |
| * | PyObject_SetAttr() and PyObject_GetAttr() now also accept Unicode | Marc-André Lemburg | 2000-09-18 | 1 | -11/+37 |
| * | REMOVED all CWI, CNRI and BeOpen copyright markings. | Guido van Rossum | 2000-09-01 | 1 | -9/+0 |
| * | PyOS_CheckStack() returns 1 when failing, not -1. | Guido van Rossum | 2000-08-30 | 1 | -1/+1 |
| * | Added PyOS_CheckStack call to PyObject_Compare | Jack Jansen | 2000-08-22 | 1 | -0/+13 |
| * | make_pair(): When comparing the pointers, they must be cast to integer | Barry Warsaw | 2000-08-18 | 1 | -2/+6 |
| * | Updated comment | Andrew M. Kuchling | 2000-08-16 | 1 | -1/+1 |
| * | Fix for http://sourceforge.net/bugs/?func=detailbug&bug_id=111866&group_id=5470. | Tim Peters | 2000-08-15 | 1 | -15/+55 |
| * | Fix missing decrements of the recursive counter in PyObject_Compare(). | Vladimir Marangozov | 2000-08-11 | 1 | -6/+12 |
| * | Removing warnings found by gcc -Wall | Moshe Zadka | 2000-08-04 | 1 | -0/+4 |
| * | merge Include/my*.h into Include/pyport.h | Peter Schneider-Kamp | 2000-07-31 | 1 | -2/+0 |
| * | Use 'void' directly instead of the ANY #define, now that all code is ANSI C. | Thomas Wouters | 2000-07-25 | 1 | -8/+8 |
| * | Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either | Thomas Wouters | 2000-07-16 | 1 | -1/+1 |
| * | Propagate the current exception in get_inprogress_dict() -- it doesn't | Vladimir Marangozov | 2000-07-12 | 1 | -1/+0 |
| * | change abstract size functions PySequence_Size &c. | Jeremy Hylton | 2000-07-12 | 1 | -1/+1 |