Okey, I'm by no shot an expert on this but checking the said error lines, it appears the game is flagging a bunch of stuff as Exceptions while they are simply not. RenPy version is the one that's supposed to be, so unless you used the Multi-Mod or an Android port, this shouldn't normally happen...
You mentioned task manager, did you forcefully close the game before problems started with it? Checking the "execution.py" code, it should only raise that flag if:
# The number of statements that have been run since the last infinite loop
# check.
il_statements = 0
# The deadline for reporting we're not in an infinite loop.
il_time = 0
def check_infinite_loop():
global il_statements
il_statements += 1
if il_statements <= 1000:
return
il_statements = 0
global il_time
now = time.time()
if now > il_time:
il_time = now + 60
raise Exception("Possible infinite loop.")
Your error is somewhere here, maybe someone more knowledgeable on RenPy/Python can pinpoint it but if I were in your shoes I would:
-Check that I don't have another instance of Superhuman/RenPy/Phython bugged on Task Manager (Specially if you happen to have closed it forcefully here)
-If game is on external media, unplug and plug again (using the "extract flash drive" context menu)
-Restart your computer. This helped another user who had some weird bug as well while playing Superhuman, so beyond the meme it's totally worth a shot.
-Go to "C:\Users\User\AppData\Roaming\RenPy\Superhuman" AND "C:\Users\User\Desktop\renpy\Superhuman\Superhuman-0.9999b-pc\game\saves" and make a copy of your savefiles and everything else on those directories somewhere else (including persistent), and delete/empty BOTH directories. This should force the game to start in a "fresh state", aka with no stored data that may be corrupted to read.
Let me know if any of this helps
EDIT: I'm further checking the code, Did you happen to enable "config.developer" in "/Renpy/Common/00console.rpy" ? If so, the game might have a different threshold for flagging normal delay as an infinite loop. Feel free to reply when you check all this