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: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6290178fc97e86cb5aff3cb279a8ee77d57311e5;p=python Fix issue776533. --- diff --git a/Mac/Modules/snd/_Sndmodule.c b/Mac/Modules/snd/_Sndmodule.c index c0c739a0b4..1f646297b0 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);