This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Remove deprecated functions from operator
Type: Stage:
Components: Library (Lib) Versions: Python 2.6
process
Status: closed Resolution: later
Dependencies: Superseder:
Assigned To: collinwinter Nosy List: collinwinter, georg.brandl, twouters
Priority: normal Keywords: patch

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) * (Python committer) 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) * (Python committer) Date: 2007-03-13 20:33
I think you can safely commit this.
msg50586 - (view) Author: Thomas Wouters (twouters) * (Python committer) 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) * (Python committer) Date: 2007-03-14 16:00
My bad, I had thought this patch to be for Python 3000.
msg50588 - (view) Author: Collin Winter (collinwinter) * (Python committer) 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:18adminsetgithub: 43602
2006-07-03 12:47:33collinwintercreate