From 468a4c5f859bd260b137c41090aae957f204aae3 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 11 Feb 2013 01:12:25 -0600 Subject: [PATCH] Fix unintended rename --- lib/kross/python/cxx/cxx_extensions.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/kross/python/cxx/cxx_extensions.cxx b/lib/kross/python/cxx/cxx_extensions.cxx index eb9bd4508..f9c942adf 100644 --- a/lib/kross/python/cxx/cxx_extensions.cxx +++ b/lib/kross/python/cxx/cxx_extensions.cxx @@ -316,7 +316,7 @@ PythonType::PythonType( size_t basic_size, int itemsize, const char *default_nam #if PY_MAJOR_VERSION > 2 || (PY_MAJOR_VERSION == 2 && PY_MINOR_VERSION >= 1) // first defined in 2.1 table->tp_richcompare = 0L; - table->tp_weatdelistoffset = 0L; + table->tp_weaklistoffset = 0L; #else table->tp_xxx7 = 0L; table->tp_xxx8 = 0L;