summaryrefslogtreecommitdiffstats
path: root/Modules/expat/expat.h
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2017-08-18 21:43:54 (GMT)
committerGitHub <noreply@github.com>2017-08-18 21:43:54 (GMT)
commit93d0cb58b4da2a88c56f472c6c19491cc7a390df (patch)
treefb322e20a1808ece6a5fa3d9f3fb2a1c7f53bc14 /Modules/expat/expat.h
parentc99d41f9c0304fcf06550515c3db55f93a629e9e (diff)
downloadcpython-93d0cb58b4da2a88c56f472c6c19491cc7a390df.zip
cpython-93d0cb58b4da2a88c56f472c6c19491cc7a390df.tar.gz
cpython-93d0cb58b4da2a88c56f472c6c19491cc7a390df.tar.bz2
bpo-30947: Update libexpat from 2.2.1 to 2.2.3 (#3106)
* bpo-30947: Update libexpat from 2.2.1 to 2.2.3 * Add NEWS entry * Add new loadlibrary.c * expat_external.h: restore include "pyexpatns.h" * PCbuild: add expat/loadlibrary.c * Define XML_POOR_ENTROPY to compile expat
Diffstat (limited to 'Modules/expat/expat.h')
-rw-r--r--Modules/expat/expat.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/Modules/expat/expat.h b/Modules/expat/expat.h
index 28b0f95..7e5bbb7 100644
--- a/Modules/expat/expat.h
+++ b/Modules/expat/expat.h
@@ -24,7 +24,6 @@ extern "C" {
struct XML_ParserStruct;
typedef struct XML_ParserStruct *XML_Parser;
-/* Should this be defined using stdbool.h when C99 is available? */
typedef unsigned char XML_Bool;
#define XML_TRUE ((XML_Bool) 1)
#define XML_FALSE ((XML_Bool) 0)
@@ -1049,7 +1048,7 @@ XML_GetFeatureList(void);
*/
#define XML_MAJOR_VERSION 2
#define XML_MINOR_VERSION 2
-#define XML_MICRO_VERSION 1
+#define XML_MICRO_VERSION 3
#ifdef __cplusplus
}