Raymond Hettinger <raymond.hettin...@gmail.com> added the comment:
One of the idioms for removing None no longer works: >>> L = [0, 23, 234, 89, None, 0, 35, 9] >>> list(filter(None.__ne__, L)) Warning (from warnings module): File "<pyshell#1>", line 1 DeprecationWarning: NotImplemented should not be used in a boolean context [0, 23, 234, 89, 0, 35, 9] ---------- nosy: +rhettinger _______________________________________ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue35712> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com