[issue24274] erroneous comments in dictobject.c

2017-02-20 Thread INADA Naoki
Changes by INADA Naoki : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue24274] erroneous comments in dictobject.c

2017-02-20 Thread INADA Naoki
INADA Naoki added the comment: New changeset ce552e2d5c4ff90218fb41847e8ffb1fd3ba3b2d by GitHub in branch '3.6': bpo-24274: fix erroneous comment in dictobject.c (GH-200) https://github.com/python/cpython/commit/ce552e2d5c4ff90218fb41847e8ffb1fd3ba3b2d --

[issue24274] erroneous comments in dictobject.c

2017-02-20 Thread INADA Naoki
Changes by INADA Naoki : -- pull_requests: +167 ___ Python tracker ___ ___

[issue24274] erroneous comments in dictobject.c

2017-02-20 Thread INADA Naoki
INADA Naoki added the comment: New changeset 1b8df107f867fb05ff39ebee7c55f0a907e7ad5f by GitHub in branch 'master': bpo-24274: fix erroneous comment in dictobject.c (GH-196) https://github.com/python/cpython/commit/1b8df107f867fb05ff39ebee7c55f0a907e7ad5f --

[issue27435] ctypes library loading and AIX - also for 2.7.X (and later)

2017-02-20 Thread Michael Haubenwallner
Michael Haubenwallner added the comment: On 02/03/2017 09:52 PM, Michael Felt wrote: >> Anyway: >> Unfortunately, there is no concept of embedding something like ELF's >> DT_SONAME tag into the Shared Object. >> The very (PATH,BASE,MEMBER) value as (specified to and) discovered by the >>

[issue29586] Cannot run pip in fresh install of py 3.5.3

2017-02-20 Thread Adrian Chan
Adrian Chan added the comment: Ah, I'd forgotten about that. When I first tried to run python I got an error complaining about a missing api-ms-win-crt-runtime-l1-1.0.dll I installed the necessary VC redistributable and it solved that problem. So that's why I could successfully ensurepip

[issue29605] Python2.7-32 misreports architecture on macOS.

