summaryrefslogtreecommitdiff
path: root/Modules/pyexpat.c
Commit message (Expand)AuthorAgeFilesLines
* [2.7] bpo-35068: Fix possible crashes in pyexpat.c. (GH-10099)Zackery Spytz2018-10-291-17/+11
* Fix several reference counting bugs in pyexpat.c. (GH-9955)Miss Islington (bot)2018-10-191-4/+8
* [2.7] bpo-34623: Use XML_SetHashSalt in _elementtree (GH-9146) (GH-9394)Christian Heimes2018-09-181-0/+5
* bpo-29591: Upgrade Modules/expat to libexpat 2.2 (#2164) (#2202)Victor Stinner2017-06-151-5/+2
* [2.7] bpo-29768: Fixed compile-time check for expat version. (#577)Serhiy Storchaka2017-03-091-1/+1
* Issue #29682:Possible missing NULL check in pyexpat (#573)svelankar2017-03-091-6/+7
* Issue #6676: Ensure a meaningful exception is raised when attemptingNed Deily2014-03-271-1/+1
* Issue #13612: Fix a buffer overflow in case of a multi-byte encoding.Eli Bendersky2013-08-041-0/+7
* Issue #16012: Fix a regression in pyexpat. The parser's UseForeignDTD()Christian Heimes2012-09-241-1/+1
* Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors...Antoine Pitrou2012-08-151-24/+30
* Fixes Issue 14234: fix for the previous commit, keep compilation whenGregory P. Smith2012-03-141-0/+5
* Fixes Issue #14234: CVE-2012-0876: Randomize hashes of xml attributesGregory P. Smith2012-03-141-0/+2
* simply use the Python version for pyexpat.__version__ #12221Benjamin Peterson2011-05-311-21/+5
* Remove unnecessary call to PyErr_Clear.Ezio Melotti2011-04-111-1/+0
* #4877: Fix a segfault in xml.parsers.expat while attempting to parse a closed...Ezio Melotti2011-04-111-26/+12
* Merged revisions 85536 via svnmerge fromGeorg Brandl2010-10-241-0/+3
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-176/+176
* Fix a Py_DECREF to a Py_XDECREF.Brett Cannon2010-05-041-1/+1
* Backported PyCapsule from 3.1, and converted most uses ofLarry Hastings2010-03-251-2/+2
* PyCode_NewEmpty:Jeffrey Yasskin2009-05-081-42/+1
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-14/+14
* Renamed PyString to PyBytesChristian Heimes2008-05-261-14/+14
* Patch 1137: allow assigning to .buffer_size attribute of PyExpat.parser objectsAndrew M. Kuchling2008-01-081-0/+44
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...Christian Heimes2007-12-191-2/+2
* PEP 3123: Provide forward compatibility with Python 3.0, while keepingMartin v. Löwis2007-07-211-4/+3
* - 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