summaryrefslogtreecommitdiff
path: root/TODO
diff options
context:
space:
mode:
authortavis_rudd <tavis_rudd>2002-10-05 22:12:00 +0000
committertavis_rudd <tavis_rudd>2002-10-05 22:12:00 +0000
commit9043232630fce320411bb8d2840c4cb590cbdbb0 (patch)
tree0a7cde24a2e2f58557b941e1845705bd71318a3d /TODO
parent3a4bf25feefccfd4d6f7ce05e3e0bccca56a7e07 (diff)
downloadpython-cheetah-9043232630fce320411bb8d2840c4cb590cbdbb0.tar.gz
removed __builtin__ from the searchList and added it to the end of the lookup
list, after globals()
Diffstat (limited to 'TODO')
-rw-r--r--TODO9
1 files changed, 0 insertions, 9 deletions
diff --git a/TODO b/TODO
index f6fc53b..775d664 100644
--- a/TODO
+++ b/TODO
@@ -52,15 +52,6 @@ Boolean argument 'all' adds local variables, builtins, etc. Boolean argument
- 'errorCatcher None' to stop catching errors in the middle of a template.
-- #del is the only statement that's missing, and there seems to be no other way
- to do it. #silent wants an expression, not a statement. I'm mainly thinking
- about deleting keys from local dictionaries -- delattr() doesn't do this --
- but there's no reason it shouldn't work on local subscripts, attributes and
- variables too. Leave open the possibility for '#del global' (opposite of
- '#set global') in the future if it's needed, and
- '#del searchList $var["key"]' too. I don't know about '#del searchList $var':
- that could be hard to implement, but maybe somebody will want it someday.
-
- Finish up changes to #indent so that it matches the Users' Guide. (MO)