[issue26641] doctest doesn't support packages

2016-03-29 Thread STINNER Victor
STINNER Victor added the comment: I pushed a different fix using module.__path__ since my use case is the test module splitted into at least two directories. -- resolution: -> fixed status: open -> closed ___ Python tracker

[issue26641] doctest doesn't support packages

2016-03-29 Thread Roundup Robot
Roundup Robot added the comment: New changeset 32539353eb95 by Victor Stinner in branch 'default': doctest now supports packages https://hg.python.org/cpython/rev/32539353eb95 -- nosy: +python-dev ___ Python tracker

[issue26641] doctest doesn't support packages

2016-03-25 Thread STINNER Victor
New submission from STINNER Victor: The PEP 420 -- Implicit Namespace Packages introduces packages which have no __init__.py file and can be made of multiple packages. It looks like doctest doesn't support them. I would like to convert the Lib/test/ of the Python standard library into such

[issue26641] doctest doesn't support packages

2016-03-25 Thread STINNER Victor
Changes by STINNER Victor : -- components: +Library (Lib) ___ Python tracker ___