summaryrefslogtreecommitdiff
path: root/Modules/pyexpat.c
Commit message (Expand)AuthorAgeFilesLines
* - back out Expat change; the final fix to Expat will be differentFred Drake2006-07-061-1/+31
* Make use of METH_O and METH_NOARGS where possible.Georg Brandl2006-05-291-34/+19
* err is no longer usedNeal Norwitz2006-04-161-1/+1
* Use Py_VISIT in all tp_traverse methods, instead of traversing manually orThomas Wouters2006-04-151-7/+2
* Use Py_CLEAR instead of in-place DECREF/XDECREF or custom macros, forThomas Wouters2006-04-151-2/+1
* Fix some missing checks after PyTuple_New, PyList_New, PyDict_NewGeorg Brandl2006-03-171-0/+2
* Fix logic error and DECREF reported by Coverity.Neal Norwitz2006-03-081-4/+4
* Revert backwards-incompatible const changes.Martin v. Löwis2006-02-271-1/+1
* Check return result from Py_InitModule*(). This API can fail.Neal Norwitz2006-01-191-0/+2
* Fix SF bug #1072182, problems with signed characters.Neal Norwitz2005-12-191-1/+1
* moved magic into structure (mainly to simplify the client code)Fredrik Lundh2005-12-131-5/+5
* renamed dispatch -> capi to match other CAPI implementationsFredrik Lundh2005-12-131-24/+24
* added cobject-based expat dispatch mechanism to pyexpatFredrik Lundh2005-12-131-0/+31
* Add const to several API functions that take char *.Jeremy Hylton2005-12-101-2/+2
* Fix a bunch of imports to use code.h instead of compile.h.Jeremy Hylton2005-10-211-1/+0
* Patch #1309009, Fix segfault in pyexpat when the XML document isNeal Norwitz2005-09-301-1/+6
* Patches #925152, #1118602: Avoid reading after the end of the bufferMartin v. Löwis2005-03-041-1/+1
* Synchronize with PyXML 1.79:Martin v. Löwis2004-10-131-1/+10
* Patch #1014930. Expose current parse location to XMLParser.Dave Cole2004-08-261-0/+14
* make exception propogation more efficient; this avoids having Expat parseFred Drake2004-08-131-5/+7
* add constants for many error values added over the past couple ofFred Drake2004-08-041-0/+17
* Fix the reference count errors revealed by the test suite...Michael W. Hudson2004-08-031-1/+3
* Simplify and speedup uses of Py_BuildValue():Raymond Hettinger2003-10-121-1/+1
* Repair mis-application of Jeremy's patch. Thanks, Neal!Fred Drake2003-07-211-1/+1
* Fix memory leak reported & discussed on the Python XML-SIG mailing list.Fred Drake2003-07-211-5/+13
* Fix several bugs in handling of exceptions with trace function enabled.Jeremy Hylton2003-06-271-15/+48
* Fix memory leak: free memory storing the content model passed to theFred Drake2003-02-021-24/+48
* Conditionalize features not found in PyXML 1.95.2.Martin v. Löwis2003-01-211-0/+15
* Merge with PyXML 1.71:Martin v. Löwis2003-01-211-16/+136
* SF # 669553, fix memory (ref) leaksNeal Norwitz2003-01-191-13/+25
* Assorted patches from Armin Rigo:Michael W. Hudson2002-11-081-1/+1
* Be more careful with the type of the xmlhandlersetter; it takes anFred Drake2002-09-241-1/+1
* Minor change for symmetry with PyXML: PyDoc_STR should not includeFred Drake2002-09-021-1/+1
* Squash a few calls to the hideously expensive PyObject_CallObject(o,a)Guido van Rossum2002-08-161-1/+1
* Add trace_frame. Fixes #534864. Backported to 2.2.Martin v. Löwis2002-08-041-0/+38
* Return NULL instead of 0 from function with a pointer return value.Fred Drake2002-07-191-1/+1
* Land Patch [ 566100 ] Rationalize DL_IMPORT and DL_EXPORT.Mark Hammond2002-07-191-3/+2
* Removed more stray instances of statichere, but left _sre.c alone.Tim Peters2002-07-171-1/+1
* staticforward bites the dust.Jeremy Hylton2002-07-171-2/+2
* Do not depend on pymemcompat.h (was only used for PyXML); Martin likesFred Drake2002-07-021-4/+6
* Bring this back into sync with PyXML revision 1.58.Fred Drake2002-07-011-3/+10
* Define PyDoc_STRVAR if it is not available (PyXML 1.54).Martin v. Löwis2002-06-301-63/+11
* Undo usage of PyOS_snprintf (rev. 1.51 of PyXML).Martin v. Löwis2002-06-301-1/+3
* Added character data buffering to pyexpat parser objects.Fred Drake2002-06-281-20/+157
* pyexpat code cleanup and minor refactorings:Fred Drake2002-06-281-221/+176
* Integrate the changes from PyXML's version of pyexpat.c revisionsFred Drake2002-06-271-46/+109
* Patch #568124: Add doc string macros.Martin v. Löwis2002-06-131-22/+21
* Remove compiler warnings on Solaris 8.Neal Norwitz2002-03-201-1/+1
* Use included Expat library. Drop support for older expat versions.Martin v. Löwis2002-02-111-171/+0
* Patch supplied by Burton Radons for his own SF bug #487390: ModifyingGuido van Rossum2001-12-081-1/+1