diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2003-07-24 22:25:03 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2003-07-24 22:25:03 (GMT) |
commit | d1f46c8970b782875f168f3401232d82e485cf43 (patch) | |
tree | 347f08c93c188f40337a13f4f1fbd6de33af746c | |
parent | f31bd453a5b27fd896482d45e720567d88651d15 (diff) | |
download | cpython-d1f46c8970b782875f168f3401232d82e485cf43.zip cpython-d1f46c8970b782875f168f3401232d82e485cf43.tar.gz cpython-d1f46c8970b782875f168f3401232d82e485cf43.tar.bz2 |
Don't export the SPB type as "SPB", because it shadows the method SPB,
which is really important. This is a stopgap measure, as only the generated
C code is adapted. Fixes #776533.
-rw-r--r-- | Mac/Modules/snd/_Sndmodule.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Mac/Modules/snd/_Sndmodule.c b/Mac/Modules/snd/_Sndmodule.c index c27fab6..0075c98 100644 --- a/Mac/Modules/snd/_Sndmodule.c +++ b/Mac/Modules/snd/_Sndmodule.c @@ -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); |