| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | | zipimport, get_module_code(): avoid useless _PyUnicode_AsString() | Victor Stinner | 2010-10-18 | 1 | -3/+2 |
|
|
* | | zipimport: fix indentation | Victor Stinner | 2010-10-18 | 1 | -4/+5 |
|
|
* | | zipimport: catch _PyUnicode_AsString() failure in get_code_from_data() | Victor Stinner | 2010-10-16 | 1 | -0/+4 |
|
|
* | | Issue #9425: zipimporter_repr() uses unicode | Victor Stinner | 2010-08-17 | 1 | -12/+7 |
|
|
* | | Issue #9425: get_data() uses an unicode path | Victor Stinner | 2010-08-16 | 1 | -29/+39 |
|
|
* | | Issue #9425: read_directory() is fully unicode compliant | Victor Stinner | 2010-08-16 | 1 | -21/+28 |
|
|
* | | Issue #9425: zipimporter_init() is fully unicode compliant | Victor Stinner | 2010-08-14 | 1 | -37/+53 |
|
|
* | | Fix #9316. if/is grammar corrections. | Brian Curtin | 2010-07-21 | 1 | -3/+3 |
|
|
* | | Recorded merge of revisions 81029 via svnmerge from | Antoine Pitrou | 2010-05-09 | 1 | -868/+868 |
|
|
* | | Issue #6697: use %U format instead of _PyUnicode_AsString(), because | Victor Stinner | 2010-03-12 | 1 | -6/+3 |
|/ |
|
* | Fix a warning. | Georg Brandl | 2009-05-17 | 1 | -1/+1 |
|
|
* | Merged revisions 69425 via svnmerge from | Nick Coghlan | 2009-02-08 | 1 | -3/+3 |
|
|
* | Issue #1717: rename tp_compare to tp_reserved. I'll change the | Mark Dickinson | 2009-02-02 | 1 | -1/+1 |
|
|
* | Merged revisions 67750-67751 via svnmerge from | Nick Coghlan | 2008-12-14 | 1 | -0/+31 |
|
|
* | Fixes release blocker issue #3492 and #3790. | Gregory P. Smith | 2008-09-06 | 1 | -11/+11 |
|
|
* | Rename PyUnicode_AsString -> _PyUnicode_AsString and | Marc-André Lemburg | 2008-08-07 | 1 | -13/+13 |
|
|
* | Implement PEP 3121: new module initialization and finalization API. | Martin v. Löwis | 2008-06-11 | 1 | -10/+22 |
|
|
* | Renamed PyBytes to PyByteArray | Christian Heimes | 2008-05-26 | 1 | -11/+11 |
|
|
* | Merged revisions 63066-63076,63079,63081-63085,63087-63097,63099,63101-63104 ... | Alexandre Vassalotti | 2008-05-16 | 1 | -2/+9 |
|
|
* | Reverted (partially) patch r62667 to zipimport.c. | Alexandre Vassalotti | 2008-05-07 | 1 | -2/+3 |
|
|
* | Issue #1950: Fixed misusage of PyUnicode_AsString(). | Alexandre Vassalotti | 2008-05-03 | 1 | -8/+7 |
|
|
* | Merged revisions 59985-60000,60002,60005-60007,60009-60042 via svnmerge from | Christian Heimes | 2008-01-18 | 1 | -0/+2 |
|
|
* | Merged revisions 59666-59679 via svnmerge from | Christian Heimes | 2008-01-03 | 1 | -1/+1 |
|
|
* | #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. | Christian Heimes | 2007-12-19 | 1 | -1/+1 |
|
|
* | Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i... | Christian Heimes | 2007-12-02 | 1 | -2/+2 |
|
|
* | Use unicode (and bytes as appropriate) | Neal Norwitz | 2007-08-26 | 1 | -24/+27 |
|
|
* | Fix refcount leak, courtesy Christian Heines. | Guido van Rossum | 2007-08-17 | 1 | -2/+3 |
|
|
* | Remove RISCOS support | Skip Montanaro | 2007-08-16 | 1 | -10/+0 |
|
|
* | SF patch# 1766592 by Paul Colomiets. | Guido van Rossum | 2007-08-03 | 1 | -11/+20 |
|
|
* | Merged revisions 56467-56482 via svnmerge from | Martin v. Löwis | 2007-07-21 | 1 | -3/+2 |
|
|
* | Use PyUnicode_FromFormat() directly in | Walter Dörwald | 2007-06-05 | 1 | -8/+4 |
|
|
* | Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror | Walter Dörwald | 2007-05-18 | 1 | -1/+1 |
|
|
* | Merge current trunk into p3yk. This includes the PyNumber_Index API change, | Thomas Wouters | 2006-08-21 | 1 | -0/+3 |
|
|
* | Merge p3yk branch with the trunk up to revision 45595. This breaks a fair | Thomas Wouters | 2006-04-21 | 1 | -9/+2 |
|
|
* | SF #1444030: Fix several potential defects found by Coverity. | Hye-Shik Chang | 2006-03-07 | 1 | -0/+2 |
|
|
* | Patch #1352711: make zipimport raise a complete IOError | Georg Brandl | 2006-02-19 | 1 | -2/+1 |
|
|
* | Use Py_ssize_t for counts and sizes. | Martin v. Löwis | 2006-02-16 | 1 | -2/+2 |
|
|
* | Merge ssize_t branch. | Martin v. Löwis | 2006-02-15 | 1 | -2/+4 |
|
|
* | the implementation uses ZipImportError, not ZipImporterError... | Fredrik Lundh | 2006-01-15 | 1 | -1/+1 |
|
|
* | Fix icc warnings: strlen() returns size_t | Neal Norwitz | 2006-01-08 | 1 | -4/+5 |
|
|
* | update busted comment | Fred Drake | 2005-11-11 | 1 | -1/+2 |
|
|
* | Fix a bunch of imports to use code.h instead of compile.h. | Jeremy Hylton | 2005-10-21 | 1 | -1/+0 |
|
|
* | Disallow keyword arguments for type constructors that don't use them. | Georg Brandl | 2005-08-26 | 1 | -0/+3 |
|
|
* | SF patch 1062495: Modules/zipimport.c does not compile on solaris | Raymond Hettinger | 2004-11-10 | 1 | -5/+5 |
|
|
* | Patch #801349: 64-bit fix for AMD64 from Gwenole Beauchesne. | Just van Rossum | 2003-09-07 | 1 | -1/+1 |
|
|
* | Change the zipimport implementation to accept files containing | Thomas Heller | 2003-07-22 | 1 | -2/+7 |
|
|
* | Remove unused variable. | Jeremy Hylton | 2003-07-17 | 1 | -2/+1 |
|
|
* | Patch #734231: Update RiscOS support. In particular, correct | Martin v. Löwis | 2003-05-10 | 1 | -0/+10 |
|
|
* | tentative fix for #712322: modification time stamp checking failed | Just van Rossum | 2003-04-08 | 1 | -1/+1 |
|
|
* | Make private function and data static. | Neal Norwitz | 2003-03-23 | 1 | -2/+3 |
|
|