diff options
Diffstat (limited to 'Python/bltinmodule.c')
-rw-r--r-- | Python/bltinmodule.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index 0c3d6e2c01..3956bb55ef 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -296,13 +296,6 @@ builtin_filter(PyObject *self, PyObject *args) } if (func == (PyObject *)&PyBool_Type || func == Py_None) { - if (Py_Py3kWarningFlag && - PyErr_Warn(PyExc_DeprecationWarning, - "filter with None as a first argument " - "is not supported in 3.x. Use a list " - "comprehension instead.") < 0) - return NULL; - ok = PyObject_IsTrue(item); } else { |