t; Python offers winsound.Beep. 1 tone, no volume control, and it blocks
> while beeping.
I learned to make a computer beep using the programmable timer chip
(8254?). Send it signals on the I/O port saying "timer chip, speaker
signal, counter = N" (where N is the fundamental clock d
On 2023-11-12 11:16, Chris Angelico via Python-list wrote:
On Sun, 12 Nov 2023 at 21:27, Y Y via Python-list
wrote:
I am curious and humble to ask: What is the purpose of a BEEP?
There are several purposes. I can't say which of these are relevant to
the OP, but some or all of them
On Sun, 12 Nov 2023 at 21:27, Y Y via Python-list
wrote:
>
> I am curious and humble to ask: What is the purpose of a BEEP?
>
There are several purposes. I can't say which of these are relevant to
the OP, but some or all of them could easily be.
* A very very simple notificati
On 2023-11-11 at 23:44:19 +,
Y Y via Python-list wrote:
> I am curious and humble to ask: What is the purpose of a BEEP?
It's a simple way for a terminal-based program to alert (hence '\a') a
user or an operator that their attention is requested or required
nsole (aka stdout) no longer beeps (or makes any sound). This is true
whether I print "\a" from a python program, or "type
".
I have found via Google workarounds such as
os.system("rundll32 user32.dll,MessageBeep")
but it is a trifle annoying to have to modify
I am curious and humble to ask: What is the purpose of a BEEP?
-Original Message-
From: Python-list On
Behalf Of Rob Cliffe via Python-list
Sent: Sunday, November 12, 2023 6:50 AM
To: Python
Subject: Beep on WIndows 11
Apologies if this is not a Python question.
I recently moved
beeps (or makes any sound). This is true
whether I print "\a" from a python program, or "type
".
I have found via Google workarounds such as
os.system("rundll32 user32.dll,MessageBeep")
but it is a trifle annoying to have to modify all of my programs that
-Original Message-
From: Python-list On
Behalf Of Greg Ewing
Sent: Wednesday, August 18, 2021 11:49 AM
To: python-list@python.org
Subject: Re: Regarding inability of Python Module Winsound to produce beep
in decimal frequency
On 18/08/21 4:43 pm, Steve wrote:
>>
>> "
On 18/08/21 4:43 pm, Steve wrote:
"The HAL (hardware abstraction layer) function HalMakeBeep()"
Is the beep that opens the pod bay doors?
def HalMakeBeepUsingPCSpeaker():
raise IOError("I'm sorry, I can't do that, Dave.")
--
Greg
--
https://mail.python.org/mailman/listinfo/python-list
"The HAL (hardware abstraction layer) function HalMakeBeep()"
Is the beep that opens the pod bay doors?
Footnote:
George Melly remarked to Mike Jagger on how lined his face was for one so
young. Jagger replied Theyre laughter lines George to which Melly
countered: Mick, nothin
at there's a fallback audio device that uses the PC
speaker on systems that lack even basic audio support in their
chipset. But in common practice, Beep() does not use the PC speaker.
The "beep.sys" driver in Windows 7+ has no code path that starts a PC
speaker beep via HalMakeBe
On Tue, 17 Aug 2021 15:11:05 +1000, Chris Angelico
declaimed the following:
>
>Huh. Okay. Then I withdraw the concern from this list, and instead lay
>it at Microsoft's feet. That is, I maintain, a bizarre choice. Surely
>there are better ways to trigger audio on the sound card?
>
Possi
On Tue, Aug 17, 2021 at 1:50 PM Eryk Sun wrote:
>
> On 8/16/21, Chris Angelico wrote:
> > On Tue, Aug 17, 2021 at 11:44 AM Eryk Sun wrote:
> >
> >> Yes, the PC speaker beep does not get used in Windows 7+. The beep
> >> device object is retained for
On 8/16/21, Chris Angelico wrote:
> On Tue, Aug 17, 2021 at 11:44 AM Eryk Sun wrote:
>
>> Yes, the PC speaker beep does not get used in Windows 7+. The beep
>> device object is retained for compatibility, but it redirects the
>> request to a task in the user's ses
uch more capable than those one-bit PC speakers.
>
> Yes, the PC speaker beep does not get used in Windows 7+. The beep
> device object is retained for compatibility, but it redirects the
> request to a task in the user's session (which could be a remote
> desktop session) t
On 8/16/21, Roel Schroeven wrote:
>
> We're not necessarily talking about the PC speaker here: (almost) all
> computers these days have sound cards (mostly integrated on the
> motherboard) that are much more capable than those one-bit PC speakers.
Yes, the PC speaker beep doe
music instruments. I am producing the musical
notes using the Beep function of Winsound Module(
https://docs.python.org/3/library/winsound.html) by passing frequency as a
argument to the function.
Now whenever i provide frequency of any note in decimal(for example
277.1826 for C4 note) it shows
ed on a one-bit PC speaker, which the
> > > Beep function will be using.
>
> Rounding to integer frequencies will produce disastrously out-of-tune
> notes in a musical context! Particularly for low notes, where a whole
> semitone is only a couple of Hz difference. Even for higher
; from 277.1826Hz when it's played on a one-bit PC speaker, which the
> > > > Beep function will be using.
> >
> > Rounding to integer frequencies will produce disastrously out-of-tune
> > notes in a musical context! Particularly for low notes, where a whole
&g
On Sun, Aug 15, 2021 at 1:02 PM John O'Hagan wrote:
>
> > On 2021-08-13 17:17, Chris Angelico wrote:
> > > Is it really? In my experience, no human ear can distinguish 277Hz
> > > from 277.1826Hz when it's played on a one-bit PC speaker, which the
> >
good health.
> >> >
> >> > I am Umang Goswami, a Python developer and student working on a
> >> > huge project for automation of music instruments. I am producing
> >> > the musical notes using the Beep function of Winsound Module(
> >> > h
utomation of music instruments. I am producing the musical
> notes using the Beep function of Winsound Module(
> https://docs.python.org/3/library/winsound.html) by passing frequency as a
> argument to the function.
>
> Now whenever i provide frequency of any note in decimal(for example
nstruments. I am producing the musical
> > notes using the Beep function of Winsound Module(
> > https://docs.python.org/3/library/winsound.html) by passing frequency as a
> > argument to the function.
> >
> > Now whenever i provide frequency of any note in decimal(fo
On 8/13/2021 6:53 AM, Umang Goswami wrote:
Hi There, Hope you find this mail in good health.
I am Umang Goswami, a Python developer and student working on a huge
project for automation of music instruments. I am producing the musical
notes using the Beep function of Winsound Module(
https
On Wed, Mar 13, 2019 at 12:16 AM wrote:
>
> On Saturday, March 9, 2019 at 12:53:35 AM UTC-5, Terry Reedy wrote:
> > On 3/8/2019 1:13 PM, Steve wrote:
> > > How can I cause a system beep using code?
> >
> > >>> import winsound as ws
> > >
On Saturday, March 9, 2019 at 12:53:35 AM UTC-5, Terry Reedy wrote:
> On 3/8/2019 1:13 PM, Steve wrote:
> > How can I cause a system beep using code?
>
> >>> import winsound as ws
> >>> ws.Beep(500, 1000)
>
> and
>
> >>> from tkinter
.
Rene Descartes
-Original Message-
From: Python-list On
Behalf Of Terry Reedy
Sent: Saturday, March 9, 2019 12:53 AM
To: python-list@python.org
Subject: Re: System Beep?
On 3/8/2019 1:13 PM, Steve wrote:
How can I cause a system beep using code?
>>> import winsound as ws
&g
On 3/9/19, Dennis Lee Bieber wrote:
>
> ... produces a sound on my system... But has to be run from a Windows
> console (command line -- either "DOS" or PowerShell).
Say "CMD" if that's what you mean. DOS was an OS (albeit a simple
one). The CMD shell is not an OS and was never a DOS program. (It
On Sat, Mar 9, 2019 at 10:33 PM Karsten Hilbert wrote:
>
> On Sat, Mar 09, 2019 at 11:55:03AM +1300, DL Neil wrote:
>
> > You've piqued my interest. I haven't worked with sound using Python, but a
> > future project, presently graphics/video, could easily expand...
> >
> > I don't think it is an O
hich was
sending the BEL control character to the terminal. Many, but
not all, terminals still support that one way or another.
But it's got nothing to do with access to any DSPs.
However, under the hood, the "system speaker" will nowadays
be faked any number of ways: flashing
-list On
Behalf Of Terry Reedy
Sent: Saturday, March 9, 2019 12:53 AM
To: python-list@python.org
Subject: Re: System Beep?
On 3/8/2019 1:13 PM, Steve wrote:
> How can I cause a system beep using code?
>>> import winsound as ws
>>> ws.Beep(500, 1000)
and
>>> fr
Thank you, both work for me too.
Mischief managed.
Steve
Footnote:
I am simply a thing that thinks.
Rene Descartes
-Original Message-
From: Python-list On
Behalf Of Terry Reedy
Sent: Saturday, March 9, 2019 12:53 AM
To: python-list@python.org
Subject: Re: System Beep?
On 3/8/2019 1
On 3/8/2019 1:13 PM, Steve wrote:
How can I cause a system beep using code?
>>> import winsound as ws
>>> ws.Beep(500, 1000)
and
>>> from tkinter import Tk
>>> root = Tk()
>>> root.bell()
work for me. The bell is not exactly a bell, but differen
On 3/8/19, Grant Edwards wrote:
>
> I just tested three of the terminals on my laptop, and none of them
> beep when they receive a BEL.
In Ubuntu, enable sound effects and select an alert sound, and then
enable "Terminal bell" in GNOME Terminal's preferences.
In Wi
l" in short/small characters.
Not all terminals produce a beep when they receive a BEL character.
Many X11 terminals used to flash the entire terminal window instead
(otherwise you had no way to know which terminal caused the "beep").
I just tested three of the terminals on my laptop,
Steve,
On 9/03/19 11:03 AM, Steve wrote:
I tried all three, nothing audio. I am beginning to wonder if something I the
operating system is at fault.
The three lines do produce symbols. The first two are a rectangle with a space in the
middle and the last one spelled out "bel" in short/small
On 2019-03-08 22:11, Steve wrote:
Import winsound
winsound
No error, no beep either.
You haven't called anything.
import winsound
dir(winsound)
['Beep', 'MB_ICONASTERISK', 'MB_ICONEXCLAMATION', 'MB_ICONHAND',
'MB_ICONQUESTION
Import winsound
winsound
No error, no beep either.
-
Footnote
A cat looks up and sees a bird in a tree and says"
"Hey, let's do lunch someday..."
-Original Message-
From: Python-list On Be
day, March 8, 2019 3:51 PM
To: python-list@python.org
Subject: Re: System Beep?
Dear Squeak, sorry, Dear Steve,
Back in the ?good, old days when we used to walk alongside a mainframe CPU
whilst it cogitated, we would often use the BEL character to alert us to job
completion (and meantime b
On Fri, Mar 08, 2019 at 03:16:28PM -0500, Steve wrote:
> = RESTART: C:\Gork\Med Insulin codes\MedReminder 127.py
> =
> Traceback (most recent call last):
> File "C:\Gork\Med Insulin codes\MedReminder 127.py", line 13, in
>
> windsound.Beep #(frequency, duration)
> N
How can I cause a system beep using code?
This is using the computer's internal speaker, not an audio external
speaker.
Do I have control of duration or volume?
The BEL character was included in the ASCII standard as chr(7)*. Back in
those days, the rest of the world didn't exist
Steve wrote:
>> You have a typo. It is winsound, not winDsound.
> Yes, I saw that. It still failed with, or without, the “d”. I played
> with case and the use of (). They all produced similar errors
Did you import the winsound module before trying to use it?
--
https://mail.python.org/mailma
mp;b=&c=>
Ultrasound Technician Asks Pregnant Woman If She’d Like To Know Baby’s Name
From: Ivan "Rambius" Ivanov
Sent: Friday, March 8, 2019 3:25 PM
To: Steve
Cc: David Raymond ; python-list@python.org
Subject: Re: System Beep?
Hello,
On Fri, Mar 8, 2019, 3:19 PM Steve mailto:Gro
ive the other 2% a bad name.
>
>
> -Original Message-
> From: Python-list On
> Behalf Of David Raymond
> Sent: Friday, March 8, 2019 3:02 PM
> To: python-list@python.org
> Subject: RE: System Beep?
>
> Windows has the built in winsound module that lets you set freque
Sent: Friday, March 8, 2019 2:56 PM
To: Steve
Cc: python-list@python.org
Subject: Re: System Beep?
Hi,
On Fri, Mar 8, 2019 at 1:35 PM Steve wrote:
>
> How can I cause a system beep using code?
> This is using the computer's internal speaker, not an audio external
> speaker.
P
I believe you added an extra D there. winsound, not winDsound
-Original Message-
From: Steve [mailto:Gronicus@SGA.Ninja]
Sent: Friday, March 08, 2019 3:16 PM
To: David Raymond; python-list@python.org
Subject: RE: System Beep?
= RESTART: C:\Gork\Med Insulin codes
ething missing in my code?
98% of lawyers give the other 2% a bad name.
-Original Message-
From: Python-list On
Behalf Of David Raymond
Sent: Friday, March 8, 2019 3:02 PM
To: python-list@python.org
Subject: RE: Syste
Steve
Sent: Friday, March 08, 2019 1:14 PM
To: python-list@python.org
Subject: System Beep?
How can I cause a system beep using code?
This is using the computer's internal speaker, not an audio external
speaker.
Do I have control of duration or volume?
Steve
Footnote:
Every minute, every
Hi,
On Fri, Mar 8, 2019 at 1:35 PM Steve wrote:
>
> How can I cause a system beep using code?
> This is using the computer's internal speaker, not an audio external
> speaker.
Print 0x07.
Thank you.
> Do I have control of duration or volume?
>
> Steve
>
>
How can I cause a system beep using code?
This is using the computer's internal speaker, not an audio external
speaker.
Do I have control of duration or volume?
Steve
Footnote:
Every minute, every single day, the equivalent of a truckload of plastic
enters our oceans.
--
On Sat, Jul 14, 2012 at 1:00 AM, Gelonida N wrote:
>
> What I do at the moment is:
>
> For Windows I use winsound.Beep
>
> For Linux I create some raw data and pipe it into sox's
> 'play' command.
>
> I don't consider this very elegant
You may want to get over that. Some software vendors/distr
On Fri, Jul 13, 2012 at 9:00 PM, Gelonida N wrote:
> I tried the simplest approach (just printing the BEL character '\a' chr(7)
> to the console.
That's what I do when I want to send an audible alert to the user of a
console based program. It's then up to the user's terminal to do
whatever the u
On Wed, Jul 25, 2012 at 7:39 AM, Gelonida N wrote:
> On 07/15/2012 03:15 AM, rantingrickjohn...@gmail.com wrote:> On Friday, July
> 13, 2012 8:00:05 PM UTC-5, gelonida wrote:
>>> I just want to use a beep command that works cross platform. [...] I
>>> just want to use
On 07/15/2012 03:15 AM, rantingrickjohn...@gmail.com wrote:> On Friday,
July 13, 2012 8:00:05 PM UTC-5, gelonida wrote:
>> I just want to use a beep command that works cross platform. [...] I
>> just want to use them as alert, when certain events occur within a
>> very
On Friday, July 13, 2012 8:00:05 PM UTC-5, gelonida wrote:
> I just want to use a beep command that works cross platform. [...] I
> just want to use them as alert, when certain events occur within a
> very long running non GUI application.
I can see a need for this when facing a non GUI
ker may startle someone in the data centre,
> but it won't attract my attention. If, OTOH, you do:
>
> print "\7"
>
> , then an ASCII bell will be sent across the network, and my
> terminal emulator will beep.
>
Sure, though other of the OP's ideas prec
e someone in the data centre,
but it won't attract my attention. If, OTOH, you do:
print "\7"
, then an ASCII bell will be sent across the network, and my
terminal emulator will beep.
It all depends.
-- HansM
--
http://mail.python.org/mailman/listinfo/python-list
On Sun, Jul 15, 2012 at 3:54 AM, Dieter Maurer wrote:
> I, too, would find it useful -- for me (although I do not hate myself).
>
> Surely, you know an alarm clock. Usually, it gives an audible signal
> when it is time to do something. A computer can in principle be used
> as a flexible alarm cloc
> How do others handle simple beeps?
http://pymedia.org/ ?
I *think* the "big" UI frameworks (Qt, wx ...) have some sound support.
--
http://mail.python.org/mailman/listinfo/python-list
Steven D'Aprano writes:
>> How do others handle simple beeps?
>>
>> I just want to use them as alert, when certain events occur within a
>> very long running non GUI application.
>
> Why? Do you hate your users?
I, too, would find it useful -- for me (although I do not hate myself).
Surely, you
gt; For Windows I use winsound.Beep
>
> For Linux I create some raw data and pipe it into sox's 'play' command.
>
> I don't consider this very elegant.
There is no cross-platform way to play a beep.
Every few years, people complain that Python doesn't have
Hi,
I just want to use a beep command that works cross platform.
I tried the simplest approach (just printing the BEL character '\a'
chr(7) to the console.
This fails on my Ubuntu 12.04 host, as the pcspkr is in the list of the
blacklisted kernel modules.
I found another snip
On Dec 22, 3:16 am, Jeffrey Barish wrote:
> I use sys.stdout.write('\a') to beep. It works fine on Kubuntu, but not on
> two other platforms (one of which is Ubuntu). I presume that the problem
> is due to a system configuration issue. Can someone point me in the right
&
On Mon, Dec 22, 2008 at 10:42 PM, Jeffrey Barish
wrote:
>
>
> On Ubuntu, it is possible to set visual and audible beeps separately. When
> I set both, I get the visual beep, but not the audible one. It's not a
> Python issue -- so I should take this thread to Ubuntu -- beca
the terminal bell set to "visual"? If so chr(7) only
> produces a brief flash (or similar).
On Ubuntu, it is possible to set visual and audible beeps separately. When
I set both, I get the visual beep, but not the audible one. It's not a
Python issue -- so I should take th
Jeffrey Barish skrev:
Chris Rebert wrote:
Is the 'pcspkr' kernel module built and loaded?
Yes. And I should have mentioned that I get sound from Ubuntu applications
that produce sound.
Also, is the terminal bell set to "visual"? If so chr(7) only
produces a brief flash (or similar).
--
ht
Chris Rebert wrote:
>
> Is the 'pcspkr' kernel module built and loaded?
Yes. And I should have mentioned that I get sound from Ubuntu applications
that produce sound.
--
Jeffrey Barish
--
http://mail.python.org/mailman/listinfo/python-list
Jeffrey Barish wrote:
I use sys.stdout.write('\a') to beep. It works fine on Kubuntu, but not on
two other platforms (one of which is Ubuntu). I presume that the problem
is due to a system configuration issue. Can someone point me in the right
direction? Thanks.
I started a th
On Sun, Dec 21, 2008 at 4:16 PM, Jeffrey Barish
wrote:
> I use sys.stdout.write('\a') to beep. It works fine on Kubuntu, but not on
> two other platforms (one of which is Ubuntu). I presume that the problem
> is due to a system configuration issue. Can someone point me in th
I use sys.stdout.write('\a') to beep. It works fine on Kubuntu, but not on
two other platforms (one of which is Ubuntu). I presume that the problem
is due to a system configuration issue. Can someone point me in the right
direction? Thanks.
--
Jeffrey Barish
--
http://mail.python.o
Grant Edwards <[EMAIL PROTECTED]> wrote:
> On 2008-12-09, greg <[EMAIL PROTECTED]> wrote:
>> Duncan Booth wrote:
>>
>>> If I'm logged in to one of my servers in a large datacentre
>>> then I don't what that system to beep as that wou
On 2008-12-09, greg <[EMAIL PROTECTED]> wrote:
> Duncan Booth wrote:
>
>> If I'm logged in to one of my servers in a large datacentre
>> then I don't what that system to beep as that would be pretty
>> useless.
>
> It also might cause the datacentre op
greg <[EMAIL PROTECTED]> wrote:
> Duncan Booth wrote:
>> If I'm logged in to one of my servers in a large datacentre then I
>> don't what that system to beep as that would be pretty useless.
>
> It also might cause the datacentre operators some consternati
Duncan Booth wrote:
If I'm logged in to one of my servers in a large datacentre then I don't what
that system to beep as that would be pretty useless.
It also might cause the datacentre operators some consternation
when one of their servers starts mysteriously beeping...
--
Gr
En Sun, 07 Dec 2008 23:34:17 -0200, Joe Strout <[EMAIL PROTECTED]> escribió:
On Dec 7, 2008, at 4:43 PM, Steven D'Aprano wrote:
Of course, if you're volunteering to write such a standard system beep
for Python, I for one would be grateful.
I am. But where should I put
On 7 Dec 2008 14:46:53 GMT, Marc 'BlackJack' Rintsch <[EMAIL PROTECTED]> wrote:
> On Sun, 07 Dec 2008 07:17:30 -0700, Joe Strout wrote:
>
>> But invoking the standard system beep is such a basic function that it
>> ought to be easier than this. I'm pret
On Sun, 2008-12-07 at 21:13 +, Peter Pearson wrote:
> On Sun, 07 Dec 2008 00:40:53 +0100, Stef Mientki wrote:
> >
> > I want to give a small beep,
> > for windows there's message-beep,
> > and there seems to be something like " curses" ,
> > but
Joe Strout wrote:
On Dec 7, 2008, at 4:43 PM, Steven D'Aprano wrote:
Of course, if you're volunteering to write such a standard system beep
for Python, I for one would be grateful.
I am. But where should I put it? Assuming we don't want to wait for
the (understandab
On 6 Dec, 23:40, Stef Mientki <[EMAIL PROTECTED]> wrote:
> hello,
>
> I want to give a small beep,
Just to add to the options here. Where ncurses work you can use:
python -c 'from curses import *;wrapper(lambda s:beep())'
To try it just enter the whole line above in th
Joe Strout <[EMAIL PROTECTED]> wrote:
> But invoking the standard system beep is such a basic function that it
> ought to be easier than this. I'm pretty sure it's a single OS call
> on all platforms. On OS X, for example, it's
>
>void NSBeep(void);
En Sun, 07 Dec 2008 23:34:17 -0200, Joe Strout <[EMAIL PROTECTED]> escribió:
On Dec 7, 2008, at 4:43 PM, Steven D'Aprano wrote:
Of course, if you're volunteering to write such a standard system beep
for Python, I for one would be grateful.
I am. But where should I put
On Dec 7, 8:34 pm, Joe Strout <[EMAIL PROTECTED]> wrote:
> On Dec 7, 2008, at 4:43 PM, Steven D'Aprano wrote:
>
> > Of course, if you're volunteering to write such a standard system beep
> > for Python, I for one would be grateful.
>
> I am. But where sho
On 2008-12-07, Peter Pearson <[EMAIL PROTECTED]> wrote:
> On Sun, 07 Dec 2008 00:40:53 +0100, Stef Mientki wrote:
>>
>> I want to give a small beep, for windows there's message-beep,
>> and there seems to be something like " curses" , but that
>>
On Dec 7, 2008, at 4:43 PM, Steven D'Aprano wrote:
Of course, if you're volunteering to write such a standard system beep
for Python, I for one would be grateful.
I am. But where should I put it? Assuming we don't want to wait for
the (understandably) lengthy and cont
On Sun, 07 Dec 2008 12:56:14 -0700, Joe Strout wrote:
> On Dec 7, 2008, at 8:48 AM, Grant Edwards wrote:
>
>> On 2008-12-07, Joe Strout <[EMAIL PROTECTED]> wrote:
>>
>>> But invoking the standard system beep
>>
>> What makes you think there is
On Sun, 7 Dec 2008 12:56:14 -0700
Joe Strout <[EMAIL PROTECTED]> wrote:
> On Dec 7, 2008, at 8:48 AM, Grant Edwards wrote:
> > What makes you think there is such a thing as "the standard system
> > beep"?
>
> Because OS X (the platform with which I'm
Peter Pearson schrieb:
On Sun, 07 Dec 2008 00:40:53 +0100, Stef Mientki wrote:
I want to give a small beep,
for windows there's message-beep,
and there seems to be something like " curses" ,
but that package seems to be totally broken in P2.5 for windows.
Any other suggestions
On Sun, 07 Dec 2008 00:40:53 +0100, Stef Mientki wrote:
>
> I want to give a small beep,
> for windows there's message-beep,
> and there seems to be something like " curses" ,
> but that package seems to be totally broken in P2.5 for windows.
>
> Any other sugge
On Dec 7, 2008, at 8:48 AM, Grant Edwards wrote:
On 2008-12-07, Joe Strout <[EMAIL PROTECTED]> wrote:
But invoking the standard system beep
What makes you think there is such a thing as "the standard system
beep"?
Because OS X (the platform with which I'm most fa
On Dec 7, 7:49 am, Stef Mientki <[EMAIL PROTECTED]> wrote:
> Chris Rebert wrote:
> > On Sun, Dec 7, 2008 at 1:27 AM, Stef Mientki <[EMAIL PROTECTED]> wrote:
>
> >> Rainy wrote:
>
> >>> On Dec 6, 3:40 pm, Stef Mientki <[EMAIL PROTECTED]> wrote
On 2008-12-07, Joe Strout <[EMAIL PROTECTED]> wrote:
> But invoking the standard system beep
What makes you think there is such a thing as "the standard
system beep"?
--
Grant
--
http://mail.python.org/mailman/listinfo/python-list
On Sun, 07 Dec 2008 07:17:30 -0700, Joe Strout wrote:
> But invoking the standard system beep is such a basic function that it
> ought to be easier than this. I'm pretty sure it's a single OS call on
> all platforms. On OS X, for example, it's
>
>void
Sorry, with
import Tkinter
Tkinter.Tk().bell()
you get a new window for the same price...
So it's usefull only when using tkinter
--
http://mail.python.org/mailman/listinfo/python-list
On Dec 7, 12:40 am, Stef Mientki <[EMAIL PROTECTED]> wrote:
> hello,
>
> I want to give a small beep,
> for windows there's message-beep,
> and there seems to be something like " curses" ,
> but that package seems to be totally broken in P2.5 for windows.
On Dec 7, 2008, at 6:36 AM, Duncan Booth wrote:
Python is just printing the ascii bell character: some environments
will
interpret that as a request to make a beep, some will do things like
flashing the whole screen, others just output a graphic character.
Python
doesn't know what
>
> Well some of you actually hear something,
> I don't,
> so I expect that the Python version differs.
>
I expect it is the terminal software you are using that differs rather than
Python.
Python is just printing the ascii bell character: some environments will
interpret t
Chris Rebert wrote:
On Sun, Dec 7, 2008 at 1:27 AM, Stef Mientki <[EMAIL PROTECTED]> wrote:
Rainy wrote:
On Dec 6, 3:40 pm, Stef Mientki <[EMAIL PROTECTED]> wrote:
hello,
I want to give a small beep,
for windows there's message-beep,
and there seems to
On Sun, Dec 7, 2008 at 1:27 AM, Stef Mientki <[EMAIL PROTECTED]> wrote:
> Rainy wrote:
>>
>> On Dec 6, 3:40 pm, Stef Mientki <[EMAIL PROTECTED]> wrote:
>>
>>>
>>> hello,
>>>
>>> I want to give a small beep,
>>> for w
Rainy wrote:
On Dec 6, 3:40 pm, Stef Mientki <[EMAIL PROTECTED]> wrote:
hello,
I want to give a small beep,
for windows there's message-beep,
and there seems to be something like " curses" ,
but that package seems to be totally broken in P2.5 for windows.
Any other
On Dec 6, 3:40 pm, Stef Mientki <[EMAIL PROTECTED]> wrote:
> hello,
>
> I want to give a small beep,
> for windows there's message-beep,
> and there seems to be something like " curses" ,
> but that package seems to be totally broken in P2.5 for windows.
1 - 100 of 111 matches
Mail list logo