| Commit message (Expand) | Author | Age | Files | Lines |
* | Revert backwards-incompatible const changes. | Martin v. Löwis | 2006-02-27 | 20 | -23/+23 |
|
|
* | Oops. Fix syntax for C89 compilers. | Guido van Rossum | 2006-02-25 | 1 | -2/+2 |
|
|
* | - Patch 1433928: | Guido van Rossum | 2006-02-25 | 1 | -1/+15 |
|
|
* | RFE #1436243: make integers in [0..256] preallocated. | Georg Brandl | 2006-02-22 | 1 | -1/+1 |
|
|
* | Make staticmethod and classmethod complain about keyword args. | Georg Brandl | 2006-02-21 | 1 | -0/+4 |
|
|
* | Bug #1086854: Rename PyHeapType members adding ht_ prefix. | Georg Brandl | 2006-02-20 | 1 | -9/+9 |
|
|
* | Remove size constraints in SLICE opcodes. | Martin v. Löwis | 2006-02-17 | 1 | -3/+3 |
|
|
* | Use proper PyArg_Parse format char for Py_ssize_t, instead of 'l', in | Thomas Wouters | 2006-02-16 | 1 | -1/+1 |
|
|
* | Use correct PyArg_Parse format char for Py_ssize_t in unicode.center(). | Thomas Wouters | 2006-02-16 | 1 | -1/+1 |
|
|
* | Use Py_ssize_t in helper function between Py_ssize_t-using functions. | Thomas Wouters | 2006-02-16 | 1 | -2/+2 |
|
|
* | Use Py_ssize_t for counts and sizes. | Martin v. Löwis | 2006-02-16 | 10 | -31/+33 |
|
|
* | Oops, this is supposed to be disabled by default. | Neal Norwitz | 2006-02-16 | 1 | -1/+1 |
|
|
* | Revert 42400. | Martin v. Löwis | 2006-02-16 | 5 | -11/+11 |
|
|
* | Support %zd in PyErr_Format and PyString_FromFormat. | Martin v. Löwis | 2006-02-16 | 8 | -19/+35 |
|
|
* | Get rid of compiler warnings (gcc 3.3.4 on x86) | Neal Norwitz | 2006-02-16 | 5 | -11/+11 |
|
|
* | doubletounicode(), longtounicode(): | Tim Peters | 2006-02-16 | 1 | -4/+8 |
|
|
* | Remove two unused Py_ssize_t variables (merge glitches, looks like.) | Thomas Wouters | 2006-02-15 | 1 | -2/+0 |
|
|
* | Avoid unused variables when SIZEOF_SIZE_T == SIZEOF_LONG. Also normalize | Thomas Wouters | 2006-02-15 | 1 | -1/+3 |
|
|
* | Merge ssize_t branch. | Martin v. Löwis | 2006-02-15 | 29 | -1022/+1205 |
|
|
* | * Refcount leak. It was just a reference to Py_None, but still. | Armin Rigo | 2006-02-14 | 1 | -3/+9 |
|
|
* | SF patch #1397960: When mixing file-iteration and | Thomas Wouters | 2006-02-12 | 1 | -2/+39 |
|
|
* | Renamed _length_cue() to __length_hint__(). See: | Armin Rigo | 2006-02-11 | 8 | -18/+18 |
|
|
* | As discussed on python-dev, silence three gcc-4.0.x warnings, using assert() | Thomas Wouters | 2006-02-01 | 1 | -2/+9 |
|
|
* | Fix SF #1412837, compile failed with Watcom compiler | Neal Norwitz | 2006-01-24 | 1 | -5/+5 |
|
|
* | - Patch #1400181, fix unicode string formatting to not use the locale. | Neal Norwitz | 2006-01-10 | 1 | -16/+21 |
|
|
* | Remove some shadowed variables | Neal Norwitz | 2006-01-08 | 3 | -4/+4 |
|
|
* | strlen() returns a size_t, get rid of 64-bit warning | Neal Norwitz | 2006-01-08 | 1 | -1/+1 |
|
|
* | Fix icc warnings: remove (sometimes) unused variable conditionally | Neal Norwitz | 2006-01-08 | 1 | -2/+4 |
|
|
* | Fix icc warnings: remove unused variable | Neal Norwitz | 2006-01-08 | 1 | -2/+1 |
|
|
* | Stop maintaining the buildno file. | Martin v. Löwis | 2006-01-05 | 1 | -12/+15 |
|
|
* | Fix ref/memory leak introduced in rev 41845. | Neal Norwitz | 2006-01-02 | 1 | -0/+2 |
|
|
* | Fixed English in a comment; trimmed trailing whitespace; | Tim Peters | 2006-01-01 | 1 | -11/+11 |
|
|
* | SF bug #1153075: "PyXxx_Check(x) trusts x->ob_type->tp_mro". | Armin Rigo | 2005-12-29 | 1 | -0/+33 |
|
|
* | SF patch #1390657: | Armin Rigo | 2005-12-29 | 2 | -22/+60 |
|
|
* | Check return result for error | Neal Norwitz | 2005-12-18 | 1 | -0/+2 |
|
|
* | Bug #1379994: Fix *unicode_escape codecs to encode r'\' as r'\\' | Hye-Shik Chang | 2005-12-17 | 1 | -3/+3 |
|
|
* | Revert r41662 and the part of 41552 that originally caused the problem | Neal Norwitz | 2005-12-15 | 1 | -7/+0 |
|
|
* | Add a workaround for file.ftell() to raise IOError for ttys. | Hye-Shik Chang | 2005-12-13 | 1 | -0/+7 |
|
|
* | en_sit will be freed when en is DECREF'd. Don't double free. | Neal Norwitz | 2005-12-11 | 1 | -1/+0 |
|
|
* | Add const to several API functions that take char *. | Jeremy Hylton | 2005-12-10 | 20 | -39/+45 |
|
|
* | Fix bug | Michael W. Hudson | 2005-12-05 | 1 | -5/+13 |
|
|
* | Fix leaked reference to None. | Walter Dörwald | 2005-11-28 | 1 | -0/+1 |
|
|
* | Do a better job of not inlining Py_ADDRESS_IN_RANGE() for newer gcc's. | Neal Norwitz | 2005-11-13 | 1 | -2/+9 |
|
|
* | Prevent name pollution by making lots of internal functions static. | Neal Norwitz | 2005-11-13 | 1 | -1/+1 |
|
|
* | Added proper reflection on instances of <type 'method-wrapper'>, e.g. | Armin Rigo | 2005-11-07 | 1 | -13/+46 |
|
|
* | Another comment typo fix | Andrew M. Kuchling | 2005-11-02 | 1 | -1/+1 |
|
|
* | Fix typo in comment. | Walter Dörwald | 2005-11-02 | 1 | -1/+1 |
|
|
* | Remove .cvsignore files, as they live in svn:ignore | Martin v. Löwis | 2005-10-30 | 1 | -2/+0 |
|
|
* | fix typos, mostly in comments | Fred Drake | 2005-10-28 | 1 | -2/+2 |
|
|
* | Fix a bunch of imports to use code.h instead of compile.h. | Jeremy Hylton | 2005-10-21 | 1 | -1/+0 |
|
|