summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2009-02-07 01:57:14 (GMT)
committerBrett Cannon <bcannon@gmail.com>2009-02-07 01:57:14 (GMT)
commit36d1f3eb41a5903d11076e72080bb1971b6818bb (patch)
treeebf5735992ebfbf4b9e06aa151e3f3a33836d7d8 /Lib
parent06c9d96b7033a70922851d7dfe23e74e73ddd287 (diff)
downloadcpython-36d1f3eb41a5903d11076e72080bb1971b6818bb.zip
cpython-36d1f3eb41a5903d11076e72080bb1971b6818bb.tar.gz
cpython-36d1f3eb41a5903d11076e72080bb1971b6818bb.tar.bz2
Add a note for importlib about backporting some of functools.wraps functionality.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/importlib/NOTES5
1 files changed, 4 insertions, 1 deletions
diff --git a/Lib/importlib/NOTES b/Lib/importlib/NOTES
index f0d8e43..c1df89b 100644
--- a/Lib/importlib/NOTES
+++ b/Lib/importlib/NOTES
@@ -3,6 +3,8 @@ to do
* Extract test_path_hooks constants into a util module for extension testing.
+* Backport a poor-man's functools.wraps.
+
* Implement PEP 302 protocol for loaders (should just be a matter of testing).
+ Built-in.
@@ -40,9 +42,10 @@ to do
* bytecode_path
* write_bytecode (not abstract)
- + util
+ + util (for decorators, make sure to wrap with functools.wraps)
- get_module decorator (rename: module_for_loader)
+ - set___package__ decorator
+ machinery