Issue #8281: rename test_gdb_sample.py to gdb_sample.py, otherwise it gets picked

as a regular test by regrtest.py, and fails.
This commit is contained in:
Antoine Pitrou 2010-04-01 17:56:57 +00:00
parent 76c8649038
commit b5023df3d6

12
Lib/test/gdb_sample.py Normal file
View file

@ -0,0 +1,12 @@
# 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)