summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* - 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
* use Py_UNICODE_WIDE instead of USE_UCS4_STORAGE and Py_UNICODE_SIZEFredrik Lundh2001-06-272-7/+7
* Encode surrogates in UTF-8 even for a wide Py_UNICODE.Martin v. Löwis2001-06-272-15/+39
* When decoding UTF-16, don't assume that the buffer is in native endiannessMartin v. Löwis2001-06-261-4/+4
* Support using UCS-4 as the Py_UNICODE type:Martin v. Löwis2001-06-261-30/+89
* more unicode tweaks: fix unicodectype for sizeof(Py_UNICODE) >Fredrik Lundh2001-06-261-2/+3
* dict_update(): Generalize this method so {}.update() accepts anyBarry Warsaw2001-06-261-17/+70
* experimental UCS-4 support: added USE_UCS4_STORAGE define toFredrik Lundh2001-06-261-0/+2
* experimental UCS-4 support: made compare a bit more robust, in caseFredrik Lundh2001-06-261-11/+14
* experimental UCS-4 support: don't assume that MS_WIN32 impliesFredrik Lundh2001-06-261-2/+2
* PyFrameObject: rename f_stackbottom to f_stacktop, since it points toTim Peters2001-06-231-3/+5
* Merging the gen-branch into the main line, at Guido's direction. Yay!Tim Peters2001-06-181-0/+6
* SF bug 434186: 0x80000000/2 != 0x80000000>>1Tim Peters2001-06-181-23/+17