aboutsummaryrefslogtreecommitdiff
path: root/python/contextlib2/README
diff options
context:
space:
mode:
authorAlan Aversa <alan_avNOersa@lSPAMavabit.com>2020-05-15 23:57:25 +0700
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2020-05-15 23:57:25 +0700
commit8cf98da01d210e5ad84b137f1cbfc5de025f4d78 (patch)
tree5495e9215750dbe3e10d5320f0e0874d29e5d541 /python/contextlib2/README
parent9cbe2b356e18afc7a14882ba99638553127d23fe (diff)
python/contextlib2: Added (Context management).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/contextlib2/README')
-rw-r--r--python/contextlib2/README15
1 files changed, 15 insertions, 0 deletions
diff --git a/python/contextlib2/README b/python/contextlib2/README
new file mode 100644
index 0000000000000..290f12e99469b
--- /dev/null
+++ b/python/contextlib2/README
@@ -0,0 +1,15 @@
+contextlib2 is a backport of the standard library’s contextlib module to
+earlier Python versions.
+
+It also serves as a real world proving ground for possible future
+enhancements to the standard library version.
+
+Development
+
+contextlib2 has no runtime dependencies, but requires unittest2 for
+testing on Python 2.x, as well as setuptools and wheel to generate
+universal wheel archives.
+
+Local testing is just a matter of running python test_contextlib2.py.
+
+Python3 is an optional dependency.