Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions 13 Lib/test/test_pep646_syntax.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
import doctest
import unittest

doctests = """

Setup
Expand Down Expand Up @@ -317,10 +320,10 @@

__test__ = {'doctests' : doctests}

def test_main(verbose=False):
from test import support
from test import test_pep646_syntax
return support.run_doctest(test_pep646_syntax, verbose)
def load_tests(loader, tests, pattern):
Comment thread
Yhg1s marked this conversation as resolved.
tests.addTest(doctest.DocTestSuite())
return tests


if __name__ == "__main__":
test_main(verbose=True)
unittest.main()
Morty Proxy This is a proxified and sanitized view of the page, visit original site.