| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
|
|
* | Untested code for 64-bit platforms. range_length() is declared as int | Guido van Rossum | 2002-09-11 | 1 | -1/+8 |
|
|
* | A slight change to SET_LINENO-less tracing. | Michael W. Hudson | 2002-09-11 | 1 | -2/+36 |
|
|
* | Fix escaping of non-ASCII characters. | Martin v. Löwis | 2002-09-09 | 1 | -2/+4 |
|
|
* | PyObject_RichCompareBool() already returns -1, 0, or 1, so return its value | Neal Norwitz | 2002-09-05 | 2 | -10/+2 |
|
|
* | Micro-optimization for list_contains. Factored double if test | Raymond Hettinger | 2002-09-05 | 1 | -7/+6 |
|
|
* | Micro-optimization for list_contains. Factored double if test | Raymond Hettinger | 2002-09-05 | 1 | -8/+7 |
|
|
* | Change the unicode.translate docstring to document that | Walter Dörwald | 2002-09-04 | 1 | -2/+3 |
|
|
* | In doc strings, use 'k in D' rather than D.has_key(k). | Guido van Rossum | 2002-09-04 | 1 | -2/+2 |
|
|
* | replace thread state objects' ticker and checkinterval fields with two | Skip Montanaro | 2002-09-03 | 1 | -4/+2 |
|
|
* | Check whether a string resize is necessary at the end | Walter Dörwald | 2002-09-03 | 1 | -3/+4 |
|
|
* | PEP 293 implemention (from SF patch http://www.python.org/sf/432401) | Walter Dörwald | 2002-09-02 | 2 | -554/+1246 |
|
|
* | Added comparison functions to dict proxies. | Raymond Hettinger | 2002-08-31 | 1 | -2/+14 |
|
|
* | SF #561244: micro optimizations, builtins cannot be NULL, so use Py_INCREF | Neal Norwitz | 2002-08-29 | 1 | -1/+1 |
|
|
* | complex() was the only numeric constructor that created a new instance | Raymond Hettinger | 2002-08-29 | 1 | -0/+9 |
|
|