]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
remove unused __version__ from mock.py (#17977)
authorChris Withers <chris@withers.org>
Mon, 13 Jan 2020 19:11:34 +0000 (19:11 +0000)
committerGitHub <noreply@github.com>
Mon, 13 Jan 2020 19:11:34 +0000 (19:11 +0000)
This isn't included in `__all__` and could be a source of confusion.

Lib/unittest/mock.py

index cd5a2aeb6084d719bea4c961480f4a3256af09ca..5622917dc37439fc889faf162243ae1b5461c284 100644 (file)
@@ -23,8 +23,6 @@ __all__ = (
 )
 
 
-__version__ = '1.0'
-
 import asyncio
 import contextlib
 import io