Removed underscores for public Node methods. Minor cleanup & comments.

This commit is contained in:
Bob Lantz
2010-03-08 15:32:41 -08:00
parent 2626693241
commit 80be564274
12 changed files with 223 additions and 188 deletions
+1 -1
View File
@@ -133,7 +133,7 @@ def makeListCompatible( fn ):
newfn( 'a', 1, 'b' )"""
def newfn( *args ):
"Generated function."
"Generated function. Closure-ish."
if len( args ) == 1:
return fn( *args )
args = ' '.join( [ str( arg ) for arg in args ] )