| Commit message (Expand) | Author | Age | Files | Lines |
* | Merged revisions 72487-72488,72879 via svnmerge from | Alexandre Vassalotti | 2009-07-21 | 1 | -43/+1 |
|
|
* | - Issue #5590: Remove unused global variable in pyexpat extension. | Matthias Klose | 2009-06-22 | 1 | -1/+0 |
|
|
* | add a replacement API for PyCObject, PyCapsule #5630 | Benjamin Peterson | 2009-05-05 | 1 | -2/+2 |
|
|
* | Issue #1717: rename tp_compare to tp_reserved. I'll change the | Mark Dickinson | 2009-02-02 | 1 | -1/+1 |
|
|
* | Issue #1717, stage 2: remove uses of tp_compare in Modules and most | Mark Dickinson | 2009-02-01 | 1 | -1/+1 |
|
|
* | Rename PyUnicode_AsString -> _PyUnicode_AsString and | Marc-André Lemburg | 2008-08-07 | 1 | -1/+1 |
|
|
* | #3247: Get rid of Py_FindMethod: | Amaury Forgeot d'Arc | 2008-07-02 | 1 | -12/+17 |
|
|
* | Implement PEP 3121: new module initialization and finalization API. | Martin v. Löwis | 2008-06-11 | 1 | -8/+20 |
|
|
* | Renamed PyString to PyBytes | Christian Heimes | 2008-05-26 | 1 | -4/+4 |
|
|
* | Renamed PyBytes to PyByteArray | Christian Heimes | 2008-05-26 | 1 | -2/+2 |
|
|
* | Merged revisions 59843-59863 via svnmerge from | Christian Heimes | 2008-01-09 | 1 | -0/+44 |
|
|
* | #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. | Christian Heimes | 2007-12-19 | 1 | -3/+3 |
|
|
* | Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i... | Christian Heimes | 2007-12-02 | 1 | -15/+15 |
|
|
* | Fixed #1508 Removal of stale code in _csv.c / pyexpat.c | Christian Heimes | 2007-11-28 | 1 | -14/+0 |
|
|
* | Fixed bug #1020 pyexpat.XMParserType broken (was: pydoc doesn't work on pyexpat) | Christian Heimes | 2007-11-21 | 1 | -1/+2 |
|
|
* | Merging the py3k-pep3137 branch back into the py3k branch. | Guido van Rossum | 2007-11-06 | 1 | -5/+9 |
|
|
* | Patch #1272, by Christian Heimes and Alexandre Vassalotti. | Guido van Rossum | 2007-10-15 | 1 | -2/+2 |
|
|
* | Use unicode | Neal Norwitz | 2007-08-25 | 1 | -5/+5 |
|
|
* | Remove support for __members__ and __methods__. There still might be | Neal Norwitz | 2007-08-11 | 1 | -28/+46 |
|
|
* | SF patch# 1759016 by Joe Gregorio, who writes: | Guido van Rossum | 2007-07-23 | 1 | -77/+17 |
|
|
* | Merged revisions 56467-56482 via svnmerge from | Martin v. Löwis | 2007-07-21 | 1 | -4/+3 |
|
|
* | Rip out the file object's implementation. | Guido van Rossum | 2007-06-12 | 1 | -4/+1 |
|
|
* | Get rid of all #ifdef Py_USING_UNICODE (it is always present now). | Guido van Rossum | 2007-05-03 | 1 | -64/+0 |
|
|
* | Jiwon Seo's PEP 3102 implementation. | Guido van Rossum | 2006-10-27 | 1 | -0/+1 |
|
|
* | Get rid of the last mention of WITH_CYCLE_GC that I could find. | Guido van Rossum | 2006-08-17 | 1 | -6/+0 |
|
|
* | Merged revisions 46753-51188 via svnmerge from | Thomas Wouters | 2006-08-11 | 1 | -1/+31 |
|
|
* | Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn | Thomas Wouters | 2006-06-08 | 1 | -34/+19 |
|
|
* | Merge p3yk branch with the trunk up to revision 45595. This breaks a fair | Thomas Wouters | 2006-04-21 | 1 | -10/+6 |
|
|
* | Fix logic error and DECREF reported by Coverity. | Neal Norwitz | 2006-03-08 | 1 | -4/+4 |
|
|
* | Revert backwards-incompatible const changes. | Martin v. Löwis | 2006-02-27 | 1 | -1/+1 |
|
|
* | Check return result from Py_InitModule*(). This API can fail. | Neal Norwitz | 2006-01-19 | 1 | -0/+2 |
|
|
* | Fix SF bug #1072182, problems with signed characters. | Neal Norwitz | 2005-12-19 | 1 | -1/+1 |
|
|
* | moved magic into structure (mainly to simplify the client code) | Fredrik Lundh | 2005-12-13 | 1 | -5/+5 |
|
|
* | renamed dispatch -> capi to match other CAPI implementations | Fredrik Lundh | 2005-12-13 | 1 | -24/+24 |
|
|
* | added cobject-based expat dispatch mechanism to pyexpat | Fredrik Lundh | 2005-12-13 | 1 | -0/+31 |
|
|
* | Add const to several API functions that take char *. | Jeremy Hylton | 2005-12-10 | 1 | -2/+2 |
|
|
* | Fix a bunch of imports to use code.h instead of compile.h. | Jeremy Hylton | 2005-10-21 | 1 | -1/+0 |
|
|
* | Patch #1309009, Fix segfault in pyexpat when the XML document is | Neal Norwitz | 2005-09-30 | 1 | -1/+6 |
|
|
* | Patches #925152, #1118602: Avoid reading after the end of the buffer | Martin v. Löwis | 2005-03-04 | 1 | -1/+1 |
|
|
* | Synchronize with PyXML 1.79: | Martin v. Löwis | 2004-10-13 | 1 | -1/+10 |
|
|
* | Patch #1014930. Expose current parse location to XMLParser. | Dave Cole | 2004-08-26 | 1 | -0/+14 |
|
|
* | make exception propogation more efficient; this avoids having Expat parse | Fred Drake | 2004-08-13 | 1 | -5/+7 |
|
|
* | add constants for many error values added over the past couple of | Fred Drake | 2004-08-04 | 1 | -0/+17 |
|
|
* | Fix the reference count errors revealed by the test suite... | Michael W. Hudson | 2004-08-03 | 1 | -1/+3 |
|
|
* | Simplify and speedup uses of Py_BuildValue(): | Raymond Hettinger | 2003-10-12 | 1 | -1/+1 |
|
|
* | Repair mis-application of Jeremy's patch. Thanks, Neal! | Fred Drake | 2003-07-21 | 1 | -1/+1 |
|
|
* | Fix memory leak reported & discussed on the Python XML-SIG mailing list. | Fred Drake | 2003-07-21 | 1 | -5/+13 |
|
|
* | Fix several bugs in handling of exceptions with trace function enabled. | Jeremy Hylton | 2003-06-27 | 1 | -15/+48 |
|
|
* | Fix memory leak: free memory storing the content model passed to the | Fred Drake | 2003-02-02 | 1 | -24/+48 |
|
|
* | Conditionalize features not found in PyXML 1.95.2. | Martin v. Löwis | 2003-01-21 | 1 | -0/+15 |
|
|