diff options
author | Raymond Hettinger <python@rcn.com> | 2008-03-19 17:58:59 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2008-03-19 17:58:59 (GMT) |
commit | 10dca6e282924974261e7e0b25b13ee1be3ddc58 (patch) | |
tree | c27a0272c2ad502356a4d60eec255b3b7f273537 /Modules | |
parent | 05387861ea96dc7603519f00d95dcd7ad61b8919 (diff) | |
download | cpython-10dca6e282924974261e7e0b25b13ee1be3ddc58.zip cpython-10dca6e282924974261e7e0b25b13ee1be3ddc58.tar.gz cpython-10dca6e282924974261e7e0b25b13ee1be3ddc58.tar.bz2 |
The filter() function does support a None argument in Py3.0.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/itertoolsmodule.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/Modules/itertoolsmodule.c b/Modules/itertoolsmodule.c index a369dc9..8e785be 100644 --- a/Modules/itertoolsmodule.c +++ b/Modules/itertoolsmodule.c @@ -2552,15 +2552,6 @@ ifilter_new(PyTypeObject *type, PyObject *args, PyObject *kwds) if (!PyArg_UnpackTuple(args, "ifilter", 2, 2, &func, &seq)) return NULL; - if (func == Py_None) { - if (Py_Py3kWarningFlag && - PyErr_Warn(PyExc_DeprecationWarning, - "ifilter with None as a first argument " - "is not supported in 3.x. Use a list " - "comprehension instead.") < 0) - return NULL; - } - /* Get iterator. */ it = PyObject_GetIter(seq); if (it == NULL) |