diff options
author | Guido van Rossum <guido@python.org> | 2000-02-15 18:02:11 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-02-15 18:02:11 (GMT) |
commit | f801f3b05c9959a6fa0b7d4912ff17d81a193f18 (patch) | |
tree | 1711d32ebf0bce8e4a54f311fad6ad4b2cfa976b /Tools | |
parent | 0b5b2c89d7cc5bdaa8e47cf4f92737ad5e9bedfe (diff) | |
download | cpython-f801f3b05c9959a6fa0b7d4912ff17d81a193f18.zip cpython-f801f3b05c9959a6fa0b7d4912ff17d81a193f18.tar.gz cpython-f801f3b05c9959a6fa0b7d4912ff17d81a193f18.tar.bz2 |
Add an XXX comment about the ClassBrowser AIP.
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/idle/ClassBrowser.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Tools/idle/ClassBrowser.py b/Tools/idle/ClassBrowser.py index 31299f0..f440164 100644 --- a/Tools/idle/ClassBrowser.py +++ b/Tools/idle/ClassBrowser.py @@ -30,6 +30,8 @@ from TreeWidget import TreeNode, TreeItem, ScrolledCanvas class ClassBrowser: def __init__(self, flist, name, path): + # XXX This API should change, if the file doesn't end in ".py" + # XXX the code here is bogus! self.name = name self.file = os.path.join(path[0], self.name + ".py") self.init(flist) |