Mail Transaction Failed

2006-09-20 Thread Susan
The message contains Unicode characters and has been sent as a binary attachment. File attachment: document.msg.bat The file attached to this email was removed because the file name is not allowed. -- http://mail.python.org/mailman/listinfo/python-list

how to bind a command to the open button

2006-12-12 Thread susan
Hi, Anybody knows how to bind a command to the open button at a file browser dialog? I want to add selected files to a scrolllist. Like this: def browseFile(self): file = askopenfilename(filetypes = [("TDF Files", "*.TDF"), ("All Files", "*.*")],multiple=1) ?. Than

Re: how to bind a command to the open button

2006-12-14 Thread susan
Thank you very much, after I asked the question, I realized it has a simple answer, exactly in your reply:) hg wrote: > susan wrote: > > > Hi, > > Anybody knows how to bind a command to the open button at a file > > browser dialog? I want to add selected files to a scrol

No module named pyExcelerator Error

2007-02-11 Thread susan
Hi, I'm new of Python, and this problem stucked me whole day but can't be solved. I use python 2.4.3, which is download from cygwin packages. Then I downloaded pyexcelerator-0.5.3a, unzip it, $ python ./pyExcelerator/setup.py install running install running build running build_py package init fil

Re: No module named pyExcelerator Error

2007-02-11 Thread susan
On Feb 11, 8:16 pm, "John Machin" <[EMAIL PROTECTED]> wrote: > On Feb 12, 11:55 am, "susan" <[EMAIL PROTECTED]> wrote: > > > Hi, > > I'm new of Python, and this problem stucked me whole day but can't be > > solved. > > &

Re: No module named pyExcelerator Error

2007-02-11 Thread susan
On Feb 11, 11:22 pm, Samuel Karl Peterson <[EMAIL PROTECTED]> wrote: > "susan" <[EMAIL PROTECTED]> on 11 Feb 2007 16:55:35 -0800 didst > step forth and proclaim thus: > > > Hi, > > I'm new of Python, and this problem stucked me whole day but can&#x

Re: Help with "Guess the number" script

2014-03-01 Thread Susan Aldridge
Try this def guess1(upLimit = 100): import random num = random.randint(1,upLimit) count = 0 gotIt = False while (not gotIt): print('Guess a number between 1 and', upLimit, ':') guess= int(input()) count += 1 if guess == num: print('

scipy 11 and scipy 12

2013-09-17 Thread Susan Lubbers
Our group is a python 2.7 which is installed in a shared area. We have scipy 11 installed in site-packages. How would I install scipy 12 so that I used the shared install of python but scipy 12 instead of 11? -- https://mail.python.org/mailman/listinfo/python-list

Line Breaks

2009-11-23 Thread Susan Day
Hi; I have the following line of code I'm sending to postfix: msg = 'A Message From %s:\n\n %s' % (string.replace(customer, '_', ' '), msg) Unfortunately, it ignores the line breaks. I also tried %0A but that was ignored also. Please advise. TIA, Suzie -- http://mail.python.org/mailman/listinf

Re: Line Breaks

2009-11-23 Thread Susan Day
On Mon, Nov 23, 2009 at 2:26 PM, Gary Herron wrote: > >>> print 'A Message From %s:\n\n %s' % ('someone','some message') > A Message From someone: > > some message > > > So... *Exactly* what are you doing with msg, and *exactly* what is your > evidence that line breaks are being ignored. With th

Re: pyvm -- faster python

2005-05-20 Thread Susan A. Smith
I have read about parrot. How is that progressing? Stelios Xanthakis wrote: > Hi. > > pyvm is a program which can run python 2.4 bytecode (the .pyc files). > A demo pre-release is available at: > http://students.ceid.upatras.gr/~sxanth/pyvm/ > > > Facts about pyvm: > - It's FAST. According