Issue 1516309: Remove deprecated functions from operator (original ) (raw ) This issue has been migrated to GitHub: https://github.com/python/cpython/issues/43602
classification
process
Created on 2006-07-03 12:47 by collinwinter , last changed 2022-04-11 14:56 by admin . This issue is now closed .
Files
File name
Uploaded
Description
Edit
clean_up_operator.patch
collinwinter,2006-07-03 12:47
Remove deprecated functions from operator, against r47214
NEWS.diff
collinwinter,2006-07-03 12:48
Make note of the removal in NEWS, against r47214
Messages (5)
msg50584 - (view)
Author: Collin Winter (collinwinter) *
Date: 2006-07-03 12:47
This patch removes the isCallable() and sequenceIncludes() functions from the operator module. These functions have been deprecated since Python 2.0. This patch is against r47214 .
msg50585 - (view)
Author: Georg Brandl (georg.brandl) *
Date: 2007-03-13 20:33
I think you can safely commit this.
msg50586 - (view)
Author: Thomas Wouters (twouters) *
Date: 2007-03-14 14:19
Please don't actually remove them until after 2.6 is out; the use of the functions should actually warn (with DeprecationWarning) for at least a release, and they don't warn currently.
msg50587 - (view)
Author: Georg Brandl (georg.brandl) *
Date: 2007-03-14 16:00
My bad, I had thought this patch to be for Python 3000.
msg50588 - (view)
Author: Collin Winter (collinwinter) *
Date: 2007-03-14 20:08
I'll go ahead and add deprecation warnings for 2.6 and remove them in 3.0.
History
Date
User
Action
Args
2022-04-11 14:56:18
admin
set
github: 43602
2006-07-03 12:47:33
collinwinter
create