# HG changeset patch # User Paul Boddie # Date 1473175091 -7200 # Node ID a509aedea16b52bed3ae28389375edd2b600d7c2 # Parent db90e9c6486406e76c11ff02574777a7092d320a Added missing "is" and "is not" imports. diff -r db90e9c64864 -r a509aedea16b lib/operator/__init__.py --- a/lib/operator/__init__.py Tue Sep 06 16:17:00 2016 +0200 +++ b/lib/operator/__init__.py Tue Sep 06 17:18:11 2016 +0200 @@ -61,6 +61,11 @@ ne, ) +from operator.core import ( + is_, + is_not, + ) + from operator.sequence import ( getitem, setitem,