[issue25073] Document asyncio.test_utils

2015-09-11 Thread Guido van Rossum
Guido van Rossum added the comment: The _ is a good idea. Please do fix up the examples! -- ___ Python tracker ___ ___ Python-bugs-lis

[issue25073] Document asyncio.test_utils

2015-09-11 Thread Yury Selivanov
Yury Selivanov added the comment: > Agreed, but then why isn't it in the tests directory? I think that the main reason is to make it possible for tests to import some common functionality from 'asyncio' package, when you run them from the cloned github asyncio repo. In fact, I think we should

[issue25073] Document asyncio.test_utils

2015-09-11 Thread Guido van Rossum
Guido van Rossum added the comment: Agreed, but then why isn't it in the tests directory? There are some examples in the asyncio repo on GitHub that use test_utils.dummy_ssl_context(), and that's probably why; but that's a fairly bad practice plus it's really a one-liner. --

[issue25073] Document asyncio.test_utils

2015-09-11 Thread Yury Selivanov
Yury Selivanov added the comment: It's meant to be private. -- resolution: -> not a bug stage: needs patch -> resolved status: open -> closed ___ Python tracker ___

[issue25073] Document asyncio.test_utils

2015-09-11 Thread Zachary Ware
New submission from Zachary Ware: asyncio.test_utils is not documented. I'm unsure as to whether that's because it's meant to be private, or if it just hasn't been done yet. -- assignee: docs@python components: Documentation, asyncio messages: 250482 nosy: docs@python, gvanrossum, hayp