1. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  2. 7b82b40 Merged revisions 72487-72488,72879 via svnmerge from by Alexandre Vassalotti · 15 years ago
  3. ab2b755 - Issue #5590: Remove unused global variable in pyexpat extension. by Matthias Klose · 15 years ago
  4. b173f78 add a replacement API for PyCObject, PyCapsule #5630 by Benjamin Peterson · 15 years ago
  5. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 15 years ago
  6. 211c625 Issue #1717, stage 2: remove uses of tp_compare in Modules and most Objects. by Mark Dickinson · 16 years ago
  7. 4cc0f24 Rename PyUnicode_AsString -> _PyUnicode_AsString and by Marc-André Lemburg · 16 years ago
  8. ba4105c #3247: Get rid of Py_FindMethod: by Amaury Forgeot d'Arc · 16 years ago
  9. 1a21451 Implement PEP 3121: new module initialization and finalization API. by Martin v. Löwis · 16 years ago
  10. 72b710a Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  11. 9c4756e Renamed PyBytes to PyByteArray by Christian Heimes · 16 years ago
  12. 2380ac7 Merged revisions 59843-59863 via svnmerge from by Christian Heimes · 17 years ago
  13. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
  14. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
  15. 218a5ed Fixed #1508 Removal of stale code in _csv.c / pyexpat.c by Christian Heimes · 17 years ago
  16. 651b61f Fixed bug #1020 pyexpat.XMParserType broken (was: pydoc doesn't work on pyexpat) by Christian Heimes · 17 years ago
  17. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  18. 00bc0e0 Patch #1272, by Christian Heimes and Alexandre Vassalotti. by Guido van Rossum · 17 years ago
  19. 392c5be Use unicode by Neal Norwitz · 17 years ago
  20. 8dfc4a9 Remove support for __members__ and __methods__. There still might be by Neal Norwitz · 17 years ago
  21. 4ca9471 SF patch# 1759016 by Joe Gregorio, who writes: by Guido van Rossum · 17 years ago
  22. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  23. da5b8f2 Rip out the file object's implementation. by Guido van Rossum · 17 years ago
  24. 8d30cc0 Get rid of all #ifdef Py_USING_UNICODE (it is always present now). by Guido van Rossum · 17 years ago
  25. 4f72a78 Jiwon Seo's PEP 3102 implementation. by Guido van Rossum · 18 years ago
  26. d033ddf Get rid of the last mention of WITH_CYCLE_GC that I could find. by Guido van Rossum · 18 years ago
  27. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  28. 4d70c3d Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn by Thomas Wouters · 18 years ago
  29. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  30. 2f5e990 Fix logic error and DECREF reported by Coverity. by Neal Norwitz · 18 years ago
  31. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 18 years ago
  32. 1ac754f Check return result from Py_InitModule*(). This API can fail. by Neal Norwitz · 19 years ago
  33. 30b5c5d Fix SF bug #1072182, problems with signed characters. by Neal Norwitz · 19 years ago
  34. cc117db moved magic into structure (mainly to simplify the client code) by Fredrik Lundh · 19 years ago
  35. d7a4288 renamed dispatch -> capi to match other CAPI implementations by Fredrik Lundh · 19 years ago
  36. c334504 added cobject-based expat dispatch mechanism to pyexpat by Fredrik Lundh · 19 years ago
  37. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  38. ec97a28 Fix a bunch of imports to use code.h instead of compile.h. by Jeremy Hylton · 19 years ago
  39. 484d9a4 Patch #1309009, Fix segfault in pyexpat when the XML document is by Neal Norwitz · 19 years ago
  40. fd78a6f Patches #925152, #1118602: Avoid reading after the end of the buffer by Martin v. Löwis · 19 years ago
  41. 9171f02 Synchronize with PyXML 1.79: by Martin v. Löwis · 20 years ago
  42. 3203efb Patch #1014930. Expose current parse location to XMLParser. by Dave Cole · 20 years ago
  43. 39689c5 make exception propogation more efficient; this avoids having Expat parse by Fred Drake · 20 years ago
  44. 283b670 add constants for many error values added over the past couple of years by Fred Drake · 20 years ago
  45. 0bb8454 Fix the reference count errors revealed by the test suite... by Michael W. Hudson · 20 years ago
  46. 8ae4689 Simplify and speedup uses of Py_BuildValue(): by Raymond Hettinger · 21 years ago
  47. f239c6d Repair mis-application of Jeremy's patch. Thanks, Neal! by Fred Drake · 21 years ago
  48. 7b6caff Fix memory leak reported & discussed on the Python XML-SIG mailing list. by Fred Drake · 21 years ago
  49. 9263f57 Fix several bugs in handling of exceptions with trace function enabled. by Jeremy Hylton · 21 years ago
  50. 06dd8cf Fix memory leak: free memory storing the content model passed to the by Fred Drake · 22 years ago
  51. c847f40 Conditionalize features not found in PyXML 1.95.2. by Martin v. Löwis · 22 years ago
  52. 069dde2 Merge with PyXML 1.71: by Martin v. Löwis · 22 years ago
  53. fa56e2d SF # 669553, fix memory (ref) leaks by Neal Norwitz · 22 years ago
  54. 019a78e Assorted patches from Armin Rigo: by Michael W. Hudson · 22 years ago
  55. 117ac85 Be more careful with the type of the xmlhandlersetter; it takes an by Fred Drake · 22 years ago
  56. f57b22a Minor change for symmetry with PyXML: PyDoc_STR should not include by Fred Drake · 22 years ago
  57. 84b2bed Squash a few calls to the hideously expensive PyObject_CallObject(o,a) by Guido van Rossum · 22 years ago
  58. 7d6e19d Add trace_frame. Fixes #534864. Backported to 2.2. by Martin v. Löwis · 22 years ago
  59. 814f9fe Return NULL instead of 0 from function with a pointer return value. by Fred Drake · 22 years ago
  60. 8235ea1 Land Patch [ 566100 ] Rationalize DL_IMPORT and DL_EXPORT. by Mark Hammond · 22 years ago
  61. 0c32279 Removed more stray instances of statichere, but left _sre.c alone. by Tim Peters · 22 years ago
  62. 938ace6 staticforward bites the dust. by Jeremy Hylton · 22 years ago
  63. b28467b Do not depend on pymemcompat.h (was only used for PyXML); Martin likes by Fred Drake · 22 years ago
  64. 7c75bf2 Bring this back into sync with PyXML revision 1.58. by Fred Drake · 22 years ago
  65. b4fcf4d Define PyDoc_STRVAR if it is not available (PyXML 1.54). by Martin v. Löwis · 22 years ago
  66. 6b2cf0e Undo usage of PyOS_snprintf (rev. 1.51 of PyXML). by Martin v. Löwis · 22 years ago
  67. 2a3d7db Added character data buffering to pyexpat parser objects. by Fred Drake · 22 years ago
  68. 71b63ff pyexpat code cleanup and minor refactorings: by Fred Drake · 22 years ago
  69. b91a36b Integrate the changes from PyXML's version of pyexpat.c revisions by Fred Drake · 22 years ago
  70. 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 22 years ago
  71. 3afb2d2 Remove compiler warnings on Solaris 8. Can go into 2.2.x, but not necessary. by Neal Norwitz · 22 years ago
  72. cf453fe Use included Expat library. Drop support for older expat versions. by Martin v. Löwis · 22 years ago
  73. 1464839 Patch supplied by Burton Radons for his own SF bug #487390: Modifying by Guido van Rossum · 23 years ago
  74. 885d457 sprintf -> PyOS_snprintf in some "obviously safe" cases. by Tim Peters · 23 years ago
  75. 8188e79 assert.h was not always included by Python.h; make sure we import it for by Fred Drake · 23 years ago
  76. 42ba08f Patch #473265: UpdatePairedHandlers nonsensical. by Martin v. Löwis · 23 years ago
  77. 1d7c55f Merge 1.42 from PyXML: Flag errors resulting from argument conversion problems. by Martin v. Löwis · 23 years ago
  78. 5b68ce3 Change clear_handlers argument to indicate whether this is an initialization. by Martin v. Löwis · 23 years ago
  79. 894258c Reactivate participation of expat parsers in GC. Fixes bug #462710. by Martin v. Löwis · 23 years ago
  80. 7090ed1 Include ctype.h after Python.h. by Martin v. Löwis · 23 years ago
  81. c57428d Patch to bug #461753: Allow None in ExternalEntityParserCreate. by Martin v. Löwis · 23 years ago
  82. 339d0f7 Patch #445762: Support --disable-unicode by Martin v. Löwis · 23 years ago
  83. 9544fc5 Squash compiler wng about mixing signed and unsigned in comparison. by Tim Peters · 23 years ago
  84. cde7913 ParserCreate(): Allow an empty string for the namespace_separator argument; by Fred Drake · 23 years ago
  85. 4113b13 get_version_string(): New function -- returns a Python string object that by Fred Drake · 23 years ago
  86. 30c9f39 Variety of small INC/DECREF patches that fix reported memory leaks by Jeremy Hylton · 23 years ago
  87. bb66a20 Wrap some long lines, use only C89 /* */ comments, and add spaces around by Fred Drake · 23 years ago
  88. 63cb99e Bug #132816: Compiler warning in PYEXPAT.C for extra ';' by Tim Peters · 23 years ago
  89. 6bfa31c Remove the old version of my_StartElementHandler(). This was conditionally by Fred Drake · 23 years ago
  90. bd6101c xmlparseobject: Remove the unused conv_attrs field, added an by Fred Drake · 23 years ago
  91. 85d835f set_error(): Handle construction of pyexpat.error exceptions. They by Fred Drake · 23 years ago
  92. 76192ee Support older PYTHON_API_VERSIONs for backwards compatibility. by Martin v. Löwis · 23 years ago
  93. 78dc825 Fix arguments for PyFrame_New(). The previous checkin used the wrong by Jeremy Hylton · 24 years ago
  94. 903f654 PEP 227 implementation by Jeremy Hylton · 24 years ago
  95. 3af7cc0 Fix off-by-one error in array size. by Martin v. Löwis · 24 years ago
  96. e815786 Fixed teensy memory leak, but doesn't help test_sax on Windows. by Tim Peters · 24 years ago
  97. 6512dbd Fix typo: MICRO instead of MINOR. by Martin v. Löwis · 24 years ago
  98. 0078f6c Merge with 1.25 of PyXML: by Martin v. Löwis · 24 years ago
  99. 2d4ac20 Mark the "encoding" parameter to ExternalEntityParserCreate() as optional by Fred Drake · 24 years ago
  100. 738293d When using the latest & greatest version of Expat (currently in the Expat by Fred Drake · 24 years ago