New submission from Alex Orange :
Didn't feel like necroing #33081, but this is basically that problem. The
trouble is the cleanup that appeared to fix #33081 only kicks in once something
has been put in the queue. So if for instance a Process function puts something
in the queue an
Alex Orange added the comment:
Well, having not heard anything I decided to just make a patch and throw it up.
Here it is. This includes a test that will fail with the old version and passes
once patched as well as the patch to the queue code itself.
Worth noting, the CleanExchange class is
New submission from Alex Orange:
The documentation at
http://docs.python.org/2/c-api/typeobj.html#PySequenceMethods is missing
sq_slice between sq_item and sq_ass_item. This will mess up anyone trying to
use anything after sq_item (that isn't using designated initial
Alex Orange added the comment:
If you look at the 2.7.3 version of that file:
http://hg.python.org/cpython/file/70274d53c1dd/Include/object.h it has more
information. It is a ssizessizeargfunc. I assume it passes the lower and upper
bound and expects back a subsequence
Alex Orange added the comment:
Just to clarify though, that is entirely an assumption as to how it's supposed
to be used.
--
___
Python tracker
<http://bugs.python.org/is
Alex Orange added the comment:
I must admit I'm a little new to the development side of things. Can someone
point me at a repo or something that the documentation files are in? I'm sort
of guessing that the html is the processed output of