alexmojaki / birdseye

Graphical Python debugger which lets you easily view the values of all evaluated expressions

Home Page:https://birdseye.readthedocs.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Condition in while loop does not depend on loop iteration

alexmojaki opened this issue · comments

Sample script:

from birdseye import eye


@eye
def main():
    i = 0
    while i < 3:
        i += 1
        print(i)


main()

While the i in print(i) changes when changing the loop iteration, the one in i < 3 does not.