[Python-checkins] r79557 - in python/trunk/Lib/test: gdb_sample.py test_gdb_sample.py

antoine.pitrou python-checkins at python.org
Thu Apr 1 19:56:57 CEST 2010


Author: antoine.pitrou
Date: Thu Apr  1 19:56:57 2010
New Revision: 79557

Log:
Issue #8281: rename test_gdb_sample.py to gdb_sample.py, otherwise it gets picked
as a regular test by regrtest.py, and fails.




Added:
   python/trunk/Lib/test/gdb_sample.py
      - copied unchanged from r79556, /python/trunk/Lib/test/test_gdb_sample.py
Removed:
   python/trunk/Lib/test/test_gdb_sample.py

Deleted: python/trunk/Lib/test/test_gdb_sample.py
==============================================================================
--- python/trunk/Lib/test/test_gdb_sample.py	Thu Apr  1 19:56:57 2010
+++ (empty file)
@@ -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)


More information about the Python-checkins mailing list