From c730931fa13234cd88267fd69a09da56ca089440 Mon Sep 17 00:00:00 2001 From: Zachary Ware Date: Wed, 11 Nov 2015 22:59:44 -0600 Subject: Issue #25603: Add missing parenthesis. --- Doc/library/typing.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index 668523b..0fe1167 100644 --- a/Doc/library/typing.rst +++ b/Doc/library/typing.rst @@ -478,7 +478,7 @@ The module defines the following classes, functions and decorators: Usage:: - Employee = typing.NamedTuple('Employee', [('name', str), 'id', int)]) + Employee = typing.NamedTuple('Employee', [('name', str), ('id', int)]) This is equivalent to:: -- cgit v0.12 > : cpython.git
https://github.com/python/cpython.git
summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_datetime.py
blob: d9ddb32363a0d3ad9ea05c0d17003fcae3ecd0f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import unittest
import sys
from test.support import import_fresh_module, run_unittest

TESTS = 'test.datetimetester'

# XXX: import_fresh_module() is supposed to leave sys.module cache untouched,
# XXX: but it does not, so we have to save and restore it ourselves.
save_sys_modules = sys.modules.copy()
try:
    pure_tests = import_fresh_module(TESTS, fresh=['datetime', '_strptime'],
                                     blocked=['_datetime'])
    fast_tests = import_fresh_module(TESTS, fresh=['datetime',
                                                   '_datetime', '_strptime'])
finally:
    sys.modules.clear()
    sys.modules.update(save_sys_modules)
test_modules = [pure_tests, fast_tests]
test_suffixes = ["_Pure", "_Fast"]
# XXX(gb) First run all the _Pure tests, then all the _Fast tests.  You might
# not believe this, but in spite of all the sys.modules trickery running a _Pure
# test last will leave a mix of pure and native datetime stuff lying around.
test_classes = []

for module, suffix in zip(test_modules, test_suffixes):
    for name, cls in module.__dict__.items():
        if not (isinstance(cls, type) and issubclass(cls, unittest.TestCase)):
            continue
        cls.__name__ = name + suffix
        @classmethod
        def setUpClass(cls_, module=module):
            cls_._save_sys_modules = sys.modules.copy()
            sys.modules[TESTS] = module
            sys.modules['datetime'] = module.datetime_module
            sys.modules['_strptime'] = module._strptime
        @classmethod
        def tearDownClass(cls_):
            sys.modules.clear()
            sys.modules.update(cls_._save_sys_modules)
        cls.setUpClass = setUpClass
        cls.tearDownClass = tearDownClass
        test_classes.append(cls)

def test_main():
    run_unittest(*test_classes)

if __name__ == "__main__":
    test_main()