Changeset 293
- Timestamp:
- 09/25/02 13:42:54 (6 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Archive/RBRenderer/Tools/Common/Transformations.py
r292 r293 59 59 """ 60 60 # Non-sensical test -- detects changes more than anything 61 >>> from Projections import * 61 62 >>> c = Composite() 62 63 >>> n = c.Add(Identity()) trunk/RBFoundation/test/test_doctests.py
r290 r293 24 24 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 25 25 26 import Foundation27 26 from Foundation import WeakBind, ContextApply, Utilities, LazyProperty, ChainedDict, AttributedDict, Acquisition 28 27 … … 31 30 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 32 31 33 TestModules = [x for x in locals().values() if isinstance(x, type(Foundation))] 34 TestModules.remove(Foundation) 32 TestModules = [x for x in locals().values() if isinstance(x, type(__builtins__))] 35 33 TestModules.remove(__builtins__) 36 34
