Commit a726eee9 authored by Kevin Modzelewski's avatar Kevin Modzelewski

We were missing this define

parent b2372b58
......@@ -32,6 +32,14 @@
#include "patchlevel.h"
#include "pyconfig.h"
/* Cyclic gc is always enabled, starting with release 2.3a1. Supply the
* old symbol for the benefit of extension modules written before then
* that may be conditionalizing on it. The core doesn't use it anymore.
*/
#ifndef WITH_CYCLE_GC
#define WITH_CYCLE_GC 1
#endif
#include <limits.h>
#include <stdio.h>
......
# expected: reffail
# - "pyexpat.xmlparser needs a tp_traverse"
# test for xml.dom.minidom
import pickle
......
# expected: reffail
# - "pyexpat.xmlparser needs a tp_traverse"
# regression test for SAX 2.0 -*- coding: utf-8 -*-
# $Id$
......
# expected: reffail
# - "pyexpat.xmlparser needs a tp_traverse"
# XXX TypeErrors on calling handlers, or on bad return values from a
# handler, are obscure and unhelpful.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment