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
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
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
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
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.
>
> &
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
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('
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
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
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
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
11 matches
Mail list logo