2017-02-20 Thread Marc Culler
New submission from Marc Culler: On macOS, the 32 bit python 2.7 reports its architecture as '64bit' in platform.architecture(). Note that the 32 bit Python versions 3.4, 3.5 and 3.6 all correctly report '32bit'. $ python-32 Python 2.7.13 (v2.7.13:a06454b1afa1, Dec 17 2016, 12:39:47) [GCC

[issue15216] Support setting the encoding on a text stream after creation

2017-02-20 Thread INADA Naoki
Changes by INADA Naoki : -- pull_requests: +166 ___ Python tracker ___ ___

[issue29604] ImportError when importing the package `queue`

2017-02-20 Thread Christian Heimes
Christian Heimes added the comment: You have a queue module in your project which shadows the queue module from Python's standard library. -- nosy: +christian.heimes resolution: -> not a bug stage: -> resolved status: open -> closed type: crash -> behavior

[issue29604] ImportError when importing the package `queue`

2017-02-20 Thread Gianluca Rossi
New submission from Gianluca Rossi: In Python 3.5.2 importing *queue* raises an *ImportError*. ``` Python 3.5.2 (default, Jul 5 2016, 12:43:10) [GCC 5.4.0 20160609] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import queue Traceback (most recent call

[issue29532] functools.partial is not compatible between 2.7 and 3.5

2017-02-20 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- pull_requests: +165 ___ Python tracker ___ ___

[issue29532] functools.partial is not compatible between 2.7 and 3.5

2017-02-20 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 9639e4ab6d5bd3ca0ab34fef127e9fc84b6b88b9 by GitHub in branch 'master': bpo-29532: Altering a kwarg dictionary passed to functools.partial() (#190) https://github.com/python/cpython/commit/9639e4ab6d5bd3ca0ab34fef127e9fc84b6b88b9 --

[issue29509] redundant interning in PyObject_GetAttrString

2017-02-20 Thread INADA Naoki
Changes by INADA Naoki : -- pull_requests: +164 ___ Python tracker ___ ___

[issue26382] List object memory allocator

2017-02-20 Thread INADA Naoki
Changes by INADA Naoki : -- resolution: -> wont fix stage: -> resolved status: open -> closed ___ Python tracker ___

[issue29602] complex() on object with __complex__ function loses sign of zero imaginary part

2017-02-20 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- nosy: +serhiy.storchaka ___ Python tracker ___

[issue25617] Installing local installation of Python

2017-02-20 Thread INADA Naoki
INADA Naoki added the comment: close this issue because lack of information. -- resolution: -> rejected stage: -> resolved status: open -> closed ___ Python tracker

[issue29602] complex() on object with __complex__ function loses sign of zero imaginary part

2017-02-20 Thread Mark Dickinson
Mark Dickinson added the comment: Looking at the source, there's also an issue with complex subclasses here: >>> class C(complex): ... pass ... >>> complex(C(-0j)) (-0+0j) >>> complex(-0j) (-0-0j) -- ___ Python tracker

[issue24274] erroneous comments in dictobject.c

2017-02-20 Thread INADA Naoki
Changes by INADA Naoki : -- pull_requests: +163 ___ Python tracker ___ ___

[issue29569] threading.Timer class: Continue periodical execution till action returns True

2017-02-20 Thread slytomcat
Changes by slytomcat : -- pull_requests: -81 ___ Python tracker ___ ___ Python-bugs-list

[issue24274] erroneous comments in dictobject.c

2017-02-20 Thread INADA Naoki
INADA Naoki added the comment: New changeset 66fa9d4205e0da672ed19a397069281a4b177af4 by GitHub in branch '3.5': bpo-24274: fix comment in dictobject.c (GH-194) https://github.com/python/cpython/commit/66fa9d4205e0da672ed19a397069281a4b177af4 --

[issue24274] erroneous comments in dictobject.c

2017-02-20 Thread INADA Naoki
INADA Naoki added the comment: https://github.com/python/cpython/pull/194#issuecomment-281054701 Xiang Zhang found Python 3.6+ have similar issue. -- versions: +Python 3.6, Python 3.7 ___ Python tracker

[issue28331] "CPython implementation detail:" removed when content translated

2017-02-20 Thread INADA Naoki
Changes by INADA Naoki : -- pull_requests: +162 ___ Python tracker ___ ___

[issue29602] complex() on object with __complex__ function loses sign of zero imaginary part

2017-02-20 Thread Mark Dickinson
Changes by Mark Dickinson : -- assignee: -> mark.dickinson ___ Python tracker ___ ___

[issue29602] complex() on object with __complex__ function loses sign of zero imaginary part

2017-02-20 Thread Mark Dickinson
Mark Dickinson added the comment: Confirmed on my machine. The effect of the source is to do `complex(complex(x), 0.0)` in this case, which isn't correct. -- components: +Interpreter Core stage: -> needs patch versions: +Python 3.5, Python 3.7 ___

[issue24274] erroneous comments in dictobject.c

2017-02-20 Thread INADA Naoki
Changes by INADA Naoki : -- pull_requests: +161 ___ Python tracker ___ ___

[issue28963] Use-after-free in _asyncio_Future_remove_done_callback() of _asynciomodule.c

2017-02-20 Thread INADA Naoki
INADA Naoki added the comment: 3.6.0 had been released? Yury, would you create pull request? -- ___ Python tracker ___

[issue23890] assertRaises increases reference counter

2017-02-20 Thread STINNER Victor
Changes by STINNER Victor : -- pull_requests: +160 ___ Python tracker ___ ___

[issue29529] Backport Travis configuration

2017-02-20 Thread INADA Naoki
Changes by INADA Naoki : -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker ___

[issue29520] Documentation uses deprecated "defindex.html" Sphinx template

2017-02-20 Thread INADA Naoki
Changes by INADA Naoki : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue29603] More informative Queue class: new method that returns number of unfinished tasks

2017-02-20 Thread slytomcat
Changes by slytomcat : -- type: -> enhancement ___ Python tracker ___ ___

[issue29603] More informative Queue class: new method that returns number of unfinished tasks

2017-02-20 Thread slytomcat
Changes by slytomcat : -- pull_requests: +158 ___ Python tracker ___ ___ Python-bugs-list

[issue29591] Various security vulnerabilities in bundled expat (CVE-2016-0718 and CVE-2016-4472)

2017-02-20 Thread Natanael Copa
Changes by Natanael Copa : -- title: Various security vulnerabilities in bundled expat -> Various security vulnerabilities in bundled expat (CVE-2016-0718 and CVE-2016-4472) ___ Python tracker

[issue29579] Windows Python 3.7 installer broken by README.txt renamed to README.rst

2017-02-20 Thread STINNER Victor
STINNER Victor added the comment: > I don't think that removing the readme.txt from the install constitutes a > breaking change (LICENSE would be a bigger deal), and removing the file from > the installer sounds simpler than updating the readme. Ok, fine :-) Happy to see this issue closed ;-)

[issue29569] threading.Timer class: Continue periodical execution till action returns True

2017-02-20 Thread slytomcat
Changes by slytomcat : -- pull_requests: +157 ___ Python tracker ___ ___ Python-bugs-list

[issue29602] complex() on object with __complex__ function loses sign of zero imaginary part

2017-02-20 Thread Xiang Zhang
Changes by Xiang Zhang : -- nosy: +mark.dickinson ___ Python tracker ___ ___

[issue29596] Unfinished sentense in howto/clinic.rst

2017-02-20 Thread Xiang Zhang
Changes by Xiang Zhang : -- nosy: +larry stage: -> needs patch ___ Python tracker ___ ___

[issue29595] Expose max_queue_size in ThreadPoolExecutor

2017-02-20 Thread Xiang Zhang
Changes by Xiang Zhang : -- nosy: +xiang.zhang ___ Python tracker ___ ___ Python-bugs-list

[issue11572] bring Lib/copy.py to 100% coverage

2017-02-20 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- stage: patch review -> needs patch versions: +Python 3.7 -Python 3.5 ___ Python tracker ___

[issue29603] More informative Queue class: new method that returns number of unfinished tasks

2017-02-20 Thread slytomcat
New submission from slytomcat: Class queue.Queue control the number of unfinished tasks via method task_done(). But it is only possible to get the information about all task done (via join() method). I'm sure that exposing the number of unfinished tasks (unfinished_tasks class variable) can

[issue29532] functools.partial is not compatible between 2.7 and 3.5

2017-02-20 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- pull_requests: +156 ___ Python tracker ___ ___

[issue29589] test_asyncio & test_multiprocessing_forkserver failed

2017-02-20 Thread Xiang Zhang
Xiang Zhang added the comment: Hi Dima, can you stably reproduce the failures? Or try with the latest 3.6 code? -- nosy: +xiang.zhang stage: -> test needed ___ Python tracker

<    1   2