Staging
v0.5.1
https://github.com/python/cpython
Revision db610e909b07ced88e73fb0c23e04eed0d4e1b0d authored by Benjamin Peterson on 08 September 2017, 21:30:07 UTC, committed by GitHub on 08 September 2017, 21:30:07 UTC
1 parent 4c81401
Raw File
Tip revision: db610e909b07ced88e73fb0c23e04eed0d4e1b0d authored by Benjamin Peterson on 08 September 2017, 21:30:07 UTC
delete dead locale initialization code for windows (#3461)
Tip revision: db610e9
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