- d37b9d7 Port #16012 fix: parameter parsing regression in pyexpat parser UseForeignDTD() method. by Georg Brandl · 12 years ago
- 721738f Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors correctly. by Antoine Pitrou · 12 years ago
- 6f430e4 Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors correctly. by Antoine Pitrou · 12 years ago
- 2b6b73e Issue #14007: implement doctype() method calling in XMLParser of _elementtree. by Eli Bendersky · 12 years ago
- c362cbd Fixes Issue 14234: fix for the previous commit, keep compilation when by Gregory P. Smith · 13 years ago
- 2522771 Fixes Issue 14234: fix for the previous commit, keep compilation when by Gregory P. Smith · 13 years ago
- 70c9c4d Fixes Issue #14234: CVE-2012-0876: Randomize hashes of xml attributes by Gregory P. Smith · 13 years ago
- 373c740 Fixes Issue #14234: CVE-2012-0876: Randomize hashes of xml attributes by Gregory P. Smith · 13 years ago
- 8e91cf6 Fixes issue #14234: CVE-2012-0876: Randomize hashes of xml attributes by Gregory P. Smith · 13 years ago
- bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
- 1ee1b6f Use identifier API for PyObject_GetAttrString. by Martin v. Löwis · 13 years ago
- 9e5bd6c pyexat uses the new Unicode API by Victor Stinner · 13 years ago
- d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
- fdb2d90 merge 3.1 by Benjamin Peterson · 13 years ago
- 52e6144 return NULL on error by Benjamin Peterson · 13 years ago
- 8c6f88e remove __version__s dependent on subversion keyword expansion (closes #12221) by Benjamin Peterson · 13 years ago
- 9e3e1c6 merge 3.2 (#12221) by Benjamin Peterson · 13 years ago
- 0aa71f7 merge 3.1 (#12221) by Benjamin Peterson · 13 years ago
- a22c98d simply use the Python version for pyexpat.__version__ #12221 by Benjamin Peterson · 13 years ago
- d60b74c Merge with 3.2. by Ezio Melotti · 14 years ago
- fdb2df4 Remove unnecessary call to PyErr_Clear. by Ezio Melotti · 14 years ago
- 499dfcf Issue #10833: Use PyUnicode_FromFormat() and PyErr_Format() instead of by Victor Stinner · 14 years ago
- 95f1dfc Issue #9566: Fix pyparse.xmlparser.ParseFile() by Victor Stinner · 14 years ago
- 9d6f936 Issue #9566: PyUnicode_FromFormatV() doesn't support %zi, use %zd instead by Victor Stinner · 14 years ago
- ed7e222 Issue #9566: explain why (int)len cannot underflow by Victor Stinner · 14 years ago
- 0fcab4a Issue #9566: use Py_ssize_t instead of int by Victor Stinner · 14 years ago
- 23683ef Issue #10333: Remove ancient GC API, which has been deprecated since Python 2.2. by Antoine Pitrou · 14 years ago
- e239d23 Issue #6697: Fixed instances of _PyUnicode_AsString() result not checked for NULL by Alexander Belopolsky · 14 years ago
- 5bbbf1d Merged revisions 85536 via svnmerge from by Georg Brandl · 14 years ago
- c01537f #9054: fix crash when using pyexpat with a system expat lib version 2.0.1. by Georg Brandl · 14 years ago
- b4dac71 #5355: Provide mappings from Expat error numbers to string descriptions and backwards, in order to actually make it possible to analyze error codes provided by ExpatError. by Georg Brandl · 14 years ago
- 5e1fdac Remove compatibility code for Python < 2.1, < 2.2 and < 2.4. by Georg Brandl · 14 years ago
- b4ba986 Issue #9402: pyexpat uses Py_DECREF() instead of PyObject_DEL() by Victor Stinner · 14 years ago
- 4e7f285 remove dead code #9292 by Benjamin Peterson · 14 years ago
- 7f14f0d Recorded merge of revisions 81032 via svnmerge from by Antoine Pitrou · 15 years ago
- f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 15 years ago
- 7b82b40 Merged revisions 72487-72488,72879 via svnmerge from by Alexandre Vassalotti · 15 years ago
- ab2b755 - Issue #5590: Remove unused global variable in pyexpat extension. by Matthias Klose · 15 years ago
- b173f78 add a replacement API for PyCObject, PyCapsule #5630 by Benjamin Peterson · 16 years ago
- e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 16 years ago
- 211c625 Issue #1717, stage 2: remove uses of tp_compare in Modules and most Objects. by Mark Dickinson · 16 years ago
- 4cc0f24 Rename PyUnicode_AsString -> _PyUnicode_AsString and by Marc-André Lemburg · 16 years ago
- ba4105c #3247: Get rid of Py_FindMethod: by Amaury Forgeot d'Arc · 16 years ago
- 1a21451 Implement PEP 3121: new module initialization and finalization API. by Martin v. Löwis · 16 years ago
- 72b710a Renamed PyString to PyBytes by Christian Heimes · 16 years ago
- 9c4756e Renamed PyBytes to PyByteArray by Christian Heimes · 16 years ago
- 2380ac7 Merged revisions 59843-59863 via svnmerge from by Christian Heimes · 17 years ago
- 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
- 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
- 218a5ed Fixed #1508 Removal of stale code in _csv.c / pyexpat.c by Christian Heimes · 17 years ago
- 651b61f Fixed bug #1020 pyexpat.XMParserType broken (was: pydoc doesn't work on pyexpat) by Christian Heimes · 17 years ago
- 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
- 00bc0e0 Patch #1272, by Christian Heimes and Alexandre Vassalotti. by Guido van Rossum · 17 years ago
- 392c5be Use unicode by Neal Norwitz · 17 years ago
- 8dfc4a9 Remove support for __members__ and __methods__. There still might be by Neal Norwitz · 17 years ago
- 4ca9471 SF patch# 1759016 by Joe Gregorio, who writes: by Guido van Rossum · 17 years ago
- 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
- da5b8f2 Rip out the file object's implementation. by Guido van Rossum · 17 years ago
- 8d30cc0 Get rid of all #ifdef Py_USING_UNICODE (it is always present now). by Guido van Rossum · 18 years ago
- 4f72a78 Jiwon Seo's PEP 3102 implementation. by Guido van Rossum · 18 years ago
- d033ddf Get rid of the last mention of WITH_CYCLE_GC that I could find. by Guido van Rossum · 18 years ago
- 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
- 4d70c3d Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn by Thomas Wouters · 18 years ago
- 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 19 years ago
- 2f5e990 Fix logic error and DECREF reported by Coverity. by Neal Norwitz · 19 years ago
- 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 19 years ago
- 1ac754f Check return result from Py_InitModule*(). This API can fail. by Neal Norwitz · 19 years ago
- 30b5c5d Fix SF bug #1072182, problems with signed characters. by Neal Norwitz · 19 years ago
- cc117db moved magic into structure (mainly to simplify the client code) by Fredrik Lundh · 19 years ago
- d7a4288 renamed dispatch -> capi to match other CAPI implementations by Fredrik Lundh · 19 years ago
- c334504 added cobject-based expat dispatch mechanism to pyexpat by Fredrik Lundh · 19 years ago
- af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
- ec97a28 Fix a bunch of imports to use code.h instead of compile.h. by Jeremy Hylton · 19 years ago
- 484d9a4 Patch #1309009, Fix segfault in pyexpat when the XML document is by Neal Norwitz · 19 years ago
- fd78a6f Patches #925152, #1118602: Avoid reading after the end of the buffer by Martin v. Löwis · 20 years ago
- 9171f02 Synchronize with PyXML 1.79: by Martin v. Löwis · 20 years ago
- 3203efb Patch #1014930. Expose current parse location to XMLParser. by Dave Cole · 20 years ago
- 39689c5 make exception propogation more efficient; this avoids having Expat parse by Fred Drake · 20 years ago
- 283b670 add constants for many error values added over the past couple of years by Fred Drake · 20 years ago
- 0bb8454 Fix the reference count errors revealed by the test suite... by Michael W. Hudson · 20 years ago
- 8ae4689 Simplify and speedup uses of Py_BuildValue(): by Raymond Hettinger · 21 years ago
- f239c6d Repair mis-application of Jeremy's patch. Thanks, Neal! by Fred Drake · 21 years ago
- 7b6caff Fix memory leak reported & discussed on the Python XML-SIG mailing list. by Fred Drake · 21 years ago
- 9263f57 Fix several bugs in handling of exceptions with trace function enabled. by Jeremy Hylton · 21 years ago
- 06dd8cf Fix memory leak: free memory storing the content model passed to the by Fred Drake · 22 years ago
- c847f40 Conditionalize features not found in PyXML 1.95.2. by Martin v. Löwis · 22 years ago
- 069dde2 Merge with PyXML 1.71: by Martin v. Löwis · 22 years ago
- fa56e2d SF # 669553, fix memory (ref) leaks by Neal Norwitz · 22 years ago
- 019a78e Assorted patches from Armin Rigo: by Michael W. Hudson · 22 years ago
- 117ac85 Be more careful with the type of the xmlhandlersetter; it takes an by Fred Drake · 22 years ago
- f57b22a Minor change for symmetry with PyXML: PyDoc_STR should not include by Fred Drake · 22 years ago
- 84b2bed Squash a few calls to the hideously expensive PyObject_CallObject(o,a) by Guido van Rossum · 22 years ago
- 7d6e19d Add trace_frame. Fixes #534864. Backported to 2.2. by Martin v. Löwis · 22 years ago
- 814f9fe Return NULL instead of 0 from function with a pointer return value. by Fred Drake · 22 years ago
- 8235ea1 Land Patch [ 566100 ] Rationalize DL_IMPORT and DL_EXPORT. by Mark Hammond · 22 years ago
- 0c32279 Removed more stray instances of statichere, but left _sre.c alone. by Tim Peters · 22 years ago
- 938ace6 staticforward bites the dust. by Jeremy Hylton · 22 years ago
- b28467b Do not depend on pymemcompat.h (was only used for PyXML); Martin likes by Fred Drake · 22 years ago
- 7c75bf2 Bring this back into sync with PyXML revision 1.58. by Fred Drake · 22 years ago
- b4fcf4d Define PyDoc_STRVAR if it is not available (PyXML 1.54). by Martin v. Löwis · 22 years ago