From: Chris Withers Date: Mon, 13 Jan 2020 19:11:34 +0000 (+0000) Subject: remove unused __version__ from mock.py (#17977) X-Git-Tag: v3.9.0a3~79 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=31d6de5aba009914efa8f0f3c3d7da35217578eb;p=thirdparty%2FPython%2Fcpython.git remove unused __version__ from mock.py (#17977) This isn't included in `__all__` and could be a source of confusion. --- diff --git a/Lib/unittest/mock.py b/Lib/unittest/mock.py index cd5a2aeb6084..5622917dc374 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