( s, depth )
| 46 | import imath |
| 47 | |
| 48 | def printTree( s, depth ) : |
| 49 | |
| 50 | for c in s.childNames() : |
| 51 | print( ' ' * depth + c ) |
| 52 | printTree( s.child( c ), depth + 1 ) |
| 53 | |
| 54 | class LinkedSceneTest( unittest.TestCase ) : |
| 55 |
nothing calls this directly
no test coverage detected