Re: Tcl/Tk 8.5.2 RELEASED



Thanks a lot, nice to see TCL development moving along.

Question for everyone involved or whoever cares to answer:

Is it possible/desirable to extend TCL core to add more functionality
to make the environment more transparent?

Example:
----------------------------------------------------
I have these namespaces: x::y1::z,x::y2::z, x::y3::x

If I want to see all commands in namespaces x::y1::z, x::y2::z,
x::y3::z
info commands x::*::z

In namespace x::y1::z
info commands x::*1::z

Find all namespaces below x::
namespace children x::*

Find all namespaces below x::y1 and x::y2
namespace children x::y*

----------------------------------------------------

Basically, add glob expansion to namespace and it's associated
commands (where it makes sense). IMHO, that would make programming
with TCL much easier for a lot of people (including the humble
me) :) .

.