Staging
v0.5.1
https://github.com/python/cpython
Revision 74c17539f26cdefff2b92c93f4233e59106a3f3f authored by INADA Naoki on 25 October 2016, 10:00:45 UTC, committed by INADA Naoki on 25 October 2016, 10:00:45 UTC
accept non-None value is passed to it.send(val).
1 parent c3adf1e
Raw File
Tip revision: 74c17539f26cdefff2b92c93f4233e59106a3f3f authored by INADA Naoki on 25 October 2016, 10:00:45 UTC
Issue #28430: Fix iterator of C implemented asyncio.Future doesn't
Tip revision: 74c1753
debug.py
import os

# If DISTUTILS_DEBUG is anything other than the empty string, we run in
# debug mode.
DEBUG = os.environ.get('DISTUTILS_DEBUG')
back to top