Staging
v0.8.1
Revision 87eee631fb1ae38aa15ebd9741a1af82dd7b4ea0 authored by Amaury Forgeot d'Arc on 17 October 2008, 20:15:53 UTC, committed by Amaury Forgeot d'Arc on 17 October 2008, 20:15:53 UTC
when a subclass forgets to call the base __init__ method,
or when __init__ is called a second time with invalid parameters

Patch by Alexandre Vassalotti.
1 parent 869bad9
Raw File
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