Hi,<br>Was wondering why it's not possible to import namespaces when XOTcl objects are involved. <br>The shortest example that I could rustle up is included below. <br>Help in understanding what prevents this from working is much appreciated. 
<br>-shishir<br><br><br>% package require XOTcl<br>1.4.0<br><br>% namespace eval ::my::test {<br>&nbsp; namespace import ::xotcl::*<br><br>&nbsp; Class Foo<br><br>&nbsp; Foo instproc bar {} {<br>&nbsp;&nbsp;&nbsp; puts &quot; foo bar is a very tasty!&quot;
<br>&nbsp; }<br>}<br><br>% ::my::test::Foo foo<br>::foo<br>% foo bar<br>&nbsp;foo bar is a very tasty!<br><br>% ::my::test::Foo info instances<br>::foo<br><br>% # Why doesn't the following work? <br>% namespace import ::my::test::*
<br><br>% Foo foo2<br>invalid command name &quot;Foo&quot;<br><br>% ::my::test::Foo info instances<br>::foo<br><br>% Foo info instances<br>invalid command name &quot;Foo&quot;<br><br>