diff options
author | Rob Day <rkd@rkd.me.uk> | 2019-06-01 04:13:57 (GMT) |
---|---|---|
committer | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2019-06-01 04:13:57 (GMT) |
commit | 664fe3996f7e05ae351526f02b21504bb065bcf8 (patch) | |
tree | 9b10f1dda1dbf79013079d9fdefe0f5c792300e1 /Lib/heapq.py | |
parent | 5c22476c01622f11b7745ee693f8b296a9d6a761 (diff) | |
download | cpython-664fe3996f7e05ae351526f02b21504bb065bcf8.zip cpython-664fe3996f7e05ae351526f02b21504bb065bcf8.tar.gz cpython-664fe3996f7e05ae351526f02b21504bb065bcf8.tar.bz2 |
bpo-29984: Improve 'heapq' test coverage (GH-992)
Diffstat (limited to 'Lib/heapq.py')
-rw-r--r-- | Lib/heapq.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/heapq.py b/Lib/heapq.py index 0e3555c..fabefd8 100644 --- a/Lib/heapq.py +++ b/Lib/heapq.py @@ -597,5 +597,5 @@ except ImportError: if __name__ == "__main__": - import doctest - print(doctest.testmod()) + import doctest # pragma: no cover + print(doctest.testmod()) # pragma: no cover |