Re: [Tutor] control multiple FTP sessions using multiple ipconnectionsvia different com ports

2007-02-18 Thread Johan Geldenhuys
Will it be possible to disconnect one of the links during your test and reconnect it and disconnect the other connection once the ftp test is finished on the first connection? This way it will force the test script to use the active route to the internet. Not the most elegant way, but something t

Re: [Tutor] Follow Up

2007-02-18 Thread Kent Johnson
[EMAIL PROTECTED] wrote: > I thought that I would be able to treat this like one of the standard > libraries (ie random) where I just include the random lib and then use a command such as random.randrange(x,y). Will this not work with a custom class? Yes you can do that with a custom class or wit

Re: [Tutor] report service

2007-02-18 Thread Kent Johnson
János Juhász wrote: > > Dear All! > > May someone recommend any simple solution to distribute some dozen > parametrizable sql reports > for some dozen users with a minimal access controll. > Some kind of charting possibilty needed, but I needn't web-based front end. I'm not sure I understand yo

[Tutor] report service

2007-02-18 Thread János Juhász
Dear All! May someone recommend any simple solution to distribute some dozen parametrizable sql reports for some dozen users with a minimal access controll. Some kind of charting possibilty needed, but I needn't web-based front end. Yours sincerely, __ János Juhász

Re: [Tutor] Replying to the tutor-list

2007-02-18 Thread Tim Golden
Dave Kuhlman wrote: > On Fri, Feb 16, 2007 at 11:28:21AM +, Tim Golden wrote: >> Kent Johnson wrote: >>> Tim Golden wrote: field and [EMAIL PROTECTED] in cc: My problem there is that I usually don't want to send the originating individual a private copy of an email he/she is goin

Re: [Tutor] Replying to the tutor-list

2007-02-18 Thread Dave Kuhlman
On Fri, Feb 16, 2007 at 11:28:21AM +, Tim Golden wrote: > Kent Johnson wrote: > > Tim Golden wrote: > >> field and [EMAIL PROTECTED] in cc: My problem there is that I usually > >> don't want to send the originating individual a private copy > >> of an email he/she is going to receive from the l

Re: [Tutor] Error when calling a class

2007-02-18 Thread Kent Johnson
Rikard Bosnjakovic wrote: > On 2/18/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > >> import classctof >> y=classctof.fahrenheit(1) >> print y >> >> What am I doing wrong to get it to pass the answer back to the calling >> program? > > You need to instancify the class first before calling its

Re: [Tutor] Error when calling a class

2007-02-18 Thread Rikard Bosnjakovic
On 2/18/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > import classctof > y=classctof.fahrenheit(1) > print y > > What am I doing wrong to get it to pass the answer back to the calling > program? You need to instancify the class first before calling its methods: import classctof # make an

[Tutor] Error when calling a class

2007-02-18 Thread [EMAIL PROTECTED]
I'm learning about creating classes and have created the simple class below: class Temperature (object): def fahrenheit(self): return 32 + (1.8 * self.celsius) d = Temperature() d.celsius = float(input()) print d.fahrenheit() This works fine stand-alone but I can't get it to wor

Re: [Tutor] control multiple FTP sessions using multiple ipconnectionsvia different com ports

2007-02-18 Thread Alan Gauld
"ray sa" <[EMAIL PROTECTED]> wrote > An EDGE terminal is a phone that has the capability of > connecting to the internet. > ...EDGE is just faster than a GPRS connection and 3G is > supposedly faster than GPRS and EDGE. Thanks. I'm familiar with GPRS and 3G but never heard of EDGE. Looks l