(filename)
| 41 | os.system("play-sound-file '%s' 2>/dev/null" % filename) |
| 42 | |
| 43 | def _mac_wav_play(filename): |
| 44 | os.system("afplay '%s' 2>/dev/null" % BEEP_WAV_FILENAME) |
| 45 | |
| 46 | def _win_wav_play(filename): |
| 47 | import winsound |
no outgoing calls
no test coverage detected
searching dependent graphs…