An error occurred while loading the file. Please try again.
-
Jon Dufresne authored
Allows code that was previous written as: mock = MockLdap(...) mock.start() try: ... finally: mock.stop() To now be written as: with MockLdap(...): ... For information on the with statement and context managers, see: https://docs.python.org/3/reference/datamodel.html#context-managers https://docs.python.org/3/reference/compound_stmts.html#with
26b4f624
To find the state of this project's repository at the time of any of these versions, check out the tags.