Re: __contains__ inconsistencies between Python 2.2 and 2.3

2005-03-04 Thread Steve Holden
Anand S Bisen wrote: Hello I have been developing a code that works pretty well on my python 2.3 and now when i am running it on my server where it is programmed to run it's giving me errors. I have been using __contains__ method and it fails on python 2.2 For example (Python 2.3) >> x="Hello

Re: __contains__ inconsistencies between Python 2.2 and 2.3

2005-03-04 Thread Steven Bethard
Anand S Bisen wrote: For example (Python 2.3) >> x="Hello World" >> print x.__contains__("Hello") True (Python 2.2) >>> x="Hello world" >>> print x.__contains__("Hello") Traceback (most recent call last): File "", line 1, in ? TypeError: 'in ' requires character as left operand Is there any wo

__contains__ inconsistencies between Python 2.2 and 2.3

2005-03-04 Thread Anand S Bisen
Hello I have been developing a code that works pretty well on my python 2.3 and now when i am running it on my server where it is programmed to run it's giving me errors. I have been using __contains__ method and it fails on python 2.2 For example (Python 2.3) >> x="Hello World" >> print x.__co