summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Patch #427190: Implement and use METH_NOARGS and METH_O.Martin v. Löwis2001-08-1611-383/+223
* Fix SF bug #442501: calculate __module__ properly.Guido van Rossum2001-08-161-5/+71
* Subtle change to make None.__class__ work:Guido van Rossum2001-08-162-4/+2
* Add a function _Py_ReadyTypes() which initializes various and sundryGuido van Rossum2001-08-161-4/+21
* Update to MvL's patch #424475 to avoid returning 2 when tp_compareGuido van Rossum2001-08-161-2/+5
* - Another big step in the right direction. All the overridableGuido van Rossum2001-08-151-47/+226
* PyMethod_Type: add a tp_descr_get slot function to ensure properGuido van Rossum2001-08-151-1/+19
* Non-function fields, like tp_dictoffset and tp_weaklistoffset, shouldGuido van Rossum2001-08-141-5/+22
* func_getattro(), func_setattro(): Implement the new semantics forBarry Warsaw2001-08-141-8/+22
* Remove much dead code from ceval.cJeremy Hylton2001-08-121-35/+35
* Make dynamic types work as intended. Or at least more so.Guido van Rossum2001-08-121-22/+35
* Temporary stop-gap fix for dynamic classes, so they pass the test.Guido van Rossum2001-08-121-1/+6
* - Big changes to fix SF bug #442833 (a nasty multiple inheritanceGuido van Rossum2001-08-101-91/+122
* Add PyDict_Merge(a, b, override):Guido van Rossum2001-08-101-2/+18
* Change PyType_Ready() to use the READY and READYING flags. This makesGuido van Rossum2001-08-101-13/+26
* SF patch #438013 Remove 2-byte Py_UCS2 assumptionsTim Peters2001-08-091-76/+90
* Sigh. Strengthen the resriction of the previous checkin: tp_new isGuido van Rossum2001-08-091-1/+2
* Thinking back to the 2.22 revision, I didn't like what I did there oneGuido van Rossum2001-08-091-13/+4
* Apply anonymous SF patch #441229.Guido van Rossum2001-08-091-0/+6
* Proper support for binary operators, including true division and floorGuido van Rossum2001-08-081-136/+199
* Removed extraneous semicolons that caused a gazzilion "empty declaration" war...Jack Jansen2001-08-081-49/+49
* Implement PEP 238 in its (almost) full glory.Guido van Rossum2001-08-086-24/+131
* - Rename PyType_InitDict() to PyType_Ready().Guido van Rossum2001-08-072-9/+9
* Cosmetics:Guido van Rossum2001-08-071-10/+65
* Remove spurious "closed" attribute definition from the memberlistGuido van Rossum2001-08-061-1/+0
* A totally new way to do the __new__ wrapper. This should address theGuido van Rossum2001-08-061-34/+45
* Fix SF #442791 (revisited): No __delitem__ wrapper was defined.Guido van Rossum2001-08-021-0/+35
* Fix the test_weakref.py failure. Introduced by resolving "a conflict"Tim Peters2001-08-021-7/+0
* Merge of descr-branch back into trunk.Tim Peters2001-08-0224-721/+5012
* Add _PyUnicode_AsDefaultEncodedString to unicodeobject.h.Jeremy Hylton2001-07-303-24/+0
* SF bug #444510: int() should guarantee truncation.Tim Peters2001-07-261-7/+13
* Fix for bug #444493: u'\U00010001' segfaults with current CVS onMarc-André Lemburg2001-07-251-6/+21
* Make the unicode-escape and the UTF-16 codecs handle surrogatesMarc-André Lemburg2001-07-201-24/+46
* #ifdef out generation of \U escapes unless Py_UNICODE_WIDE. ThisGuido van Rossum2001-07-201-0/+2
* Kill more warnings from the SGI compiler.Fred Drake2001-07-192-2/+2
* Python.h: Don't attempt to redefine NDEBUG if it's already defined.Tim Peters2001-07-151-1/+0
* long_format: Simplify the overly elaborate base-is-a-power-of-2 code.Tim Peters2001-07-151-28/+16
* _Py_GetObjects(): GCC suggests to add () around && within || for someGuido van Rossum2001-07-141-1/+1
* divrem1 & long_format: found a clean way to factor divrem1 so thatTim Peters2001-07-141-28/+54
* long_format(): Simplify new code a bit.Tim Peters2001-07-141-5/+8
* long_format(): Easy speedup for output bases that aren't a power of 2 (inTim Peters2001-07-131-9/+26
* GC for method objects.Neil Schemenauer2001-07-121-11/+31
* GC for iterator objects.Neil Schemenauer2001-07-121-6/+29
* GC for frame objects.Neil Schemenauer2001-07-121-12/+101
* On long to the negative long power, let float handle it instead ofGuido van Rossum2001-07-121-8/+7
* On int to the negative integral power, let float handle it instead ofGuido van Rossum2001-07-121-7/+5
* Re-add 'advanced' xrange features, adding DeprecationWarnings as discussedThomas Wouters2001-07-091-16/+219
* SF bug #439104: Tuple richcompares has code-typo.Tim Peters2001-07-061-1/+1
* Rip out the fancy behaviors of xrange that nobody uses: repeat, slice,Guido van Rossum2001-07-051-222/+15
* removed "register const" from scalar arguments to the unicodeFredrik Lundh2001-06-271-20/+20