Re: [Python-Dev] Operator module deprecations

2009-01-25 Thread Guido van Rossum
Original Message - From: "Guido van Rossum" > To: "Nick Coghlan" > Cc: > Sent: Sunday, January 25, 2009 2:50 PM > Subject: Re: [Python-Dev] Operator module deprecations > > >> +1 indeedy. >> >> On Sat, Jan 24, 2009 at 5:22 PM, Nick Coghlan

Re: [Python-Dev] Operator module deprecations

2009-01-25 Thread Raymond Hettinger
For Py3.0.1, can we just rip these out and skip deprecation? I don't think they will be missed at all. Raymond - Original Message - From: "Guido van Rossum" To: "Nick Coghlan" Cc: Sent: Sunday, January 25, 2009 2:50 PM Subject: Re: [Python-Dev] Operator

Re: [Python-Dev] Operator module deprecations

2009-01-25 Thread Guido van Rossum
+1 indeedy. On Sat, Jan 24, 2009 at 5:22 PM, Nick Coghlan wrote: > Brett Cannon wrote: >> On Sat, Jan 24, 2009 at 14:46, Raymond Hettinger wrote: >>> I would like to deprecate some outdated functions in the operator module. >>> >>> The isSequenceType(), isMappingType(), and isNumberType() >>> fu

Re: [Python-Dev] Operator module deprecations

2009-01-24 Thread Nick Coghlan
Brett Cannon wrote: > On Sat, Jan 24, 2009 at 14:46, Raymond Hettinger wrote: >> I would like to deprecate some outdated functions in the operator module. >> >> The isSequenceType(), isMappingType(), and isNumberType() >> functions never worked reliably and now their >> intended purpose has been l

Re: [Python-Dev] Operator module deprecations

2009-01-24 Thread Brett Cannon
On Sat, Jan 24, 2009 at 14:46, Raymond Hettinger wrote: > I would like to deprecate some outdated functions in the operator module. > > The isSequenceType(), isMappingType(), and isNumberType() > functions never worked reliably and now their > intended purpose has been largely fulfilled by > ABCs.

[Python-Dev] Operator module deprecations

2009-01-24 Thread Raymond Hettinger
I would like to deprecate some outdated functions in the operator module. The isSequenceType(), isMappingType(), and isNumberType() functions never worked reliably and now their intended purpose has been largely fulfilled by ABCs. The isCallable() function has long been deprecated and I think it