Chapter 5. Using Callables and Contexts
We can exploit the collections.abc.Callable
ABC and employ a technique called memoization to create objects that behave like functions but perform very quickly because they are able to cache previous results. In some cases, memoization is essential for creating an algorithm that finishes within a reasonable amount of time.
The context concept allows us to create elegant, reliable resource management. The with
statement defines a context and creates a context manager to control the resources used in that context. Python files are generally context managers; when used in a with
statement, they are properly closed.
We'll look at several ways to create context managers using the tools in the contextlib
module. ...
Get Mastering Object-oriented Python now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.