| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Patch # 1331 by Christian Heimes. | Guido van Rossum | 2007-10-26 | 7 | -15/+25 |
|
|
* | Patch # 1302 by Christian Heimes (with some love from me :-). | Guido van Rossum | 2007-10-25 | 2 | -12/+48 |
|
|
* | Patch # 1323 by Amaury Forgeot d'Arc. | Guido van Rossum | 2007-10-25 | 2 | -9/+23 |
|
|
* | Patch 1318 by Christian Heimes: remove os.tmpnam(), os.tempnam(), | Guido van Rossum | 2007-10-25 | 5 | -255/+4 |
|
|
* | Remove a test case which is no longer valid. | Georg Brandl | 2007-10-24 | 1 | -1/+1 |
|
|
* | Fix a refleak for `filename', introduced in rev. 58466. | Georg Brandl | 2007-10-24 | 1 | -4/+0 |
|
|
* | Fix a broken format in a PyErr_Format() call: %lx is not supported. | Guido van Rossum | 2007-10-24 | 1 | -1/+1 |
|
|
* | Make test_locale pass by removing tests that were designed to handle | Guido van Rossum | 2007-10-24 | 1 | -39/+0 |
|
|
* | A 'PyObject *' parameter in PyErr_Format must use %S parameter, not %s. | Thomas Heller | 2007-10-24 | 2 | -1/+19 |
|
|
* | Patch #1303: Adapt str8 constructor to bytes (now buffer) one. | Georg Brandl | 2007-10-24 | 15 | -75/+215 |
|
|
* | Patch #1318 by Amaury Forgeot d'Arc. | Guido van Rossum | 2007-10-24 | 14 | -108/+106 |
|
|
* | Patch #1314 by Christian Heimes. | Guido van Rossum | 2007-10-23 | 1 | -3/+2 |
|
|
* | #1316: remove redundant PyLong_Check calls when PyInt_Check was already called. | Georg Brandl | 2007-10-23 | 7 | -31/+24 |
|
|
* | Remove duplicate entry for PyObject_AsFileDescriptor. | Georg Brandl | 2007-10-23 | 2 | -6/+7 |
|
|
* | Remove redundant PyInt/PyLong checks. | Georg Brandl | 2007-10-23 | 1 | -9/+2 |
|
|
* | Update Pygments version from externals. | Georg Brandl | 2007-10-23 | 1 | -1/+1 |
|
|
* | Update w.r.t. PEP 3137. | Georg Brandl | 2007-10-23 | 1 | -176/+54 |
|
|
* | Patch #1071: Improve unicode.translate() so that you can pass unicode | Georg Brandl | 2007-10-23 | 3 | -6/+52 |
|
|
* | #1061 (mainly by Thomas Wouters): use weak sets for abc caches. | Georg Brandl | 2007-10-23 | 4 | -17/+133 |
|
|
* | Patch 1304, by Amaury Forgeot d'Arc. | Guido van Rossum | 2007-10-22 | 3 | -3/+33 |
|
|
* | Make str/str8 comparisons return True/False for !=/==. | Brett Cannon | 2007-10-22 | 11 | -205/+169 |
|
|
* | In followup to #1310: Remove more exception indexing. | Georg Brandl | 2007-10-22 | 3 | -7/+9 |
|
|
* | ssue 1309: fix by Christian Heimes to be able to build on Windows. | Guido van Rossum | 2007-10-22 | 1 | -1/+4 |
|
|
* | Fix exception indexing. | Georg Brandl | 2007-10-22 | 1 | -1/+1 |
|
|
* | Issue 1267, continued. | Guido van Rossum | 2007-10-22 | 12 | -63/+93 |
|
|
* | Make sure the malloc'ed string has space for the null byte. | Brett Cannon | 2007-10-21 | 1 | -1/+1 |
|
|
* | Fix PyTokenizer_FindEncoding() for OS X 10.4. Turns out that seeking to the | Brett Cannon | 2007-10-20 | 1 | -4/+11 |
|
|
* | Fix a memory leak caused by PyTokenizer_FindEncoding() returning a char * that | Brett Cannon | 2007-10-20 | 1 | -3/+8 |
|
|
* | Plug a memory leak where a struct tok_state was not being freed. | Brett Cannon | 2007-10-20 | 1 | -3/+11 |
|
|
* | Tweak the version *string* to clarify that this isn't your father's 3.0a1. :-) | Guido van Rossum | 2007-10-20 | 1 | -1/+1 |
|
|
* | Patch 1267 by Christian Heimes. | Guido van Rossum | 2007-10-19 | 11 | -31/+175 |
|
|
* | Patch 1280, by Alexandre Vassalotti. | Guido van Rossum | 2007-10-19 | 9 | -51/+43 |
|
|
* | This is the uncontroversial half of patch 1263 by Thomas Lee: | Guido van Rossum | 2007-10-19 | 2 | -13/+17 |
|
|
* | Merge 58539: squelch the warning that this test is intended to raise. | Gregory P. Smith | 2007-10-19 | 1 | -2/+7 |
|
|
* | Merge 58532, 58533, 58534: bsddb.dbtables bug fixes - don't allow null bytes | Gregory P. Smith | 2007-10-18 | 1 | -13/+14 |
|
|
* | Patch# 1258 by Christian Heimes: kill basestring. | Guido van Rossum | 2007-10-16 | 77 | -217/+171 |
|
|
* | For PEP3137: Adds missing methods to the mutable PyBytes object (soon | Gregory P. Smith | 2007-10-16 | 12 | -1079/+1595 |
|
|
* | Fix a small typo in the comment of unicode_default_encoding[]. | Alexandre Vassalotti | 2007-10-16 | 1 | -1/+1 |
|
|
* | Make the docstring for io.open() a raw string so that the explanation for the | Brett Cannon | 2007-10-15 | 1 | -1/+1 |
|
|
* | Move decl so it compiles with C89. | Neal Norwitz | 2007-10-15 | 1 | -1/+1 |
|
|
* | Update what the locale module documents about string operations. | Guido van Rossum | 2007-10-15 | 1 | -11/+8 |
|
|
* | Patch #1272, by Christian Heimes and Alexandre Vassalotti. | Guido van Rossum | 2007-10-15 | 17 | -41/+96 |
|
|
* | Finish bug fix applied at 58398. I missed a piece, Tal Einat found the error. | Kurt B. Kaiser | 2007-10-15 | 1 | -1/+1 |
|
|
* | Fix yet another stray 2.x-ism (maybe merged?). | Guido van Rossum | 2007-10-15 | 1 | -2/+1 |
|
|
* | Make it possible to run this test stand-alone. | Guido van Rossum | 2007-10-15 | 1 | -0/+3 |
|
|
* | Fix typo: formats -> format. (Only mattered in wide unicode builds.) | Guido van Rossum | 2007-10-14 | 1 | -1/+1 |
|
|
* | Fix some more memory leaks (in error conditions) introduced in r58455. | Neal Norwitz | 2007-10-14 | 1 | -3/+4 |
|
|
* | Fix the memory leak introduced in r58455. The buffer reference | Alexandre Vassalotti | 2007-10-14 | 1 | -1/+4 |
|
|
* | Remove the buffer API from PyUnicode as specified by PEP 3137. Also, | Alexandre Vassalotti | 2007-10-14 | 4 | -17/+13 |
|
|
* | Merge 58450: fix uncollectable reference caused by bsddb.db.DBShelf.append | Gregory P. Smith | 2007-10-13 | 1 | -2/+19 |
|
|