(filename)
| 44 | os.system("afplay '%s' 2>/dev/null" % BEEP_WAV_FILENAME) |
| 45 | |
| 46 | def _win_wav_play(filename): |
| 47 | import winsound |
| 48 | |
| 49 | winsound.PlaySound(filename, winsound.SND_FILENAME) |
| 50 | |
| 51 | def _linux_wav_play(filename): |
| 52 | for _ in ("paplay", "aplay", "mpv", "mplayer", "play"): |
no outgoing calls
no test coverage detected
searching dependent graphs…