summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Withers <chris@withers.org>2020-01-13 07:55:34 +0000
committerGitHub <noreply@github.com>2020-01-13 07:55:34 +0000
commit98c06c0cd38bb69c01af3334805e6b0a658518d0 (patch)
tree50afddddbe393f0a0d1ec63f63a3b2e480b984aa
parentb2b4a51f7463a0392456f7772f33223e57fa4ccc (diff)
downloadcpython-git-cjw296-patch-1.tar.gz
remove unused __version__ from mock.pycjw296-patch-1
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 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