[issue43954] Possible missing word on unittest doc

2021-04-30 Thread miss-islington
miss-islington added the comment: New changeset a92d7387632de1fc64de51f22f6191acd0c6f5c0 by Miss Islington (bot) in branch '3.9': bpo-43954: Fix a missing word in the unittest docs (GH-25672) https://github.com/python/cpython/commit/a92d7387632de1fc64de51f22f6191acd0c6f5c0 -- _

[issue43954] Possible missing word on unittest doc

2021-04-30 Thread Julien Palard
Julien Palard added the comment: As far as this issue is concerned, it's fixed. The discussion about this feature not working can continue in the appropriate issue (23882) -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___

[issue43954] Possible missing word on unittest doc

2021-04-30 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 5.0 -> 6.0 pull_requests: +24431 pull_request: https://github.com/python/cpython/pull/25741 ___ Python tracker _

[issue43954] Possible missing word on unittest doc

2021-04-30 Thread Julien Palard
Julien Palard added the comment: New changeset 2abbd8f2add5e80b86a965625b9a77ae94a101cd by Zackery Spytz in branch 'master': bpo-43954: Fix a missing word in the unittest docs (GH-25672) https://github.com/python/cpython/commit/2abbd8f2add5e80b86a965625b9a77ae94a101cd -- __

[issue43954] Possible missing word on unittest doc

2021-04-28 Thread Larry Hastings
Change by Larry Hastings : -- nosy: -larry ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue43954] Possible missing word on unittest doc

2021-04-28 Thread Raymond Hettinger
Change by Raymond Hettinger : -- nosy: +larry ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.py

[issue43954] Possible missing word on unittest doc

2021-04-28 Thread Julien Palard
Julien Palard added the comment: > I propose to remove the namespace package support entirely. I'm no unittest expert, but I have nothing against removing it. I totally agree to at least remove it from the doc while it does not work. -- ___ Python

[issue43954] Possible missing word on unittest doc

2021-04-28 Thread Inada Naoki
Inada Naoki added the comment: I propose to remove the namespace package support entirely. * No user (since it has been broken from Python 3.7) * Hard to maintain (we haven't noted it) * Hard to explain (need to specify the top directory. don't search recursively. See bpo-23882) --

[issue43954] Possible missing word on unittest doc

2021-04-27 Thread Inada Naoki
Inada Naoki added the comment: namespace package support is broken since Python 3.7. See https://bugs.python.org/issue23882#msg387549 We can not use namespace package even if top level directory is specified. -- ___ Python tracker

[issue43954] Possible missing word on unittest doc

2021-04-27 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 4.0 -> 5.0 pull_requests: +24363 stage: -> patch review pull_request: https://github.com/python/cpython/pull/25672 ___ Python tracker

[issue43954] Possible missing word on unittest doc

2021-04-27 Thread Raymond Hettinger
Raymond Hettinger added the comment: Yes, "specify" is likely the missing word. -- nosy: +rhettinger ___ Python tracker ___ ___ Pyt

[issue43954] Possible missing word on unittest doc

2021-04-27 Thread Julien Palard
New submission from Julien Palard : In https://docs.python.org/3/library/unittest.html I see: > Note that you need to the top level directory too. Trying to guess, the missing word may be "specify": > Changed in version 3.4: Test discovery supports namespace packages for start > directory. N