Changeset 293

Show
Ignore:
Timestamp:
09/25/02 13:42:54 (6 years ago)
Author:
sholloway
Message:

*** empty log message ***

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Archive/RBRenderer/Tools/Common/Transformations.py

    r292 r293  
    5959    """ 
    6060    # Non-sensical test -- detects changes more than anything 
     61    >>> from Projections import * 
    6162    >>> c = Composite() 
    6263    >>> n = c.Add(Identity()) 
  • trunk/RBFoundation/test/test_doctests.py

    r290 r293  
    2424#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
    2525 
    26 import Foundation 
    2726from Foundation import WeakBind, ContextApply, Utilities, LazyProperty, ChainedDict, AttributedDict, Acquisition 
    2827 
     
    3130#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
    3231 
    33 TestModules = [x for x in locals().values() if isinstance(x, type(Foundation))] 
    34 TestModules.remove(Foundation) 
     32TestModules = [x for x in locals().values() if isinstance(x, type(__builtins__))] 
    3533TestModules.remove(__builtins__) 
    3634