Staging
v0.8.1
https://github.com/python/cpython
Revision d8c174afd5842e95627d6ee13dadc3d690f9b5af authored by Ned Deily on 19 September 2017, 03:18:48 UTC, committed by Ned Deily on 19 September 2017, 03:18:48 UTC
1 parent 2f61f64
Raw File
Tip revision: d8c174afd5842e95627d6ee13dadc3d690f9b5af authored by Ned Deily on 19 September 2017, 03:18:48 UTC
Bump to 3.6.3rc1
Tip revision: d8c174a
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 XML_NS 1
#define XML_DTD 1
#define XML_CONTEXT_BYTES 1024

#endif /* EXPAT_CONFIG_H */
back to top