[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.python

[Tutor] "Sounding" Off, IDLE (Win7

W. eWatson

2/19/2010 12:11:00 AM

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.
2 Answers

rantingrick

2/19/2010 3:27:00 AM

0

On Feb 18, 6:10 pm, "W. eWatson" <wolftra...@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"""

MRAB

2/19/2010 3:58:00 AM

0

rantingrick wrote:
> On Feb 18, 6:10 pm, "W. eWatson" <wolftra...@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.