| Commit message (Expand) | Author | Age | Files | Lines |
| * | Backported r55839 and r61350 | Martin v. Löwis | 2008-12-13 | 2 | -19/+68 |
|
|
| * | backport the security fix part of r67246 | Benjamin Peterson | 2008-11-17 | 1 | -0/+2 |
|
|
| * | - Issue #2587: In the C API, PyString_FromStringAndSize() takes a signed size | Matthias Klose | 2008-11-12 | 1 | -0/+7 |
|
|
| * | Security patches from Apple: prevent int overflow when allocating memory | Neal Norwitz | 2008-07-31 | 4 | -13/+63 |
|
|
| * | Backport r65182. This change modified from using the unsigned max value | Neal Norwitz | 2008-07-28 | 1 | -0/+18 |
|
|
| * | Backport of r60793: | Martin v. Löwis | 2008-03-02 | 2 | -3/+25 |
|
|
| * | Backport trunk revision 53527: | Thomas Wouters | 2007-01-23 | 1 | -0/+2 |
|
|
| * | Backport rev 51262 from trunk -- squashes a compiler warning on Windows | Tim Peters | 2006-10-09 | 1 | -2/+2 |
|
|
| * | Backport of the pieces of trunk rev 46589 relevant to | Tim Peters | 2006-10-09 | 1 | -1/+31 |
|
|
| * | [Partial backport of r45947 | neal.norwitz] | Andrew M. Kuchling | 2006-10-09 | 1 | -2/+3 |
|
|
| * | [Backport r42951 | guido.van.rossum] | Andrew M. Kuchling | 2006-10-09 | 1 | -2/+6 |
|
|
| * | [Backport r43695 | neal.norwitz] | Andrew M. Kuchling | 2006-10-06 | 1 | -8/+5 |
|
|
| * | [Backport r50679 | neal.norwitz. This is the last Klocwork bug to be | Andrew M. Kuchling | 2006-10-05 | 1 | -7/+7 |
|
|
| * | [Backport r50681 | neal.norwitz] | Andrew M. Kuchling | 2006-10-05 | 1 | -2/+2 |
|
|
| * | [Backport r51246 | neal.norwitz] | Andrew M. Kuchling | 2006-10-05 | 1 | -30/+110 |
|
|
| * | [Partial backport of r51218 | neal.norwitz -- the changes to ast.c, symtable.c, | Andrew M. Kuchling | 2006-10-05 | 1 | -0/+4 |
|
|
| * | [Backport r50743 | neal.norwitz] | Andrew M. Kuchling | 2006-10-05 | 2 | -0/+5 |
|
|
| * | [Backport r51248 | neal.norwitz] | Andrew M. Kuchling | 2006-10-05 | 1 | -1/+4 |
|
|
| * | A review of overflow-detecting code in the 2.4 branch. | Armin Rigo | 2006-10-04 | 7 | -37/+70 |
|
|
| * | Fix integer negation and absolute value to not rely | Martin v. Löwis | 2006-10-04 | 1 | -4/+3 |
|
|
| * | [Backport r51230 | neal.norwitz] | Andrew M. Kuchling | 2006-10-03 | 1 | -2/+6 |
|
|
| * | [Backport r50779 | neal.norwitz] | Andrew M. Kuchling | 2006-10-03 | 1 | -1/+2 |
|
|
| * | [Backport r50683 | neal.norwitz] | Andrew M. Kuchling | 2006-10-03 | 1 | -3/+6 |
|
|
| * | [Backport r50680 | neal.norwitz] | Andrew M. Kuchling | 2006-10-03 | 1 | -3/+3 |
|
|
| * | [Backport rev. 42545 by georg.brandl] | Andrew M. Kuchling | 2006-10-03 | 1 | -0/+4 |
|
|
| * | [Backport rev. 51669 by brett.cannon] | Andrew M. Kuchling | 2006-10-03 | 1 | -1/+1 |
|
|
| * | [Backport rev. 47171 by neal.norwitz] | Andrew M. Kuchling | 2006-10-03 | 1 | -0/+2 |
|
|
| * | Patch #1567691: super() and new.instancemethod() now don't accept | Georg Brandl | 2006-09-30 | 2 | -0/+4 |
|
|
| * | [Backport rev. 46878 by neal.norwitz] | Andrew M. Kuchling | 2006-09-29 | 1 | -1/+3 |
|
|
| * | [Backport rev. 39743 by lemburg] | Andrew M. Kuchling | 2006-09-29 | 1 | -8/+16 |
|
|
| * | Merge rev 51711 from the 2.5 branch. | Tim Peters | 2006-09-05 | 1 | -2/+8 |
|
|
| * | Backport rev 51448: | Georg Brandl | 2006-08-22 | 1 | -12/+25 |
|
|
| * | memcmp() can return values other than -1, 0, and +1 but tp_compare | Thomas Heller | 2006-08-08 | 1 | -1/+1 |
|
|
| * | SF patch #1534048 (bug #1531003): fix typo in error message | Fred Drake | 2006-08-04 | 1 | -1/+1 |
|
|
| * | Put method-wrappers into trashcan. Fixes #927248. | Martin v. Löwis | 2006-07-03 | 1 | -1/+3 |
|
|
| * | Backport of r47061. | Armin Rigo | 2006-06-21 | 2 | -5/+10 |
|
|
| * | Classic class that defined ``def __coerce__(self, other): return other, self`` | Brett Cannon | 2006-06-13 | 1 | -0/+3 |
|
|
| * | Fix bug introduced in rev. 46807 where variable was not declared at top of bl... | Brett Cannon | 2006-06-09 | 1 | -1/+2 |
|
|
| * | Backport of fix of bug #532646 for new-style classes. | Brett Cannon | 2006-06-09 | 1 | -0/+3 |
|
|
| * | Don't crash on Py_UNICODE values < 0. Fixes #1454485. | Martin v. Löwis | 2006-06-05 | 1 | -1/+3 |
|
|
| * | Backport: Patch #1488312, Fix memory alignment problem on SPARC in unicode. | Neal Norwitz | 2006-05-15 | 1 | -1/+1 |
|
|
| * | Ignore the references to the dummy objects used as deleted keys | Armin Rigo | 2006-04-12 | 2 | -1/+22 |
|
|
| * | Bug #1177964: make file iterator raise MemoryError on too big files | Georg Brandl | 2006-03-31 | 1 | -1/+2 |
|
|
| * | after discussions with perky, reverted fix for Bug #1379994: Builtin | Anthony Baxter | 2006-03-28 | 1 | -3/+3 |
|
|
| * | Fix the refleak from test_unicode. | Neal Norwitz | 2006-03-28 | 1 | -13/+16 |
|
|
| * | update - still some old .cvsignore files lying around | Anthony Baxter | 2006-03-23 | 1 | -2/+0 |
|
|
| * | Backport: Fix missing NULL checks after PyTuple_New, PyList_New, PyDict_New | Georg Brandl | 2006-03-17 | 2 | -1/+5 |
|
|
| * | Backport 43022: | 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 |
|
|
| * | Backport r42894: SF #1444030 Fix several potential defects found | Hye-Shik Chang | 2006-03-07 | 4 | -11/+30 |
|
|