summaryrefslogtreecommitdiffstats
path: root/Lib/test/gdb_sample.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/gdb_sample.py')
-rw-r--r--Lib/test/gdb_sample.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/Lib/test/gdb_sample.py b/Lib/test/gdb_sample.py
deleted file mode 100644
index 4188f50..0000000
--- a/Lib/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=a, b=b, c=c)
-
-def bar(a, b, c):
- baz(a, b, c)
-
-def baz(*args):
- id(42)
-
-foo(1, 2, 3)