Re: Deprecation warnings (2.7 -> 3 )

2010-12-10 Thread rusi
On Dec 10, 9:17 pm, nn wrote: > On Dec 9, 10:15 pm, rusi wrote: > > > In trying to get from 2.x to 3 Terry suggested I use 2.7 with > > deprecation warnings > > > Heres the (first) set > > > DeprecationWarning: Overriding __eq__ blocks inheritance of __hash__ > > in 3.x > > DeprecationWarning: ca

Re: Deprecation warnings (2.7 -> 3 )

2010-12-10 Thread Tim Golden
On 10/12/2010 16:17, nn wrote: On Dec 9, 10:15 pm, rusi wrote: In trying to get from 2.x to 3 Terry suggested I use 2.7 with deprecation warnings Heres the (first) set DeprecationWarning: Overriding __eq__ blocks inheritance of __hash__ in 3.x DeprecationWarning: callable() not supported in 3

Re: Deprecation warnings (2.7 -> 3 )

2010-12-10 Thread nn
On Dec 10, 11:17 am, nn wrote: > On Dec 9, 10:15 pm, rusi wrote: > > > In trying to get from 2.x to 3 Terry suggested I use 2.7 with > > deprecation warnings > > > Heres the (first) set > > > DeprecationWarning: Overriding __eq__ blocks inheritance of __hash__ > > in 3.x > > DeprecationWarning: c

Re: Deprecation warnings (2.7 -> 3 )

2010-12-10 Thread nn
On Dec 9, 10:15 pm, rusi wrote: > In trying to get from 2.x to 3 Terry suggested I use 2.7 with > deprecation warnings > > Heres the (first) set > > DeprecationWarning: Overriding __eq__ blocks inheritance of __hash__ > in 3.x > DeprecationWarning: callable() not supported in 3.x; use isinstance(x

Re: Deprecation warnings (2.7 -> 3 )

2010-12-09 Thread Terry Reedy
On 12/9/2010 10:15 PM, rusi wrote: In trying to get from 2.x to 3 Terry suggested I use 2.7 with deprecation warnings Heres the (first) set DeprecationWarning: Overriding __eq__ blocks inheritance of __hash__ in 3.x DeprecationWarning: callable() not supported in 3.x; use isinstance(x, collect