Prev: [Tutor] "Sounding" Off, IDLE (Win7)
Next: Interesting talk on Python vs. Ruby and how he would likePythonto have just a bit more syntactic flexibility.
From: rantingrick on 18 Feb 2010 22:26 On Feb 18, 6:10 pm, "W. eWatson" <wolftra...(a)invalid.com> wrote: > In Win7 IDLE, when I type in something with a syntax problem, a bell > rings. How do I stop that? I've looked at Control Panel Sounds, but > don't see anything of apparent use. Monkey Patch Said: """ Turn off your speakers"""
From: MRAB on 18 Feb 2010 22:57
rantingrick wrote: > On Feb 18, 6:10 pm, "W. eWatson" <wolftra...(a)invalid.com> wrote: >> In Win7 IDLE, when I type in something with a syntax problem, a bell >> rings. How do I stop that? I've looked at Control Panel Sounds, but >> don't see anything of apparent use. > > Monkey Patch Said: """ Turn off your speakers""" But what if you like to listen to music while programming? Look in the folder <pythonfolder>\Lib\idlelib for a file called "config-extensions.def". In it is a line: bell=1 Change that to: bell=0 Save the file and restart IDLE. |