diff options
author | Chris Withers <chris@withers.org> | 2020-01-13 07:55:34 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-13 07:55:34 +0000 |
commit | 98c06c0cd38bb69c01af3334805e6b0a658518d0 (patch) | |
tree | 50afddddbe393f0a0d1ec63f63a3b2e480b984aa | |
parent | b2b4a51f7463a0392456f7772f33223e57fa4ccc (diff) | |
download | cpython-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.py | 2 |
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 |