| Commit message (Expand) | Author | Age | Files | Lines |
* | Patch #642500 with slight modifications: allow keyword arguments in | Just van Rossum | 2002-11-23 | 1 | -5/+7 |
|
|
* | Remove MALLOC_ZERO_RETURNS_NULL. | Martin v. Löwis | 2002-11-23 | 1 | -2/+0 |
|
|
* | Fix --disable-unicode compilation problems. | Martin v. Löwis | 2002-11-21 | 1 | -0/+4 |
|
|
* | float_int(): Some systems raise an exception if a double is cast to | Tim Peters | 2002-11-21 | 1 | -14/+16 |
|
|
* | Change int() so that passing a string, unicode, float or long argument | Walter Dörwald | 2002-11-19 | 3 | -24/+45 |
|
|
* | Add nb_remainder (i.e. __mod__) slot to unicode type. Fixes SF bug #615506. | Neil Schemenauer | 2002-11-18 | 1 | -2/+21 |
|
|
* | Add nb_remainder (i.e. __mod__) slot to str type. Fixes SF bug #615506. | Neil Schemenauer | 2002-11-18 | 1 | -2/+22 |
|
|
* | Improve exception message raised by PyFloat_AsDouble if the object does not | Neil Schemenauer | 2002-11-18 | 1 | -2/+6 |
|
|
* | str and unicode objects now have a __mod__ slot so don't special case them in | Neil Schemenauer | 2002-11-18 | 1 | -6/+0 |
|
|
* | Remove _Py_ResetReferences. Fixes bug #529750 "Circular reference makes | Neil Schemenauer | 2002-11-17 | 1 | -7/+0 |
|
|
* | Repaired illegal syntax most compilers probably let slide (but MSVC | Tim Peters | 2002-11-14 | 1 | -1/+1 |
|
|
* | Use the new C3 MRO algorithm, implemented by Samuele Pedroni (SF patch | Guido van Rossum | 2002-11-14 | 1 | -74/+105 |
|
|
* | Fix SF # 635969, No error "not all arguments converted" | Neal Norwitz | 2002-11-12 | 2 | -2/+4 |
|
|
* | SF patch 637176: list.sort crasher | Tim Peters | 2002-11-12 | 1 | -96/+29 |
|
|
* | Restore attribute access so that the following work again: | Raymond Hettinger | 2002-11-07 | 1 | -1/+1 |
|
|
* | Make int("...") return a long if an int would overflow. | Walter Dörwald | 2002-11-06 | 2 | -19/+23 |
|
|
* | Handle really big steps in extended slices. | Michael W. Hudson | 2002-11-06 | 1 | -5/+2 |
|
|
* | Use PyOS_snprintf() instead of sprintf and wrap the long line | Neal Norwitz | 2002-11-05 | 1 | -2/+4 |
|
|
* | Use PyList_CheckExact and PyTuple_CheckExact for checking whether | Michael W. Hudson | 2002-11-05 | 1 | -1/+1 |
|
|
* | This is Alex Martelli's patch | Michael W. Hudson | 2002-11-05 | 1 | -9/+12 |
|
|
* | Some days, I think my comment of | Michael W. Hudson | 2002-11-05 | 1 | -6/+12 |
|
|
* | Since properties are supported here, is possible that | Guido van Rossum | 2002-10-29 | 1 | -13/+12 |
|
|
* | Patch #627105: Document that SYSTEM_PAGE_SIZE really should not be | Martin v. Löwis | 2002-10-26 | 1 | -1/+4 |
|
|
* | Fix for bug #626172: crash using unicode latin1 single char | Marc-André Lemburg | 2002-10-23 | 1 | -3/+1 |
|
|
* | Make lower/upper/title work for non-BMP characters. | Martin v. Löwis | 2002-10-18 | 1 | -24/+15 |
|
|
* | Fix SF # 624982, Potential AV in slot_sq_item, by Greg Chapman | Neal Norwitz | 2002-10-18 | 1 | -1/+5 |
|
|
* | Update to Unicode 3.2 database. | Martin v. Löwis | 2002-10-18 | 2 | -416/+960 |
|
|
* | Fix (real! :-) memory leaks in half_cmp and half_binop. | Guido van Rossum | 2002-10-18 | 1 | -1/+4 |
|
|
* | Sigh. That wasn't a memory leak, that was Guido committing before | Guido van Rossum | 2002-10-18 | 1 | -5/+2 |
|
|
* | Fix memory leak in add_subclass() found by NealN with valgrind. | Guido van Rossum | 2002-10-18 | 1 | -2/+5 |
|
|
* | Add n_unnamed_fields into the type. | Martin v. Löwis | 2002-10-16 | 1 | -5/+15 |
|
|
* | Add PyStructSequence_UnnamedField. Add stat_float_times. | Martin v. Löwis | 2002-10-16 | 1 | -10/+19 |
|
|
* | For some reason (probably cut and paste), __ipow__ for new-style | Guido van Rossum | 2002-10-15 | 1 | -2/+2 |
|
|
* | Don't drop old slots if _unicode_to_string did not change anything. | Martin v. Löwis | 2002-10-14 | 1 | -2/+4 |
|
|
* | Allow Unicode strings in __slots__, converting them to byte strings. | Martin v. Löwis | 2002-10-14 | 1 | -0/+39 |
|
|
* | Darn! Don't divide by zero. Bad fix. :-) | Guido van Rossum | 2002-10-11 | 1 | -1/+1 |
|
|
* | Add checks for size overflow on list*n, list+list, tuple+tuple. | Guido van Rossum | 2002-10-11 | 2 | -0/+6 |
|
|
* | PyObject_Init[Var] is almost always called from the PyObject_NEW[_VAR] | Guido van Rossum | 2002-10-11 | 1 | -10/+4 |
|
|
* | Back out #479898. | Martin v. Löwis | 2002-10-11 | 1 | -69/+15 |
|
|
* | Fix a nasty endcase reported by Armin Rigo in SF bug 618623: | Guido van Rossum | 2002-10-11 | 2 | -4/+12 |
|
|
* | Undo this part of the previous checkin: | Guido van Rossum | 2002-10-09 | 1 | -3/+4 |
|
|
* | The string formatting code has a test to switch to Unicode when %s | Guido van Rossum | 2002-10-09 | 1 | -2/+5 |
|
|
* | Include wctype.h. | Martin v. Löwis | 2002-10-07 | 1 | -1/+2 |
|
|
* | Patch #479898: Use multibyte C library for printing strings if available. | Martin v. Löwis | 2002-10-07 | 1 | -15/+68 |
|
|
* | Patch 594001: PEP 277 - Unicode file name support for Windows NT. | Mark Hammond | 2002-10-03 | 1 | -13/+83 |
|
|
* | Add cast to avoid compiler warning. | Marc-André Lemburg | 2002-09-24 | 1 | -1/+1 |
|
|
* | Fix part of SF bug # 544248 gcc warning in unicodeobject.c | Neal Norwitz | 2002-09-13 | 1 | -1/+1 |
|
|
* | Fix warnings on 64-bit platforms about casts from pointers to ints. | Guido van Rossum | 2002-09-12 | 3 | -3/+5 |
|
|
* | Fix for platforms where int != long. | Michael W. Hudson | 2002-09-12 | 1 | -1/+1 |
|
|
* | Insert an overflow check when the sequence repetition count is outside | Guido van Rossum | 2002-09-11 | 1 | -3/+30 |
|
|