| Commit message (Expand) | Author | Age | Files | Lines |
* | PyCode_NewEmpty: | Jeffrey Yasskin | 2009-05-08 | 1 | -42/+1 |
|
|
* | This reverts r63675 based on the discussion in this thread: | Gregory P. Smith | 2008-06-09 | 1 | -14/+14 |
|
|
* | Renamed PyString to PyBytes | Christian Heimes | 2008-05-26 | 1 | -14/+14 |
|
|
* | Patch 1137: allow assigning to .buffer_size attribute of PyExpat.parser objects | Andrew M. Kuchling | 2008-01-08 | 1 | -0/+44 |
|
|
* | #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC... | Christian Heimes | 2007-12-19 | 1 | -2/+2 |
|
|
* | PEP 3123: Provide forward compatibility with Python 3.0, while keeping | Martin v. Löwis | 2007-07-21 | 1 | -4/+3 |
|
|
* | - back out Expat change; the final fix to Expat will be different | Fred Drake | 2006-07-06 | 1 | -1/+31 |
|
|
* | Make use of METH_O and METH_NOARGS where possible. | Georg Brandl | 2006-05-29 | 1 | -34/+19 |
|
|
* | err is no longer used | Neal Norwitz | 2006-04-16 | 1 | -1/+1 |
|
|
* | Use Py_VISIT in all tp_traverse methods, instead of traversing manually or | Thomas Wouters | 2006-04-15 | 1 | -7/+2 |
|
|
* | Use Py_CLEAR instead of in-place DECREF/XDECREF or custom macros, for | Thomas Wouters | 2006-04-15 | 1 | -2/+1 |
|
|
* | Fix some missing checks after PyTuple_New, PyList_New, PyDict_New | Georg Brandl | 2006-03-17 | 1 | -0/+2 |
|
|
* | 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 |
|
|
* | Merge with PyXML 1.71: | Martin v. Löwis | 2003-01-21 | 1 | -16/+136 |
|
|
* | SF # 669553, fix memory (ref) leaks | Neal Norwitz | 2003-01-19 | 1 | -13/+25 |
|
|
* | Assorted patches from Armin Rigo: | Michael W. Hudson | 2002-11-08 | 1 | -1/+1 |
|
|
* | Be more careful with the type of the xmlhandlersetter; it takes an | Fred Drake | 2002-09-24 | 1 | -1/+1 |
|
|
* | Minor change for symmetry with PyXML: PyDoc_STR should not include | Fred Drake | 2002-09-02 | 1 | -1/+1 |
|
|
* | Squash a few calls to the hideously expensive PyObject_CallObject(o,a) | Guido van Rossum | 2002-08-16 | 1 | -1/+1 |
|
|
* | Add trace_frame. Fixes #534864. Backported to 2.2. | Martin v. Löwis | 2002-08-04 | 1 | -0/+38 |
|
|
* | Return NULL instead of 0 from function with a pointer return value. | Fred Drake | 2002-07-19 | 1 | -1/+1 |
|
|
* | Land Patch [ 566100 ] Rationalize DL_IMPORT and DL_EXPORT. | Mark Hammond | 2002-07-19 | 1 | -3/+2 |
|
|
* | Removed more stray instances of statichere, but left _sre.c alone. | Tim Peters | 2002-07-17 | 1 | -1/+1 |
|
|
* | staticforward bites the dust. | Jeremy Hylton | 2002-07-17 | 1 | -2/+2 |
|
|
* | Do not depend on pymemcompat.h (was only used for PyXML); Martin likes | Fred Drake | 2002-07-02 | 1 | -4/+6 |
|
|
* | Bring this back into sync with PyXML revision 1.58. | Fred Drake | 2002-07-01 | 1 | -3/+10 |
|
|
* | Define PyDoc_STRVAR if it is not available (PyXML 1.54). | Martin v. Löwis | 2002-06-30 | 1 | -63/+11 |
|
|
* | Undo usage of PyOS_snprintf (rev. 1.51 of PyXML). | Martin v. Löwis | 2002-06-30 | 1 | -1/+3 |
|
|
* | Added character data buffering to pyexpat parser objects. | Fred Drake | 2002-06-28 | 1 | -20/+157 |
|
|