From f2f92b10a795bcce9f73c9f906457df475331936 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Tue, 9 Jul 2019 16:29:04 +0200 Subject: [PATCH] Operator --- README.md | 2 +- index.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2f19812..cce493c 100644 --- a/README.md +++ b/README.md @@ -2030,7 +2030,7 @@ Operator ```python from operator import add, sub, mul, truediv, floordiv, mod, pow, neg, abs from operator import eq, ne, lt, le, gt, ge -from operator import not_, and_, or_ +from operator import and_, or_, not_ from operator import itemgetter, attrgetter, methodcaller ``` diff --git a/index.html b/index.html index 57e9481..b96db35 100644 --- a/index.html +++ b/index.html @@ -1751,7 +1751,7 @@ MyMetaClass.__base__ == type # MyMetaClass is a

#Operator

from operator import add, sub, mul, truediv, floordiv, mod, pow, neg, abs
 from operator import eq, ne, lt, le, gt, ge
-from operator import not_, and_, or_
+from operator import and_, or_, not_
 from operator import itemgetter, attrgetter, methodcaller
 
import operator as op