Show
Ignore:
Timestamp:
10/02/07 12:55:57 (15 months ago)
Author:
fdb
Message:

Sorting example

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • nodebox/trunk/src/nodebox/console.py

    r159 r188  
    22 
    33from nodebox import graphics 
     4from nodebox import util 
    45 
    56class NodeBoxRunner(object): 
     
    5960        for name in graphics.__all__: 
    6061            self.namespace[name] = getattr(graphics, name) 
     62        for name in util.__all__: 
     63            self.namespace[name] = getattr(util, name) 
    6164        # Add everything from the context object 
    6265        self.namespace["_ctx"] = self.context