summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Withers <chris@withers.org>2020-01-13 19:11:34 (GMT)
committerGitHub <noreply@github.com>2020-01-13 19:11:34 (GMT)
commit31d6de5aba009914efa8f0f3c3d7da35217578eb (patch)
tree9ce2f613f900af43de56ef1015c779add8221de0
parent2b1df4592e1691017414337514c6e378eb639498 (diff)
downloadcpython-31d6de5aba009914efa8f0f3c3d7da35217578eb.zip
cpython-31d6de5aba009914efa8f0f3c3d7da35217578eb.tar.gz
cpython-31d6de5aba009914efa8f0f3c3d7da35217578eb.tar.bz2
remove unused __version__ from mock.py (#17977)
This isn't included in `__all__` and could be a source of confusion.
-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 cd5a2ae..5622917 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