From: Ronald Oussoren Date: Tue, 17 Feb 2009 12:38:42 +0000 (+0000) Subject: Fix issue776533. X-Git-Tag: v2.7a1~2001 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6290178fc97e86cb5aff3cb279a8ee77d57311e5;p=thirdparty%2FPython%2Fcpython.git Fix issue776533. --- diff --git a/Mac/Modules/snd/_Sndmodule.c b/Mac/Modules/snd/_Sndmodule.c index c0c739a0b413..1f646297b075 100644 --- a/Mac/Modules/snd/_Sndmodule.c +++ b/Mac/Modules/snd/_Sndmodule.c @@ -1150,7 +1150,9 @@ void init_Snd(void) SPB_Type.ob_type = &PyType_Type; if (PyType_Ready(&SPB_Type) < 0) return; Py_INCREF(&SPB_Type); +#if 0 PyModule_AddObject(m, "SPB", (PyObject *)&SPB_Type); +#endif /* Backward-compatible name */ Py_INCREF(&SPB_Type); PyModule_AddObject(m, "SPBType", (PyObject *)&SPB_Type);