1Name: mock 2URL: https://pypi.python.org/pypi/mock 3Version: 1.0.1 4License: BSD 5 6Description: 7mock is a library for testing in Python. It allows you to replace parts of 8your system under test with mock objects and make assertions about how they 9have been used. 10 11In Python 3.3 onwards, it is a part of the standard library, available as 12unittest.mock. 13 14Local Modifications: 15Removed everything except for mock.py (including setup script and documentation). 16 17