if character "}" is found. This solution is actually
done already, I want a robust API that can do more then that like detecting
Function name parameters its return types etc.
Thanks!Faheem
--
http://mail.python.org/mailman/listinfo/python-list
DUKE1_plateD_A1.CEL, DUKE1_plateD_A10.CEL,
DUKE1_plateD_A12.CEL.
Thanks in advance. Please cc me with any reply.
Faheem.
--
http://mail.python.org/mailman/listinfo/python-list
On Wed, 18 Jun 2008 12:57:44 -0700 (PDT), Lie <[EMAIL PROTECTED]> wrote:
> On Jun 19, 2:26 am, Faheem Mitha <[EMAIL PROTECTED]> wrote:
>> Hi everybody,
>>
>> I was wondering if anyone can explain this. My understanding is that 'is'
>> checks if t
o different machines, so it is
not just a local quirk. I'm running Debian etch with Python 2.4.4 (the
default).
Thanks, Faheem.
In [1]: a = '--'
In [2]: a is '--'
Out[2]: False
In [4]: a = '-'
In [5]:
?
Regards, Faheem Mitha.
**
#!/usr/bin/python
class A(object):
x = 0
def class_getx(cls):
return cls.x
class_getx = classmethod(class_getx)
def class_setx(cls, _x):
cls.x = _x
class_setx