Re: Python on RedHat AS 2.1?

2006-07-17 Thread Jeremy Winters
higher on this OS?Anybody?JeremyFrom: Fredrik Lundh <[EMAIL PROTECTED]>To: python-list@python.orgDate: Sat, 15 Jul 2006 10:20:21 +0200Subject: Re: Python on RedHat AS 2.1? Jeremy Winters wrote:> Installable package?> > Any ideas?is RedHat no longer providing pre

Python on RedHat AS 2.1?

2006-07-14 Thread Jeremy Winters
Installable package?Any ideas?Thanks in advance,Jeremy Yahoo! Music Unlimited - Access over 1 million songs. Try it free. -- http://mail.python.org/mailman/listinfo/python-list

Best Mobile Devices for Python

2006-05-12 Thread Jeremy Winters
I have a project where I need to remote control one computer through a wireless tcp/ip connection in my home through a linksys router.I know there are versions of python that have been ported to mobile devices... but the whole arena of mobile devices is kind of intimidating... as it's hard to get t

newbie OO question

2006-04-20 Thread Jeremy Winters
class SegmentValue: def __init__(self,seg=[0,0,0,0,0,0],value=0,description=""): self.segment=seg self.value=value self.description=description #that's my class! note the default of a 6 item list for the seg parameter... which is then bound(?