pymssql for python 2.6 ?

2008-12-19 Thread TkNeo
when would pymssql come out with a release that is compatible with python 2.6 ? Thanks -TK -- http://mail.python.org/mailman/listinfo/python-list

Re: 2 different versions of python compiling files.

2008-05-22 Thread TkNeo
On May 22, 2:44 pm, Hans Nowak <[EMAIL PROTECTED]> wrote: > TkNeo wrote: > > I am trying to upgrade from python 2.3 to 2.4 but not all machines can > > be upgraded. Can you guys tell me if this scenario is possible. > > > 1. Any machine that uses .py files that

2 different versions of python compiling files.

2008-05-22 Thread TkNeo
I am trying to upgrade from python 2.3 to 2.4 but not all machines can be upgraded. Can you guys tell me if this scenario is possible. 1. Any machine that uses .py files that use libraries that require 2.4 will have 2.4 on it. 2. rest of the machines will have 2.3 now there is a shared drive. let

Re: SSL through python. possible ?

2008-05-05 Thread TkNeo
On May 5, 2:32 pm, Jean-Paul Calderone <[EMAIL PROTECTED]> wrote: > On Mon, 5 May 2008 11:11:19 -0700 (PDT),TkNeo<[EMAIL PROTECTED]> wrote: > >On May 2, 1:52 pm, Mike Driscoll <[EMAIL PROTECTED]> wrote: > >> On May 2, 1:20 pm, Heikki Toivonen <[EMAIL PROTECTE

Re: SSL through python. possible ?

2008-05-05 Thread TkNeo
On May 2, 1:52 pm, Mike Driscoll <[EMAIL PROTECTED]> wrote: > On May 2, 1:20 pm, Heikki Toivonen <[EMAIL PROTECTED]> wrote: > > > Mike Driscoll wrote: > > > On Apr 29, 8:56 am,TkNeo<[EMAIL PROTECTED]> wrote: > > >> I need to do SSL file transfe

Re: SSL through python. possible ?

2008-05-05 Thread TkNeo
On May 2, 1:43 pm, "Giampaolo Rodola'" <[EMAIL PROTECTED]> wrote: > On 29 Apr, 15:56,TkNeo<[EMAIL PROTECTED]> wrote: > > > I need to do SSL file transfer using python? Is there a library i can > > use ? > > > Thanks. > > If you have pat

Re: list.index crashes when the element is not found

2008-05-02 Thread TkNeo
On May 2, 3:09 pm, George Sakkis <[EMAIL PROTECTED]> wrote: > On May 2, 3:04 pm, TkNeo <[EMAIL PROTECTED]> wrote: > > > > > On May 2, 1:58 pm, Nick J Chackowsky <[EMAIL PROTECTED]> > > wrote: > > > > TkNeo wrote: > > > > WHAT ? >

Re: list.index crashes when the element is not found

2008-05-02 Thread TkNeo
On May 2, 2:49 pm, Jeff <[EMAIL PROTECTED]> wrote: > The generally used idiom for that is: > > lst = ['a', 'b', 'c'] > if 'a' in lst: > foo = lst.index('a') Jeff - Gracias !! I am fairly new to python. Thanks for the example code snippet above. It is the same amount of code as receiving -1 and

Re: list.index crashes when the element is not found

2008-05-02 Thread TkNeo
On May 2, 1:58 pm, Nick J Chackowsky <[EMAIL PROTECTED]> wrote: > TkNeo wrote: > > WHAT ? > > > This is crazy > > Crazy like a fox? > > a = [1, 2, 3] > try: > a.index(99) > except: > a.append(99) > finally: > print a.index(99)

list.index crashes when the element is not found

2008-05-02 Thread TkNeo
WHAT ? This is crazy -- http://mail.python.org/mailman/listinfo/python-list

Re: calling variable function name ?

2008-05-02 Thread TkNeo
On Apr 30, 11:05 am, Arnaud Delobelle <[EMAIL PROTECTED]> wrote: > TkNeo<[EMAIL PROTECTED]> writes: > > > George - Thanks for your reply but what you suggested is not working: > > > def FA(param1,param2): > > print "FA" + param1 + " &

Re: calling variable function name ?

2008-04-30 Thread TkNeo
On Apr 8, 7:51 pm, George Sakkis <[EMAIL PROTECTED]> wrote: > On Apr 8, 3:52 pm,TkNeo<[EMAIL PROTECTED]> wrote: > > > I don't know the exact terminology in python, but this is something i > > am trying to do > > > i have 3 functions lets say > &

SSL through python. possible ?

2008-04-29 Thread TkNeo
I need to do SSL file transfer using python? Is there a library i can use ? Thanks. -- http://mail.python.org/mailman/listinfo/python-list

calling variable function name ?

2008-04-08 Thread TkNeo
I don't know the exact terminology in python, but this is something i am trying to do i have 3 functions lets say FA(param1,param2) FB(param1,param2) FC(param1,param2) temp = "B" #something entered by user. now i want to call FB. I don't want to do an if else because if have way too many methods