From: Skip Montanaro Date: Wed, 15 Jun 2005 13:38:07 +0000 (+0000) Subject: backport X-Git-Tag: v2.4.2c1~184 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f47379c3f0c4f31c1d17482732ea2912845a8624;p=thirdparty%2FPython%2Fcpython.git backport --- diff --git a/Modules/_csv.c b/Modules/_csv.c index 32806d484dc9..044ea4b51aa4 100644 --- a/Modules/_csv.c +++ b/Modules/_csv.c @@ -1545,6 +1545,7 @@ init_csv(void) } /* Add the Dialect type */ + Py_INCREF(&Dialect_Type); if (PyModule_AddObject(module, "Dialect", (PyObject *)&Dialect_Type)) return;