| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix memory leak in arraymodule.c and respond to a few comments by nnorwitz. | Travis E. Oliphant | 2007-08-20 | 1 | -1/+0 |
|
|
* | Remove _PyObject_Del | Neal Norwitz | 2007-08-19 | 1 | -1/+1 |
|
|
* | SF #1777057, fix memoryview('test') so it works in debug mode too. | Neal Norwitz | 2007-08-19 | 1 | -30/+18 |
|
|
* | Code review of the new buffer protocol. Mostly add questions that should | Neal Norwitz | 2007-08-19 | 5 | -17/+24 |
|
|
* | Merged in py3k-buffer branch to main line. All objects now use the buffer pr... | Travis E. Oliphant | 2007-08-18 | 8 | -521/+1305 |
|
|
* | Move some declarations before code, to compile with GCC 2.95. | Guido van Rossum | 2007-08-17 | 1 | -7/+7 |
|
|
* | Apply SF patch #1775604: This adds three new codecs (utf-32, utf-32-le and | Walter Dörwald | 2007-08-16 | 1 | -0/+266 |
|
|
* | Get rid of some dead code and unneeded XXX comments by Neal. | Guido van Rossum | 2007-08-16 | 1 | -11/+3 |
|
|
* | Implement PEP 3131. Add isidentifier to str. | Martin v. Löwis | 2007-08-15 | 1 | -1/+44 |
|
|
* | Add XID_Start and XID_Continue properties to unicodectype. | Martin v. Löwis | 2007-08-14 | 2 | -886/+952 |
|
|
* | Format bools properly in %d. | Martin v. Löwis | 2007-08-14 | 1 | -2/+5 |
|
|
* | Add comment that should be addressed | Neal Norwitz | 2007-08-12 | 1 | -0/+3 |
|
|
* | PyErr_Warn is deprecated in 2.5 - goes away for 3.0 | Skip Montanaro | 2007-08-12 | 1 | -9/+10 |
|
|
* | Fix memory leak | Neal Norwitz | 2007-08-12 | 1 | -1/+1 |
|
|
* | Kill execfile(), use exec() instead | Neal Norwitz | 2007-08-12 | 1 | -1/+1 |
|
|
* | Remove support for __members__ and __methods__. There still might be | Neal Norwitz | 2007-08-11 | 1 | -35/+0 |
|
|
* | Fix refleak: decref inputobj after extracting the relavant info (the object | Walter Dörwald | 2007-08-10 | 1 | -0/+3 |
|
|
* | In PyFile_WriteString(), call PyUnicode_FromString() instead of | Guido van Rossum | 2007-08-09 | 1 | -1/+1 |
|
|
* | Oops. The PyObject_Print() function was totally broken; the original code | Guido van Rossum | 2007-08-09 | 1 | -3/+19 |
|
|
* | Fix core dump in an endcase of b.strip() that I missed. | Guido van Rossum | 2007-08-08 | 1 | -1/+4 |
|
|
* | Change the repr() of frozenset instances (and set subclasses) | Guido van Rossum | 2007-08-07 | 1 | -22/+24 |
|
|
* | Oops. I killed a bit too much and not enough when I deleted intobject.c. | Guido van Rossum | 2007-08-07 | 1 | -0/+6 |
|
|
* | Kill all uses and definitions of tp_print under Objects/. (Others will follow.) | Guido van Rossum | 2007-08-07 | 11 | -1470/+11 |
|
|
* | Remove references to unicode from help(str). | Collin Winter | 2007-08-07 | 1 | -2/+2 |
|
|
* | Merged revisions 56753-56781 via svnmerge from | Guido van Rossum | 2007-08-06 | 2 | -4/+4 |
|
|
* | Change PyUnicode_FromString[AndSize] to expect UTF-8. | Martin v. Löwis | 2007-08-05 | 2 | -17/+15 |
|
|
* | Merged revisions 56492-56752 via svnmerge from | Guido van Rossum | 2007-08-05 | 2 | -7/+7 |
|
|
* | Fix an obvious bug caused by a switch to Unicode. | Guido van Rossum | 2007-08-04 | 1 | -1/+2 |
|
|
* | Add a default __prepare__() method to 'type', so it can be called | Guido van Rossum | 2007-08-02 | 1 | -0/+10 |
|
|
* | Changes to long and float by Jeffrey Jasskin to conform to PEP 3141. | Guido van Rossum | 2007-08-01 | 2 | -35/+54 |
|
|
* | Kill div, mod and divmod on complex (already deprecated in 2.x). | Guido van Rossum | 2007-08-01 | 1 | -55/+15 |
|
|
* | Bytes (which are the input for decoding) are mutable now. If a decoding | Walter Dörwald | 2007-07-30 | 1 | -19/+35 |
|
|
* | Fix the docstrings for keys(), items(), values() (especially the latter). | Guido van Rossum | 2007-07-27 | 1 | -61/+6 |
|
|
* | Fix merge breakage. | Martin v. Löwis | 2007-07-21 | 4 | -15/+15 |
|
|
* | Merged revisions 56467-56482 via svnmerge from | Martin v. Löwis | 2007-07-21 | 33 | -916/+844 |
|
|
* | Fix test_pickle, by reverting the string opcodes (S, T, U) to returning | Guido van Rossum | 2007-07-19 | 1 | -5/+3 |
|
|
* | Fix a bug in PyUnicode_FromStringAndSize() with signed characters. | Guido van Rossum | 2007-07-19 | 1 | -4/+4 |
|
|
* | Merged revisions 56301-56442 via svnmerge from | Guido van Rossum | 2007-07-18 | 2 | -2/+4 |
|
|
* | Change Py_BuildValue to generate Unicode objects for | Martin v. Löwis | 2007-07-18 | 2 | -8/+15 |
|
|
* | Three patches by Amaury Forgeot d'Arc; SF patch# 1754484. | Guido van Rossum | 2007-07-16 | 1 | -1/+1 |
|
|
* | Make chr() and ord() return/accept surrogate pairs in narrow builds. | Guido van Rossum | 2007-07-15 | 1 | -10/+9 |
|
|
* | Fixed a refcount leak in _PyUnicode_AsDefaultEncodedString(). | Guido van Rossum | 2007-07-12 | 1 | -4/+1 |
|
|
* | Revert a wrong commit. | Thomas Heller | 2007-07-11 | 1 | -14/+7 |
|
|
* | Must create heaptypes with unicode names. | Thomas Heller | 2007-07-11 | 1 | -7/+14 |
|
|
* | Remove unused local variable. | Thomas Heller | 2007-07-11 | 1 | -1/+0 |
|
|
* | Make test_descr.py pass. Had to disable a few tests, remove references | Guido van Rossum | 2007-07-11 | 4 | -12/+13 |
|
|
* | Fix a subtle bug in PyString_Repr(). | Guido van Rossum | 2007-07-03 | 1 | -2/+3 |
|
|
* | Change float.__getformat__() to return a unicode string. | Walter Dörwald | 2007-06-22 | 1 | -3/+3 |
|
|
* | Silence GCC warning about uninitialzed variable. | Walter Dörwald | 2007-06-20 | 1 | -12/+5 |
|
|
* | Patch by Ron Adam: Don't use u prefix in unicode error messages | Walter Dörwald | 2007-06-20 | 1 | -6/+6 |
|
|