[issue30187] Regex becomes invalid in python 3.6

2017-04-27 Thread Chris Seto
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

[issue30187] Regex becomes invalid in python 3.6

2017-04-27 Thread Chris Seto
Chris Seto added the comment: Thank you for pointing that out to me! -- ___ Python tracker <http://bugs.python.org/issue30187> ___ ___ Python-bugs-list mailin

[issue25394] CoroWrapper breaks gen.throw

2015-10-13 Thread Chris Seto
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

[issue25394] CoroWrapper breaks gen.throw

2015-10-13 Thread Chris Seto
Changes by Chris Seto : -- keywords: +patch Added file: http://bugs.python.org/file40770/corowrapper.diff ___ Python tracker <http://bugs.python.org/issue25

[issue25642] Setting maxsize breaks asyncio.JoinableQueue/Queue

2015-11-16 Thread Chris Seto
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

[issue25642] Setting maxsize breaks asyncio.JoinableQueue/Queue

2015-11-16 Thread Chris Seto
Chris Seto added the comment: Looks to be fixed in python 3.6 -- resolution: -> fixed ___ Python tracker <http://bugs.python.org/issue25642> ___ ___ Python-