summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* A tweaked version of Jeremy's patch #642489, to produce better errorGuido van Rossum2002-11-251-4/+138
* Add unidata_version. Bump generator version number.Martin v. Löwis2002-11-251-1/+1
* Regenerate from Unicode 3.2.0 to include all First/Last ranges.Martin v. Löwis2002-11-241-108/+77
* Simplify use of NB_BINOP and NB_TERNOP by making them do the pointerNeil Schemenauer2002-11-241-15/+15
* Remove special handling of str and unicode in PyNumber_InPlaceRemainder. TheyNeil Schemenauer2002-11-241-9/+2
* Patch #642500 with slight modifications: allow keyword arguments inJust van Rossum2002-11-231-5/+7
* Remove MALLOC_ZERO_RETURNS_NULL.Martin v. Löwis2002-11-231-2/+0
* Fix --disable-unicode compilation problems.Martin v. Löwis2002-11-211-0/+4
* float_int(): Some systems raise an exception if a double is cast toTim Peters2002-11-211-14/+16
* Change int() so that passing a string, unicode, float or long argumentWalter Dörwald2002-11-193-24/+45
* 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