diff options
author | Brett Cannon <brett@python.org> | 2015-04-13 14:21:02 -0400 |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2015-04-13 14:21:02 -0400 |
commit | f299abdafa0f2b6eb7abae274861b19b361c96bc (patch) | |
tree | afc3a2bf560e30c7725510eda3b57d71ceddba00 /Lib/unittest/loader.py | |
parent | Issue #23726: Don't enable GC for user subclasses of non-GC types that don't ... (diff) | |
download | cpython-f299abdafa0f2b6eb7abae274861b19b361c96bc.tar.gz cpython-f299abdafa0f2b6eb7abae274861b19b361c96bc.tar.bz2 cpython-f299abdafa0f2b6eb7abae274861b19b361c96bc.zip |
Issue #23731: Implement PEP 488.
The concept of .pyo files no longer exists. Now .pyc files have an
optional `opt-` tag which specifies if any extra optimizations beyond
the peepholer were applied.
Diffstat (limited to 'Lib/unittest/loader.py')
-rw-r--r-- | Lib/unittest/loader.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/unittest/loader.py b/Lib/unittest/loader.py index 8a1a2a71c5d..c776f16c306 100644 --- a/Lib/unittest/loader.py +++ b/Lib/unittest/loader.py @@ -14,9 +14,9 @@ from . import case, suite, util __unittest = True -# what about .pyc or .pyo (etc) +# what about .pyc (etc) # we would need to avoid loading the same tests multiple times -# from '.py', '.pyc' *and* '.pyo' +# from '.py', *and* '.pyc' VALID_MODULE_NAME = re.compile(r'[_a-z]\w*\.py$', re.IGNORECASE) |