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 ncogh...@gmail.com wrote: Brett Cannon wrote: On Sat, Jan 24, 2009 at 14:46, Raymond Hettinger pyt...@rcn.com wrote: I would like to deprecate some outdated functions in the operator module. The isSequenceType(), isMappingType(), and

Re: [Python-Dev] Operator module deprecations

2009-01-25 Thread Guido van Rossum
- From: Guido van Rossum gu...@python.org To: Nick Coghlan ncogh...@gmail.com Cc: python-dev@python.org 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 ncogh...@gmail.com wrote: Brett Cannon

[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

Re: [Python-Dev] Operator module deprecations

2009-01-24 Thread Brett Cannon
On Sat, Jan 24, 2009 at 14:46, Raymond Hettinger pyt...@rcn.com 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

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 pyt...@rcn.com 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