mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
Delete IPythonConsoleTest#testParsing: duplicates PythonConsoleParsingTest#testQuestionEnd. Fails because a virtual file is not marked as IPython. PythonConsoleTest#testCompletionDoNotEvaluateProperty: rewrite to static. DebugConsoleTest: delete deprecated python function. Merge-request: IJ-MR-145576 Merged-by: Egor Eliseev <Egor.Eliseev@jetbrains.com> GitOrigin-RevId: 3708defece0a957708073b524995c21e7d095224
11 lines
124 B
Python
11 lines
124 B
Python
from __future__ import with_statement
|
|
from time import sleep
|
|
|
|
|
|
i = 0
|
|
while True:
|
|
print(i)
|
|
i = i + 1
|
|
sleep(0.1)
|
|
|