()
| 29 | _speaker_beep() |
| 30 | |
| 31 | def _speaker_beep(): |
| 32 | sys.stdout.write('\a') # doesn't work on modern Linux systems |
| 33 | |
| 34 | try: |
| 35 | sys.stdout.flush() |
| 36 | except IOError: |
| 37 | pass |
| 38 | |
| 39 | # Reference: https://lists.gnu.org/archive/html/emacs-devel/2014-09/msg00815.html |
| 40 | def _cygwin_beep(filename): |