New submission from Chris Seto:
Expected behavior:
~ ❯❯❯ pyenv shell 3.5.2
~ ❯❯❯ python --version
Python 3.5.2
~ ❯❯❯ python
Python 3.5.2 (default, Oct 24 2016, 00:12:20)
[GCC 4.2.1 Compatible Apple LLVM 8.0.0 (clang-800.0.38)] on darwin
Type "help", "copyright", "credi
Chris Seto added the comment:
Thank you for pointing that out to me!
--
___
Python tracker
<http://bugs.python.org/issue30187>
___
___
Python-bugs-list mailin
New submission from Chris Seto:
When asyncio.coroutines._DEBUG is set to True all coroutines are wrapped in a
CoroWrapper.
The definition of CoroWrapper.throw only excepts a single argument, exc.
It should accept an exception info tuple as returned from sys.exc_info just as
normal generators
Changes by Chris Seto :
--
keywords: +patch
Added file: http://bugs.python.org/file40770/corowrapper.diff
___
Python tracker
<http://bugs.python.org/issue25
New submission from Chris Seto:
When maxsize is set on a JoinableQueue/Queue and the queue is full (maxsize <=
len(queue)) _put is called rather than __put_internal.
__put_internal increments _unfinished_tasks but _put does not.
Whenever using maxsize in a Queue calling task_done will alm
Chris Seto added the comment:
Looks to be fixed in python 3.6
--
resolution: -> fixed
___
Python tracker
<http://bugs.python.org/issue25642>
___
___
Python-