summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Add nb_remainder (i.e. __mod__) slot to unicode type. Fixes SF bug #615506.Neil Schemenauer2002-11-181-2/+21
* Add nb_remainder (i.e. __mod__) slot to str type. Fixes SF bug #615506.Neil Schemenauer2002-11-181-2/+22
* Improve exception message raised by PyFloat_AsDouble if the object does notNeil Schemenauer2002-11-181-2/+6
* str and unicode objects now have a __mod__ slot so don't special case them inNeil Schemenauer2002-11-181-6/+0
* Remove _Py_ResetReferences. Fixes bug #529750 "Circular reference makesNeil Schemenauer2002-11-171-7/+0
* Repaired illegal syntax most compilers probably let slide (but MSVCTim Peters2002-11-141-1/+1
* Use the new C3 MRO algorithm, implemented by Samuele Pedroni (SF patchGuido van Rossum2002-11-141-74/+105
* Fix SF # 635969, No error "not all arguments converted"Neal Norwitz2002-11-122-2/+4
* SF patch 637176: list.sort crasherTim Peters2002-11-121-96/+29
* Restore attribute access so that the following work again:Raymond Hettinger2002-11-071-1/+1
* Make int("...") return a long if an int would overflow.Walter Dörwald2002-11-062-19/+23
* Handle really big steps in extended slices.Michael W. Hudson2002-11-061-5/+2
* Use PyOS_snprintf() instead of sprintf and wrap the long lineNeal Norwitz2002-11-051-2/+4
* Use PyList_CheckExact and PyTuple_CheckExact for checking whetherMichael W. Hudson2002-11-051-1/+1
* This is Alex Martelli's patchMichael W. Hudson2002-11-051-9/+12
* Some days, I think my comment ofMichael W. Hudson2002-11-051-6/+12
* Since properties are supported here, is possible thatGuido van Rossum2002-10-291-13/+12
* Patch #627105: Document that SYSTEM_PAGE_SIZE really should not beMartin v. Löwis2002-10-261-1/+4
* Fix for bug #626172: crash using unicode latin1 single charMarc-André Lemburg2002-10-231-3/+1
* Make lower/upper/title work for non-BMP characters.Martin v. Löwis2002-10-181-24/+15
* Fix SF # 624982, Potential AV in slot_sq_item, by Greg ChapmanNeal Norwitz2002-10-181-1/+5
* Update to Unicode 3.2 database.Martin v. Löwis2002-10-182-416/+960
* Fix (real! :-) memory leaks in half_cmp and half_binop.Guido van Rossum2002-10-181-1/+4
* Sigh. That wasn't a memory leak, that was Guido committing beforeGuido van Rossum2002-10-181-5/+2
* Fix memory leak in add_subclass() found by NealN with valgrind.Guido van Rossum2002-10-181-2/+5
* Add n_unnamed_fields into the type.Martin v. Löwis2002-10-161-5/+15
* Add PyStructSequence_UnnamedField. Add stat_float_times.Martin v. Löwis2002-10-161-10/+19
* For some reason (probably cut and paste), __ipow__ for new-styleGuido van Rossum2002-10-151-2/+2
* Don't drop old slots if _unicode_to_string did not change anything.Martin v. Löwis2002-10-141-2/+4
* Allow Unicode strings in __slots__, converting them to byte strings.Martin v. Löwis2002-10-141-0/+39
* Darn! Don't divide by zero. Bad fix. :-)Guido van Rossum2002-10-111-1/+1
* Add checks for size overflow on list*n, list+list, tuple+tuple.Guido van Rossum2002-10-112-0/+6
* PyObject_Init[Var] is almost always called from the PyObject_NEW[_VAR]Guido van Rossum2002-10-111-10/+4
* Back out #479898.Martin v. Löwis2002-10-111-69/+15
* Fix a nasty endcase reported by Armin Rigo in SF bug 618623:Guido van Rossum2002-10-112-4/+12
* Undo this part of the previous checkin:Guido van Rossum2002-10-091-3/+4
* The string formatting code has a test to switch to Unicode when %sGuido van Rossum2002-10-091-2/+5
* Include wctype.h.Martin v. Löwis2002-10-071-1/+2
* Patch #479898: Use multibyte C library for printing strings if available.Martin v. Löwis2002-10-071-15/+68
* Patch 594001: PEP 277 - Unicode file name support for Windows NT.Mark Hammond2002-10-031-13/+83
* Add cast to avoid compiler warning.Marc-André Lemburg2002-09-241-1/+1
* Fix part of SF bug # 544248 gcc warning in unicodeobject.cNeal Norwitz2002-09-131-1/+1
* Fix warnings on 64-bit platforms about casts from pointers to ints.Guido van Rossum2002-09-123-3/+5
* Fix for platforms where int != long.Michael W. Hudson2002-09-121-1/+1
* Insert an overflow check when the sequence repetition count is outsideGuido van Rossum2002-09-111-3/+30
* Untested code for 64-bit platforms. range_length() is declared as intGuido van Rossum2002-09-111-1/+8
* A slight change to SET_LINENO-less tracing.Michael W. Hudson2002-09-111-2/+36
* Fix escaping of non-ASCII characters.Martin v. Löwis2002-09-091-2/+4
* PyObject_RichCompareBool() already returns -1, 0, or 1, so return its valueNeal Norwitz2002-09-052-10/+2
* Micro-optimization for list_contains. Factored double if testRaymond Hettinger2002-09-051-7/+6