Re: int rich comparisons

2009-10-02 Thread Terry Reedy
Robert Kern wrote: George Sakkis wrote: I stumbled upon the following strangeness (python 2.6.2): getattr(int, '__gt__') getattr(5, '__gt__') Traceback (most recent call last):n File "", line 1, in AttributeError: 'int' object has no attribute '__gt__' Is this a bug ? I believe that

Re: int rich comparisons

2009-10-02 Thread Robert Kern
George Sakkis wrote: I stumbled upon the following strangeness (python 2.6.2): getattr(int, '__gt__') getattr(5, '__gt__') Traceback (most recent call last):n File "", line 1, in AttributeError: 'int' object has no attribute '__gt__' Is this a bug ? I believe that ints in the 2.x ser

Re: int rich comparisons

2009-10-02 Thread Mark Dickinson
On Oct 2, 3:52 pm, George Sakkis wrote: > I stumbled upon the following strangeness (python 2.6.2): > > >>> getattr(int, '__gt__') > > > > >>> getattr(5, '__gt__') > > Traceback (most recent call last):n >   File "", line 1, in > AttributeError: 'int' object has no attribute '__gt__' > > Is this

int rich comparisons

2009-10-02 Thread George Sakkis
I stumbled upon the following strangeness (python 2.6.2): >>> getattr(int, '__gt__') >>> getattr(5, '__gt__') Traceback (most recent call last):n File "", line 1, in AttributeError: 'int' object has no attribute '__gt__' Is this a bug ? George -- http://mail.python.org/mailman/listinfo/pyt