cpython: f90e7540dcba (original) (raw)

Mercurial > cpython

changeset 84869:f90e7540dcba

merge 3.3 (#18565) [#18565]

Benjamin Peterson benjamin@python.org
date Sat, 27 Jul 2013 14:07:19 -0700
parents 852e824c7093(current diff)516303f32bad(diff)
children 66a3dc613627
files
diffstat 1 files changed, 40 insertions(+), 1 deletions(-)[+] [-] Lib/test/test_pep380.py 41

line wrap: on

line diff

--- a/Lib/test/test_pep380.py +++ b/Lib/test/test_pep380.py @@ -13,7 +13,7 @@ import sys import inspect import parser -from test.support import captured_stderr +from test.support import captured_stderr, disable_gc, gc_collect class TestPEP380Operation(unittest.TestCase): """ @@ -954,6 +954,45 @@ class TestPEP380Operation(unittest.TestC list(gen()) self.assertEqual(ret, 42)

+

+

+

+ def test_main(): from test import support