[Python-Dev] A few small issues

Andrew Kuchling akuchlin@mems-exchange.org
Tue, 27 Feb 2001 10:02:28 -0500


On Tue, Feb 27, 2001 at 03:53:08AM -0800, Ka-Ping Yee wrote:
>4.  As far as i can tell, the curses.wrapper package is inaccessible.
>    It's obscured by a curses.wrapper() function in the curses package.

The function in the packages results from 'from curses.wrapper import
wrapper', so there's really no need to import curses.wrapper directly.  
Hmmm... but the module is documented in the library reference.  
I could move the definition of wrapper() into the __init__.py and
change the docs, if that's desired.

--amk