Fixed typo

Just after I claimed it was fixed, I made a typo.
Anyway.
This commit is contained in:
jneb 2019-12-13 14:47:06 +01:00 committed by GitHub
parent 40986091f7
commit ac9314c0c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -656,7 +656,7 @@ out the line number of a string that occurs in __test__:
>>> from test import doctest__test__ >>> from test import doctest__test__
>>> tests = doctest.DocTestFinder().find(doctest__test__) >>> tests = doctest.DocTestFinder().find(doctest__test__)
>>> [e.lineno for e in tests] >>> [e.lineno for e in tests]
[0, None, 11] [0, None, 13]
""" """