#256: something in 5c425ab4fa breaks bibsched
------------------------+---------------------------------------------------
Reporter: jblayloc | Owner: bthiell
Type: defect | Status: in_merge
Priority: major | Milestone:
Component: *general* | Version:
Resolution: | Keywords: Invenio bug
------------------------+---------------------------------------------------
Comment (by simko):
Yeah, `curses.panel` is a module of its own... The morale is that
every module can decide what it exports out of its submodules, and we
should not assume the modules behave in a consistent way even within
the Python Standard Library world...
{{{
In [1]: import os
In [2]: 'path' in dir(os)
Out[2]: True
In [3]: import curses
In [4]: 'panel' in dir(curses)
Out[4]: False
In [5]: import curses.panel
In [6]: 'panel' in dir(curses)
Out[6]: True
}}}
--
Ticket URL: <http://invenio-software.org/ticket/256#comment:4>
Invenio <http://invenio-software.org>