bsherin / tactic

5 stars 1 forks source link

Console doesn't show cell output if computing the output takes time #1236

Closed bsherin closed 3 months ago

bsherin commented 3 months ago
import time
def test():
    time.sleep(.2)
    return "hello"
bsherin commented 3 months ago

It's almost certainly related to the new machinery I introduced to make sure the output was ordered properly.

bsherin commented 3 months ago

Fixed I think