[issue11995] test_pydoc loads all Python modules

2013-05-19 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- resolution: -> fixed stage: -> committed/rejected status: open -> closed versions: -Python 3.2 ___ Python tracker ___ __

[issue11995] test_pydoc loads all Python modules

2013-05-19 Thread Roundup Robot
Roundup Robot added the comment: New changeset 68d2337688c1 by Antoine Pitrou in branch '2.7': Issue #11995: test_pydoc doesn't import all sys.path modules anymore. http://hg.python.org/cpython/rev/68d2337688c1 -- ___ Python tracker

[issue11995] test_pydoc loads all Python modules

2013-05-19 Thread Roundup Robot
Roundup Robot added the comment: New changeset 58ace614df6b by Antoine Pitrou in branch '3.3': Issue #11995: test_pydoc doesn't import all sys.path modules anymore. http://hg.python.org/cpython/rev/58ace614df6b New changeset 13d817cb72e7 by Antoine Pitrou in branch 'default': Issue #11995: test_

[issue11995] test_pydoc loads all Python modules

2013-05-18 Thread Antoine Pitrou
Antoine Pitrou added the comment: Here is a patch. -- nosy: +pitrou versions: +Python 3.4 Added file: http://bugs.python.org/file30307/test_pydoc_imports.patch ___ Python tracker ___

[issue11995] test_pydoc loads all Python modules

2013-01-26 Thread Eric Snow
Changes by Eric Snow : -- nosy: +eric.snow ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue11995] test_pydoc loads all Python modules

2013-01-02 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : Removed file: http://bugs.python.org/file22135/python-3.3-issue_11995.patch ___ Python tracker ___ __

[issue11995] test_pydoc loads all Python modules

2013-01-02 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : Removed file: http://bugs.python.org/file22134/python-3.2-issue_11995.patch ___ Python tracker ___ __

[issue11995] test_pydoc loads all Python modules

2013-01-02 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : Removed file: http://bugs.python.org/file22133/python-2.7-issue_11995.patch ___ Python tracker ___ __

[issue11995] test_pydoc loads all Python modules

2011-05-26 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- versions: +Python 2.7, Python 3.2 ___ Python tracker ___ ___ Python-bugs-list mail

[issue11995] test_pydoc loads all Python modules

2011-05-26 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : Added file: http://bugs.python.org/file22135/python-3.3-issue_11995.patch ___ Python tracker ___

[issue11995] test_pydoc loads all Python modules

2011-05-26 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : Added file: http://bugs.python.org/file22134/python-3.2-issue_11995.patch ___ Python tracker ___

[issue11995] test_pydoc loads all Python modules

2011-05-26 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- keywords: +patch Added file: http://bugs.python.org/file22133/python-2.7-issue_11995.patch ___ Python tracker ___

[issue11995] test_pydoc loads all Python modules

2011-05-07 Thread STINNER Victor
STINNER Victor added the comment: > Isn’t the root problem that pydoc uses import rather than imp or PEP 302 > things? We could change that. It's possible to get the documentation of some module without loading them: pydoc already supports get_source() method of a module loader. But my conc

[issue11995] test_pydoc loads all Python modules

2011-05-06 Thread Éric Araujo
Éric Araujo added the comment: Isn’t the root problem that pydoc uses import rather than imp or PEP 302 things? We could change that. -- nosy: +eric.araujo ___ Python tracker

[issue11995] test_pydoc loads all Python modules

2011-05-04 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: It might be possible to use a part of patch for issue #1674555. A newer version of that patch can be found in: http://overlays.gentoo.org/svn/proj/python/overlays/python/dev-lang/python/files/3.3-20110417/23_all_tests_environment.patch

[issue11995] test_pydoc loads all Python modules

2011-05-04 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue11995] test_pydoc loads all Python modules

2011-05-04 Thread STINNER Victor
STINNER Victor added the comment: See also #11998 for test_signal and _tkinter issue (test_pydoc + test_signal). -- ___ Python tracker ___ __

[issue11995] test_pydoc loads all Python modules

2011-05-04 Thread STINNER Victor
STINNER Victor added the comment: By the way, it is NOT POSSIBLE TO UNLOAD modules implemented in C, even if there is no more Python reference to the module. -- ___ Python tracker

[issue11995] test_pydoc loads all Python modules

2011-05-04 Thread STINNER Victor
New submission from STINNER Victor : PydocUrlHandlerTest.test_url_requests() of test_doc checks "search?key=pydoc" URL. This operation has to load all Python modules to get their documentation. The problem is that loading all modules can have border effects with other tests. The most recent ex