On 1/31/06, Michael Schneider <[EMAIL PROTECTED]> wrote: > What about some varent of what python uses: > > from __future__ import ..... > > http://docs.python.org/ref/future.html
I had considered using special imports or other trickery, but it also occurred to me that the easiest thing might be to just wrap the experimental features in a config variable. If you want them on, you need to explicitly enable them in the config file. Kevin

