diff options
author | Guido van Rossum <guido@python.org> | 1997-09-09 20:44:04 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-09-09 20:44:04 (GMT) |
commit | 4ece95d55a0b0790982d10c04f4eaf092b964af7 (patch) | |
tree | 7786e92b766a53aee9f25ab159c6c317170cc450 /Lib/knee.py | |
parent | 4f9f8e35997d868ab240556c71a8aebb845e774d (diff) | |
download | cpython-4ece95d55a0b0790982d10c04f4eaf092b964af7.zip cpython-4ece95d55a0b0790982d10c04f4eaf092b964af7.tar.gz cpython-4ece95d55a0b0790982d10c04f4eaf092b964af7.tar.bz2 |
#Added doc string.
Diffstat (limited to 'Lib/knee.py')
-rw-r--r-- | Lib/knee.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/Lib/knee.py b/Lib/knee.py index f88d78f..2473f9b 100644 --- a/Lib/knee.py +++ b/Lib/knee.py @@ -1,4 +1,11 @@ -# More structured (slower) alternative to mini +"""An Python re-implementation of hierarchical module import. + +This code is intended to be read, not executed. However, it does work +-- all you need to do to enable it is "import knee". + +(The name is a pun on the klunkier predecessor of this module, "ni".) + +""" import sys, imp, __builtin__, string |