Staging
v0.8.1
https://github.com/python/cpython
Revision 3cae16d2e98ffaa89ddd311df70a857dfaff4020 authored by Serhiy Storchaka on 11 December 2018, 08:51:27 UTC, committed by GitHub on 11 December 2018, 08:51:27 UTC
(cherry picked from commit bb86bf4c4eaa30b1f5192dab9f389ce0bb61114d)
1 parent 62674f3
Raw File
Tip revision: 3cae16d2e98ffaa89ddd311df70a857dfaff4020 authored by Serhiy Storchaka on 11 December 2018, 08:51:27 UTC
bpo-35444: Fix error handling when fail to look up builtin "getattr". (GH-11047) (GH-11107)
Tip revision: 3cae16d
expat_config.h
/*
 * Expat configuration for python. This file is not part of the expat
 * distribution.
 */
#ifndef EXPAT_CONFIG_H
#define EXPAT_CONFIG_H

#include <pyconfig.h>
#ifdef WORDS_BIGENDIAN
#define BYTEORDER 4321
#else
#define BYTEORDER 1234
#endif

#define HAVE_MEMMOVE 1

#define XML_NS 1
#define XML_DTD 1
#define XML_CONTEXT_BYTES 1024

#endif /* EXPAT_CONFIG_H */
back to top