[issue34123] ambiguous documentation for dict.popitem

2018-07-16 Thread Raymond Hettinger
Raymond Hettinger added the comment: New changeset bfa8a358e2cec40484c4655138ca3c6b10f8462a by Raymond Hettinger (Miss Islington (bot)) in branch '3.7': bpo-34123: Fix missed documentation update for dict.popitem(). (GH-8292) (GH#8307) https://github.com/python/cpython/commit/bfa8a358e2cec40

[issue34132] Obscure netrc parser "bug"

2018-07-16 Thread bbayles
Change by bbayles : -- nosy: +bbayles ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org

[issue34132] Obscure netrc parser "bug"

2018-07-16 Thread Xiang Zhang
Change by Xiang Zhang : -- nosy: +xiang.zhang ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.py

[issue34134] multiprocessing memory huge usage

2018-07-16 Thread Windson Yang
New submission from Windson Yang : I'm using macOX and I got huge memory usage when using generator with multiprocess. (see file) I think this is because (https://github.com/python/cpython/blob/master/Lib/multiprocessing/pool.py#L383) if not hasattr(iterable, '__len__'): iterabl

[issue33967] functools.singledispatch: Misleading exception when calling without arguments

2018-07-16 Thread INADA Naoki
INADA Naoki added the comment: New changeset 56d8f57b83a37b05a6f2fbc3e141bbc1ba6cb3a2 by INADA Naoki in branch 'master': bpo-33967: Fix wrong use of assertRaises (GH-8306) https://github.com/python/cpython/commit/56d8f57b83a37b05a6f2fbc3e141bbc1ba6cb3a2 -- _

[issue33967] functools.singledispatch: Misleading exception when calling without arguments

2018-07-16 Thread miss-islington
Change by miss-islington : -- pull_requests: +7843 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue33967] functools.singledispatch: Misleading exception when calling without arguments

2018-07-16 Thread miss-islington
Change by miss-islington : -- pull_requests: +7844 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue34135] The results of time.tzname print broken.

2018-07-16 Thread 김태환
New submission from 김태환 : When I call time.tzname at Korean Windows. (Microsoft Windows 10 Pro(10.0.17134 Build 17134)) It prints like below. This problem occurred Python 2 and 3 both. >>> import time >>> time.tzname ('´ëÇѹα¹ Ç¥ÁؽÃ', '´ëÇѹα¹ Àϱ¤ Àý¾à ½Ã°£') I used chardet for getting cor

[issue34134] multiprocessing memory huge usage

2018-07-16 Thread INADA Naoki
INADA Naoki added the comment: Do you imap or imap_unorderd? They are intended for use with iterator, including generator. -- nosy: +inada.naoki ___ Python tracker ___ ___

[issue33967] functools.singledispatch: Misleading exception when calling without arguments

2018-07-16 Thread miss-islington
miss-islington added the comment: New changeset 892df9d15aae08d4033faeb34698e3c550c85854 by Miss Islington (bot) in branch '3.7': bpo-33967: Fix wrong use of assertRaises (GH-8306) https://github.com/python/cpython/commit/892df9d15aae08d4033faeb34698e3c550c85854 --

[issue32545] Unable to install Python 3.7.0a4 on Windows 10 - Error 0x80070643: Failed to install MSI package.

2018-07-16 Thread Amin Radjabov
Amin Radjabov added the comment: yes I try to install to all user, but I have no any other python installations in my OS. I succeeded to install it to just me. -- ___ Python tracker

[issue33967] functools.singledispatch: Misleading exception when calling without arguments

2018-07-16 Thread miss-islington
miss-islington added the comment: New changeset 8b5d191386350d28a0f20283dcb366cf50f82b97 by Miss Islington (bot) in branch '3.6': bpo-33967: Fix wrong use of assertRaises (GH-8306) https://github.com/python/cpython/commit/8b5d191386350d28a0f20283dcb366cf50f82b97 --

[issue33967] functools.singledispatch: Misleading exception when calling without arguments

2018-07-16 Thread INADA Naoki
Change by INADA Naoki : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ P

[issue34068] traceback.clear_frames(): Objects/typeobject.c:3086: _PyType_Lookup: Assertion `!PyErr_Occurred()' failed.

2018-07-16 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 28f07364f066792ceee93231dbb80ae8ad98b2bb by Serhiy Storchaka (Zackery Spytz) in branch 'master': bpo-34068: _io__IOBase_close_impl could call _PyObject_SetAttrId with an exception set (GH-8282) https://github.com/python/cpython/commit/28f0736

[issue34068] traceback.clear_frames(): Objects/typeobject.c:3086: _PyType_Lookup: Assertion `!PyErr_Occurred()' failed.

2018-07-16 Thread miss-islington
Change by miss-islington : -- pull_requests: +7845 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue24618] Invalid read in PyCode_New

2018-07-16 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +7846 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue34134] multiprocessing memory huge usage

2018-07-16 Thread Windson Yang
Windson Yang added the comment: Thank you for the hint, INADA. I think we should add something like "if you are using generator, consider use imap instead" in https://docs.python.org/3.4/library/multiprocessing.html?highlight=process#multiprocessing.pool.Pool.map --

[issue34068] traceback.clear_frames(): Objects/typeobject.c:3086: _PyType_Lookup: Assertion `!PyErr_Occurred()' failed.

2018-07-16 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +7847 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue34134] multiprocessing memory huge usage

2018-07-16 Thread INADA Naoki
INADA Naoki added the comment: > I think we should add something like "if you are using generator, consider > use imap instead" I think it's not good hint. There are short generator. And there are long (or infinite) iterator other than generator too. Maybe, "if iterator is not sequence (e.

<    1   2