Cosmetics

This commit is contained in:
Bernardo Damele 2010-10-25 22:54:56 +00:00
parent 8a9a57c709
commit 7effd0c301

View File

@ -1500,12 +1500,15 @@ def beep():
Does an audible beep sound Does an audible beep sound
Reference: http://de3.aminet.net/dev/src/clr.py.txt Reference: http://de3.aminet.net/dev/src/clr.py.txt
""" """
if sys.platform == 'linux2': if sys.platform == 'linux2':
try: try:
audio = file('/dev/audio', 'wb') audio = file('/dev/audio', 'wb')
for i in xrange(250): for i in xrange(250):
audio.write(chr(32) * 4) audio.write(chr(32) * 4)
audio.write(chr(0) * 4) audio.write(chr(0) * 4)
audio.close() audio.close()
except: except:
print '\a' print '\a'