gh-115398: Increment PyExpat_CAPI_MAGIC for SetReparseDeferralEnabled addition (GH-116301)

* Increment PyExpat_CAPI_MAGIC due to SetReparseDeferralEnabled addition.

This is a followup to git commit
6a95676bb5 from Github PR #115623.

* RESTify news API list.
This commit is contained in:
Gregory P. Smith 2024-03-04 02:36:27 -08:00 committed by GitHub
parent 17c4849981
commit eda2963378
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 6 deletions

View file

@ -3,7 +3,7 @@
/* note: you must import expat.h before importing this module! */ /* note: you must import expat.h before importing this module! */
#define PyExpat_CAPI_MAGIC "pyexpat.expat_CAPI 1.1" #define PyExpat_CAPI_MAGIC "pyexpat.expat_CAPI 1.2"
#define PyExpat_CAPSULE_NAME "pyexpat.expat_CAPI" #define PyExpat_CAPSULE_NAME "pyexpat.expat_CAPI"
struct PyExpat_CAPI struct PyExpat_CAPI

View file

@ -1,8 +1,8 @@
Allow controlling Expat >=2.6.0 reparse deferral (CVE-2023-52425) by adding Allow controlling Expat >=2.6.0 reparse deferral (CVE-2023-52425) by adding
five new methods: five new methods:
* ``xml.etree.ElementTree.XMLParser.flush`` * :meth:`xml.etree.ElementTree.XMLParser.flush`
* ``xml.etree.ElementTree.XMLPullParser.flush`` * :meth:`xml.etree.ElementTree.XMLPullParser.flush`
* ``xml.parsers.expat.xmlparser.GetReparseDeferralEnabled`` * :meth:`xml.parsers.expat.xmlparser.GetReparseDeferralEnabled`
* ``xml.parsers.expat.xmlparser.SetReparseDeferralEnabled`` * :meth:`xml.parsers.expat.xmlparser.SetReparseDeferralEnabled`
* ``xml.sax.expatreader.ExpatParser.flush`` * :meth:`xml.sax.expatreader.ExpatParser.flush`