| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Implement bytes += bytes, bytes *= int, int in bytes, bytes in bytes. | Guido van Rossum | 2006-04-27 | 1 | -5/+94 |
|
|
* | Added much functionality to the bytes type. | Guido van Rossum | 2006-04-24 | 2 | -168/+467 |
|
|
* | Fix a leak and a buglet discovered by Thomas. | Guido van Rossum | 2006-04-23 | 1 | -1/+2 |
|
|
* | Here is a bytes type. It's very minimal but it's a start. | Guido van Rossum | 2006-04-22 | 2 | -0/+376 |
|
|
* | Merge with trunk up to revision 45620. | Thomas Wouters | 2006-04-21 | 1 | -1/+1 |
|
|
* | Merge trunk up to 45598. | Thomas Wouters | 2006-04-21 | 1 | -4/+4 |
|
|
* | Merge p3yk branch with the trunk up to revision 45595. This breaks a fair | Thomas Wouters | 2006-04-21 | 33 | -1243/+1410 |
|
|
* | Merge part of the trunk changes into the p3yk branch. This merges from 43030 | Thomas Wouters | 2006-04-21 | 1 | -205/+525 |
|
|
* | Get rid of remnants of integer division | Neal Norwitz | 2006-03-24 | 12 | -120/+7 |
|
|
* | Get rid of xreadlines() (methods). | Neal Norwitz | 2006-03-17 | 1 | -7/+0 |
|
|
* | Checkpoint. 218 tests are okay; 53 are failing. Done so far: | Guido van Rossum | 2006-03-15 | 1 | -12/+2 |
|
|
* | Fix and test (manually w/xx module) passing NULLs to PyObject_Str() and | Neal Norwitz | 2006-03-14 | 1 | -5/+7 |
|
|
* | Fix bug found by Coverity: don't allow NULL argument to PyUnicode_CheckExact | Georg Brandl | 2006-03-13 | 1 | -2/+2 |
|
|
* | - Reindent a confusingly indented piece of code (no intended code changes | Thomas Wouters | 2006-03-12 | 1 | -13/+16 |
|
|
* | Um, I thought I'd already checked this in. | Guido van Rossum | 2006-03-10 | 1 | -26/+1 |
|
|
* | Fix three nits found by Coverity, adding null checks and comments. | Guido van Rossum | 2006-03-10 | 1 | -3/+15 |
|
|
* | Update Unicode database to Unicode 4.1. | Martin v. Löwis | 2006-03-09 | 2 | -651/+830 |
|
|
* | Patch #1434038: property() now uses the getter's docstring if there is | Georg Brandl | 2006-03-08 | 1 | -0/+12 |
|
|
* | Checking in the code for PEP 357. | Guido van Rossum | 2006-03-07 | 9 | -68/+180 |
|
|
* | SF #1444030: Fix several potential defects found by Coverity. | Hye-Shik Chang | 2006-03-07 | 4 | -11/+30 |
|
|
* | Change int to Py_ssize_t in several places. | Martin v. Löwis | 2006-03-07 | 5 | -10/+19 |
|
|
* | Oops, forgot to include this in the last checkin. | Neal Norwitz | 2006-03-04 | 1 | -1/+1 |
|
|
* | Change some sequnce APIs to use Py_ssize_t. | Neal Norwitz | 2006-03-04 | 1 | -5/+9 |
|
|
* | Use Py_ssize_t for PySet_Size() like all the other Py*_Size() functions. | Neal Norwitz | 2006-03-04 | 1 | -1/+1 |
|
|
* | Use %ld and casts to long for refcount printing, in absense of a universally | Thomas Wouters | 2006-03-01 | 3 | -12/+31 |
|
|
* | PEP 352 implementation. Creates a new base class, BaseException, which has an | Brett Cannon | 2006-03-01 | 1 | -3/+3 |
|
|
* | Updates to the with-statement: | Guido van Rossum | 2006-02-28 | 1 | -3/+37 |
|
|
* | 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 |
|
|