summaryrefslogtreecommitdiff
path: root/lib/python2.7/test/gdb_sample.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python2.7/test/gdb_sample.py')
-rw-r--r--lib/python2.7/test/gdb_sample.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/lib/python2.7/test/gdb_sample.py b/lib/python2.7/test/gdb_sample.py
deleted file mode 100644
index a732b25..0000000
--- a/lib/python2.7/test/gdb_sample.py
+++ /dev/null
@@ -1,12 +0,0 @@
-# Sample script for use by test_gdb.py
-
-def foo(a, b, c):
- bar(a, b, c)
-
-def bar(a, b, c):
- baz(a, b, c)
-
-def baz(*args):
- print(42)
-
-foo(1, 2, 3)