summaryrefslogtreecommitdiff
path: root/Lib/unittest/mock.py
diff options
context:
space:
mode:
authorChris Withers <chris@withers.org>2020-01-13 19:11:34 +0000
committerGitHub <noreply@github.com>2020-01-13 19:11:34 +0000
commit31d6de5aba009914efa8f0f3c3d7da35217578eb (patch)
tree9ce2f613f900af43de56ef1015c779add8221de0 /Lib/unittest/mock.py
parent2b1df4592e1691017414337514c6e378eb639498 (diff)
downloadcpython-git-31d6de5aba009914efa8f0f3c3d7da35217578eb.tar.gz
remove unused __version__ from mock.py (#17977)
This isn't included in `__all__` and could be a source of confusion.
Diffstat (limited to 'Lib/unittest/mock.py')
-rw-r--r--Lib/unittest/mock.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/unittest/mock.py b/Lib/unittest/mock.py
index cd5a2aeb60..5622917dc3 100644
--- a/Lib/unittest/mock.py
+++ b/Lib/unittest/mock.py
@@ -23,8 +23,6 @@ __all__ = (
)
-__version__ = '1.0'
-
import asyncio
import contextlib
import io