summaryrefslogtreecommitdiff
path: root/python/testData/debug/test1.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/testData/debug/test1.py')
-rw-r--r--python/testData/debug/test1.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/python/testData/debug/test1.py b/python/testData/debug/test1.py
new file mode 100644
index 000000000000..f65495913ff4
--- /dev/null
+++ b/python/testData/debug/test1.py
@@ -0,0 +1,5 @@
+i = 0
+while True:
+ print(i)
+ i = i + 1
+