Skip to content

Commit 558e053

Browse files
committed
-
1 parent 75ccb2d commit 558e053

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

README.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ blocktodo: detail PyPy.
4141

4242
# Current state #
4343

44-
The Python Toolbox is at version (blocktodo), which is an alpha release. At this experimental stage of the project, backward compatibility will _not_ be maintained.
44+
The Python Toolbox is at version 0.1.0, which is an alpha release. At this experimental stage of the project, backward compatibility will _not_ be maintained.

python_toolbox/context_managers/__init__.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,11 @@ def do_stuff():
107107
That's it. Inherit all your context managers from `ContextManager` (or decorate
108108
your generator functions with `ContextManagerType`) to enjoy all these
109109
benefits.
110-
# blocktododoc more context managers
110+
111+
112+
This package also defines a bunch of helpful context manager classes on top of
113+
`ContextManager`: Those are `BlankContextManager`, `ReentrantContextManager`
114+
and `DelegatingContextManager`. See these classes' docstrings for more info.
111115
'''
112116

113117
# todo: review the few external tests that I'm skipping.
Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
# Copyright 2009-2011 Ram Rachum.
22
# This program is distributed under the LGPL2.1 license.
33

4-
'''
5-
# blocktododoc
6-
'''
4+
'''Defines base classes for `ContextManager`.'''
75

86

97
from .decorating_context_manager import DecoratingContextManager

0 commit comments

Comments
 (0)