فهرست منبع

fixed __bool__

Riyad Parvez 11 سال پیش
والد
کامیت
1d04b51160
1فایلهای تغییر یافته به همراه2 افزوده شده و 1 حذف شده
  1. 2 1
      celery/utils/timer2.py

+ 2 - 1
celery/utils/timer2.py

@@ -135,8 +135,9 @@ class Timer(threading.Thread):
     def __len__(self):
         return len(self.schedule)
 
-    def __nonzero__(self):
+    def __bool__(self):
         return True
+    __nonzero__ = __bool__
 
     @property
     def queue(self):