the big merge
[nepi.git] / src / nepi / execution / scheduler.py
index 6ebcfea..e07ba75 100644 (file)
@@ -16,6 +16,8 @@
 #
 # Author: Alina Quereilhac <alina.quereilhac@inria.fr>
 
+from six import next
+
 import itertools
 import heapq
 
@@ -75,7 +77,7 @@ class HeapScheduler(object):
         :type task: task
         """
         if task.id == None:
-            task.id = self._idgen.next()
+            task.id = next(self._idgen)
 
         entry = (task.timestamp, task.id, task)
         self._valid.add(task.id)
@@ -94,6 +96,10 @@ class HeapScheduler(object):
         except:
             pass
 
+    # py3 compat
+    def __next__(self):
+        return self.next()
+
     def next(self):
         """ Get the next task in the queue by timestamp and arrival order
         """