summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Make int, long and float subclassable.Guido van Rossum2001-08-293-14/+111
* Fix super() so that it is usable for static methods (like __new__) as well.Guido van Rossum2001-08-291-8/+27
* Fix a typo in SLOT0 macro for the declaration of cache_str.Guido van Rossum2001-08-281-1/+1
* Finish the previous checkin: also avoid getattr when calling the methodGuido van Rossum2001-08-281-25/+93
* Change in policy: when a slot_tp_xxx function looks for the __xxx__ method,Guido van Rossum2001-08-281-15/+57
* Two improvements suggested by Greg Stein:Barry Warsaw2001-08-271-2/+5
* PyString_FromFormatV: Massage platform %p output to match what gcc does,Tim Peters2001-08-251-0/+8
* getset_init(): the function name in the PyArg_ParseTuple() formatGuido van Rossum2001-08-241-1/+1
* Improve the error message issued when an unbound method is called withGuido van Rossum2001-08-241-3/+49
* repr's converted to using PyString_FromFormat() instead of sprintf'ingBarry Warsaw2001-08-2411-136/+95
* PyString_FromFormat() and PyString_FromFormatV(): Largely ripped fromBarry Warsaw2001-08-241-0/+155
* Add 'super', another new object type with magical properties.Guido van Rossum2001-08-241-0/+155
* Change the getset type to take an optional third function argument:Guido van Rossum2001-08-241-9/+21
* getset_descr_set(): guard against deletion (indicated by a set callGuido van Rossum2001-08-241-1/+4
* slot_tp_descr_get(): guard against NULL obj or type (bug reported byGuido van Rossum2001-08-241-2/+11
* getset_init(): make the arguments optional.Guido van Rossum2001-08-241-3/+11
* float_pow: Put *all* of the burden on the libm pow in normalTim Peters2001-08-231-45/+16
* Add new built-in type 'getset' (PyGetSet_Type).Guido van Rossum2001-08-231-0/+135
* err_ovf(): only raise OverflowError when OverflowWarning was raised.Guido van Rossum2001-08-231-1/+2
* int_pow(): Repair typo when passing on to float pow (the 2nd argument wasTim Peters2001-08-231-1/+1
* Change all case where we used to raise OverflowError to issue aGuido van Rossum2001-08-231-56/+88
* Merge changes from r22a2-branch back into trunk. Also, change patchBarry Warsaw2001-08-221-7/+30
* Address SF bug #442813. The sequence getitem wrappers should doGuido van Rossum2001-08-171-8/+50
* Weak reference support, closing SF bug #451773.Guido van Rossum2001-08-171-21/+51
* Patch #445762: Support --disable-unicodeMartin v. Löwis2001-08-177-6/+94
* type_new(): look for __dynamic__ at the module level (after looking inGuido van Rossum2001-08-171-14/+54
* Fix core dump in repr() of instancemethod whose class==NULL.Guido van Rossum2001-08-171-7/+11
* instance_getattr2(): rewritten to remove unnecessary stuff andGuido van Rossum2001-08-171-24/+13
* Instance methods: allow a NULL value for im_class.Guido van Rossum2001-08-171-2/+2
* type_new(): only defer to the winning metatype if it's different fromGuido van Rossum2001-08-171-8/+12
* classobject.c:instancemethod_descr_get(): when a bound method isGuido van Rossum2001-08-161-0/+5
* module_repr(): Instead of fixing the maximum buf size to 400,Barry Warsaw2001-08-161-6/+18
* Fix object_repr() to include the module (using the same rules asGuido van Rossum2001-08-161-2/+23
* 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