We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e1e70a commit acd635eCopy full SHA for acd635e
design/mvp/CanonicalABI.md
@@ -934,7 +934,8 @@ class WaitableSet:
934
return e
935
936
def poll(self) -> Optional[EventTuple]:
937
- random.shuffle(self.elems)
+ if not DETERMINISTIC_PROFILE:
938
+ random.shuffle(self.elems)
939
for w in self.elems:
940
assert(self is w.maybe_waitable_set)
941
if w.has_pending_event():
design/mvp/canonical-abi/definitions.py
@@ -585,7 +585,8 @@ async def wait(self) -> EventTuple:
585
586
587
588
589
590
591
592
0 commit comments