mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
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:
parent
76c8649038
commit
b5023df3d6
1 changed files with 0 additions and 0 deletions
12
Lib/test/gdb_sample.py
Normal file
12
Lib/test/gdb_sample.py
Normal 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)
|
Loading…
Add table
Add a link
Reference in a new issue