]> granicus.if.org Git - python/commitdiff
Don't export the SPB type as "SPB", because it shadows the method SPB,
authorJack Jansen <jack.jansen@cwi.nl>
Thu, 24 Jul 2003 22:25:03 +0000 (22:25 +0000)
committerJack Jansen <jack.jansen@cwi.nl>
Thu, 24 Jul 2003 22:25:03 +0000 (22:25 +0000)
which is really important. This is a stopgap measure, as only the generated
C code is adapted. Fixes #776533.

Mac/Modules/snd/_Sndmodule.c

index c27fab626dded438d1e247112cdd9ae657e419f3..0075c986be236a00ea70bc9232e5d08b57258f3e 100644 (file)
@@ -1150,8 +1150,11 @@ void init_Snd(void)
        PyModule_AddObject(m, "SndChannelType", (PyObject *)&SndChannel_Type);
        SPB_Type.ob_type = &PyType_Type;
        if (PyType_Ready(&SPB_Type) < 0) return;
+#if 0
+       /* This would shadow the SPB routine, which is bad news (it is important) */
        Py_INCREF(&SPB_Type);
        PyModule_AddObject(m, "SPB", (PyObject *)&SPB_Type);
+#endif
        /* Backward-compatible name */
        Py_INCREF(&SPB_Type);
        PyModule_AddObject(m, "SPBType", (PyObject *)&SPB_Type);