mirror of https://github.com/python/cpython
sound_playsound() doesn't have to be visible externally,
so make it static.
This commit is contained in:
parent
d449eab1e4
commit
fee10040b4
|
@ -73,7 +73,7 @@ PyDoc_STRVAR(sound_module_doc,
|
||||||
"\n"
|
"\n"
|
||||||
"Beep(frequency, duration) - Make a beep through the PC speaker.");
|
"Beep(frequency, duration) - Make a beep through the PC speaker.");
|
||||||
|
|
||||||
PyObject *
|
static PyObject *
|
||||||
sound_playsound(PyObject *s, PyObject *args)
|
sound_playsound(PyObject *s, PyObject *args)
|
||||||
{
|
{
|
||||||
const char *sound;
|
const char *sound;
|
||||||
|
|
Loading…
Reference in New Issue