[issue29737] Optimize concatenating empty tuples

2017-03-24 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue29557] binhex documentation claims unknown bug

2017-03-24 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue29899] zlib missing when --enable--optimizations option appended

2017-03-24 Thread kyren 原子喵
New submission from kyren 原子喵: i think it happens to all versions that recognizes the optimizations option. At least I confirmed python version 3.4.6, 3.5.3, 3.6.1, when `--enable-optimizations` is appended, `zlib` cannot be imported, `No module named zlib`. I'm working on Ubuntu 14.04 by the

[issue29862] Fix grammar typo in importlib.reload() exception

2017-03-24 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +719 ___ Python tracker ___ ___

[issue29862] Fix grammar typo in importlib.reload() exception

2017-03-24 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +718 ___ Python tracker ___ ___

[issue29862] Fix grammar typo in importlib.reload() exception

2017-03-24 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 9f0aa4843f8c26937d5817f27cac4aae9c0a034f by Mariatta (Mandeep Bhutani) in branch 'master': bpo-29862: Fix grammar in importlib.reload() exception (GH-809) https://github.com/python/cpython/commit/9f0aa4843f8c26937d5817f27cac4aae9c0a034f

[issue29896] ElementTree.fromstring raises undocumented UnicodeError

2017-03-24 Thread R. David Murray
R. David Murray added the comment: Agreed with Terry. The general policy in Python is that we let errors bubble up unless there is a good reason to do something else with them. And errors that bubble up are not, in general, documented. (In short, Python is not Java :) -- nosy:

[issue6028] Interpreter aborts when chaining an infinite number of exceptions

2017-03-24 Thread Aaron Meurer
Changes by Aaron Meurer : -- nosy: +Aaron.Meurer ___ Python tracker ___ ___

[issue29890] Constructor of ipaddress.IPv*Interface does not follow documentation

2017-03-24 Thread Louie Lu
Louie Lu added the comment: The document here says: https://docs.python.org/3/library/ipaddress.html#interface-objects ""IPv4Interface is a subclass of IPv4Address"" trying with: >>> ipaddress.IPv4Address(('192.168.128.0', '255.255.255.0')) Traceback (most recent call last): File "", line

[issue29897] itertools.chain behaves strangly when copied with copy.copy

2017-03-24 Thread Raymond Hettinger
Changes by Raymond Hettinger : -- assignee: rhettinger -> ___ Python tracker ___

[issue29892] change statement for open() is splited into two part in middle of sentence.

2017-03-24 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: PR was merged and backported into 3.6. Thanks all :) -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue29892] change statement for open() is splited into two part in middle of sentence.

2017-03-24 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 5dafaece67cb576ef96579fb5ddcbf62e0827b0d by Mariatta in branch '3.6': bpo-29892: Fix wrong markup on doc-lib-functions (GH-802) (GH-810) https://github.com/python/cpython/commit/5dafaece67cb576ef96579fb5ddcbf62e0827b0d --

[issue29892] change statement for open() is splited into two part in middle of sentence.

2017-03-24 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +717 ___ Python tracker ___ ___

[issue29892] change statement for open() is splited into two part in middle of sentence.

2017-03-24 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 29540cdf6c66df9f806375a95078c0c63192ef78 by Mariatta (NAKAMURA Osamu) in branch 'master': bpo-29892: Fix wrong markup on doc-lib-functions (GH-802) https://github.com/python/cpython/commit/29540cdf6c66df9f806375a95078c0c63192ef78 --

[issue29095] Compiling Python 3.6 from source on MacOS X Sierra

2017-03-24 Thread Tommy Carstensen
Tommy Carstensen added the comment: Thanks @ned.deily ! That did the trick for me! When installing openssl I just had to do ./config --prefix=/my/home/dir prior to doing make and make install. Then I just did two commands prior to installing python3.6: export CFLAGS="-I/my/home/dir/include"

[issue29891] urllib.request.Request accepts but doesn't check bytes headers

2017-03-24 Thread Martin Panter
Martin Panter added the comment: If you enable BytesWarning (python -b) you do get an error: >>> urlopen(req, data) Traceback (most recent call last): File "", line 1, in File "/usr/lib/python3.5/urllib/request.py", line 162, in urlopen return opener.open(url, data, timeout) File

[issue29527] Travis: doc job is broken

2017-03-24 Thread STINNER Victor
Changes by STINNER Victor : -- pull_requests: +716 ___ Python tracker ___ ___

[issue29527] Travis: doc job is broken

2017-03-24 Thread STINNER Victor
STINNER Victor added the comment: New changeset 0d5f11061a873e9fb67ae59e46b3313e5ba22fc3 by Victor Stinner in branch 'master': Don't treat warnings as error in Travis docs job (#7) https://github.com/python/cpython/commit/0d5f11061a873e9fb67ae59e46b3313e5ba22fc3 --

[issue29528] Encrypt IRC channel details for Travis

2017-03-24 Thread STINNER Victor
STINNER Victor added the comment: New changeset 4538ddcacc8e8f00d5d36d7bc84e551a56ce6da2 by Victor Stinner (Donald Stufft) in branch 'master': Fix bpo-29528 Use a secure variable to stop spam (#13) https://github.com/python/cpython/commit/4538ddcacc8e8f00d5d36d7bc84e551a56ce6da2 --

[issue29510] gitignore settings files for Eclipse IDE

2017-03-24 Thread Rajath Agasthya
Changes by Rajath Agasthya : -- pull_requests: +715 ___ Python tracker ___ ___

[issue29474] Grammatical errors in weakref.WeakValueDictionary docs

2017-03-24 Thread Zachary Ware
Zachary Ware added the comment: New changeset 5c329882fa20f615375f068176e569de7389fa3f by Zachary Ware (Mariatta) in branch '2.7': bpo-29474: Improve documentation for weakref.WeakValueDictionary (#11) https://github.com/python/cpython/commit/5c329882fa20f615375f068176e569de7389fa3f

[issue29095] Compiling Python 3.6 from source on MacOS X Sierra

2017-03-24 Thread Ned Deily
Ned Deily added the comment: @Tommy.Carstensen: Unfortunately, Apple has deprecated use of the system-supplied OpenSSL libraries and with the latest releases no longer supply the header files needed to build with them. They are very old anyway. So, you need to supply a version of them. The

[issue29438] use after free in key sharing dict

2017-03-24 Thread INADA Naoki
INADA Naoki added the comment: New changeset 2294f3aee14a6074b17c67ef936c607430bb3c7a by INADA Naoki in branch 'master': bpo-29438: fixed use-after-free in key sharing dict (#17) https://github.com/python/cpython/commit/2294f3aee14a6074b17c67ef936c607430bb3c7a --

[issue27122] Hang with contextlib.ExitStack and subprocess.Popen (regression)

2017-03-24 Thread Berker Peksag
Berker Peksag added the comment: New changeset af88e7eda4101f36e904771d3cf59a5f740b3b00 by Berker Peksag (Nathaniel J. Smith) in branch 'master': bpo-27122: Fix comment to point to correct issue number (#47) https://github.com/python/cpython/commit/af88e7eda4101f36e904771d3cf59a5f740b3b00

[issue27122] Hang with contextlib.ExitStack and subprocess.Popen (regression)

2017-03-24 Thread Berker Peksag
Berker Peksag added the comment: New changeset 89b1824e693419b20b6a9113e5293f1c1a78065f by Berker Peksag in branch '3.6': bpo-27122: Fix comment to point to correct issue number (#48) https://github.com/python/cpython/commit/89b1824e693419b20b6a9113e5293f1c1a78065f --

[issue29474] Grammatical errors in weakref.WeakValueDictionary docs

2017-03-24 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset ae828714ebdb7a0d69bf23c1f6d606e5e63bdcfe by Mariatta in branch '3.5': bpo-29474: Improve documentation for weakref.WeakValueDictionary (#23) https://github.com/python/cpython/commit/ae828714ebdb7a0d69bf23c1f6d606e5e63bdcfe --

[issue29474] Grammatical errors in weakref.WeakValueDictionary docs

2017-03-24 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 308f789d00735e6707dbc5c8f60a1c8cf245fb4b by Mariatta in branch '3.6': bpo-29474: Improve documentation for weakref.WeakValueDictionary (#22) https://github.com/python/cpython/commit/308f789d00735e6707dbc5c8f60a1c8cf245fb4b --

[issue27122] Hang with contextlib.ExitStack and subprocess.Popen (regression)

2017-03-24 Thread Berker Peksag
Berker Peksag added the comment: New changeset c6d2f498142c29ed62241ab6d89cb7b5e38f2fca by Berker Peksag in branch '3.5': bpo-27122: Fix comment to point to correct issue number (#50) https://github.com/python/cpython/commit/c6d2f498142c29ed62241ab6d89cb7b5e38f2fca -- nosy:

[issue29474] Grammatical errors in weakref.WeakValueDictionary docs

2017-03-24 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 3110a379bbb1ec10a84d70a2f0faffcf8d22c7ed by Mariatta in branch 'master': bpo-29474: Improve documentation for weakref.WeakValueDictionary (#10) https://github.com/python/cpython/commit/3110a379bbb1ec10a84d70a2f0faffcf8d22c7ed --

[issue29524] Move functions to call objects into a new Objects/call.c file

2017-03-24 Thread STINNER Victor
STINNER Victor added the comment: New changeset c22bfaae83ab5436d008ac0d13e7b47cbe776f08 by Victor Stinner in branch 'master': bpo-29524: Add Objects/call.c file (#12) https://github.com/python/cpython/commit/c22bfaae83ab5436d008ac0d13e7b47cbe776f08 --

[issue28929] Provide a link from documentation back to its source file

2017-03-24 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset cabd1c7462ef991937e0e759b9bf307b3091ef06 by Mariatta in branch '3.5': [backport to 3.5] bpo-28929: Link the documentation to its source file on GitHub (#36) https://github.com/python/cpython/commit/cabd1c7462ef991937e0e759b9bf307b3091ef06

[issue28929] Provide a link from documentation back to its source file

2017-03-24 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset e15259c2dfef58df5f7cfa2305811a00c05e0353 by Mariatta in branch '2.7': bpo-28929: Link the documentation to its source file on GitHub (#38) https://github.com/python/cpython/commit/e15259c2dfef58df5f7cfa2305811a00c05e0353 --

[issue28929] Provide a link from documentation back to its source file

2017-03-24 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset d4a97d894859d4bb52937d46460049ba016e00b2 by Mariatta in branch 'master': bpo-28929: Link the documentation to its source file on GitHub (#35) https://github.com/python/cpython/commit/d4a97d894859d4bb52937d46460049ba016e00b2 --

[issue29176] /tmp does not exist on Android and is used by curses.window.putwin()

2017-03-24 Thread STINNER Victor
STINNER Victor added the comment: New changeset 61e2bc74dfab1ceee332d3f480dcf86c478c87c5 by Victor Stinner in branch 'master': bpo-29176: Fix name of the _curses.window class (#52) https://github.com/python/cpython/commit/61e2bc74dfab1ceee332d3f480dcf86c478c87c5 --

[issue28929] Provide a link from documentation back to its source file

2017-03-24 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset f66c81ff499fb431e56bc68f5e39c2f7b9fcb6a7 by Mariatta in branch '3.6': [backport to 3.6] bpo-28929: Link the documentation to its source file on GitHub (#37) https://github.com/python/cpython/commit/f66c81ff499fb431e56bc68f5e39c2f7b9fcb6a7

[issue29438] use after free in key sharing dict

2017-03-24 Thread INADA Naoki
INADA Naoki added the comment: New changeset 06a4fcb2458c5904968b5c8fe6b64940ba83a50d by INADA Naoki in branch '3.5': bpo-29438: Fixed use-after-free in key sharing dict (#40) https://github.com/python/cpython/commit/06a4fcb2458c5904968b5c8fe6b64940ba83a50d --

[issue29438] use after free in key sharing dict

2017-03-24 Thread INADA Naoki
INADA Naoki added the comment: New changeset 89ddffbe9dcb38b79f99563b0d4d594d1105a192 by INADA Naoki in branch '3.6': bpo-29438: fixed use-after-free in key sharing dict (#39) https://github.com/python/cpython/commit/89ddffbe9dcb38b79f99563b0d4d594d1105a192 --

[issue29521] Minor warning messages when compiling documentation

2017-03-24 Thread Brian Curtin
Brian Curtin added the comment: New changeset 3d707be950b387552585451071928e7b39cdfa53 by Brian Curtin (Jim DeLaHunt) in branch 'master': bpo-29521 Fix two minor documentation build warnings (#41) https://github.com/python/cpython/commit/3d707be950b387552585451071928e7b39cdfa53 --

[issue29521] Minor warning messages when compiling documentation

2017-03-24 Thread STINNER Victor
STINNER Victor added the comment: New changeset 2b501866ed493758e4c4b29f0ce9b24023d910a1 by Victor Stinner in branch 'master': Travis CI: run rstlint.py in the docs job (#68) https://github.com/python/cpython/commit/2b501866ed493758e4c4b29f0ce9b24023d910a1 --

[issue28556] typing.py upgrades

2017-03-24 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset b692dc8475a032740576129d0990ddc3edccab2b by Mariatta (Ivan Levkivskyi) in branch 'master': bpo-28556: Various updates to typing (#28) https://github.com/python/cpython/commit/b692dc8475a032740576129d0990ddc3edccab2b --

[issue28556] typing.py upgrades

2017-03-24 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 9c5684e0d380cf5bc109888603756084588ce617 by Mariatta in branch '3.5': bpo-28556: Various updates to typing (#28) (#78) https://github.com/python/cpython/commit/9c5684e0d380cf5bc109888603756084588ce617 --

[issue28556] typing.py upgrades

2017-03-24 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 0230e64d2c976ab755c145e97bf86032e0fe3a53 by Mariatta in branch '3.6': bpo-28556: Various updates to typing (#28) (#77) https://github.com/python/cpython/commit/0230e64d2c976ab755c145e97bf86032e0fe3a53 --

[issue29521] Minor warning messages when compiling documentation

2017-03-24 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 38c8354f3204441f6c6bd22213b449d2d8954fcc by Mariatta in branch '3.5': bpo-29521 Fix two minor documentation build warnings (#41) (#84) https://github.com/python/cpython/commit/38c8354f3204441f6c6bd22213b449d2d8954fcc --

[issue29521] Minor warning messages when compiling documentation

2017-03-24 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset db3deb98e969d3f43b169cd320abd46b21a10c6d by Mariatta in branch '3.6': bpo-29521 Fix two minor documentation build warnings (#41) (#83) https://github.com/python/cpython/commit/db3deb98e969d3f43b169cd320abd46b21a10c6d -- nosy: +Mariatta

[issue29463] Add `docstring` field to AST nodes

2017-03-24 Thread STINNER Victor
STINNER Victor added the comment: New changeset cb41b2766de646435743b6af7dd152751b54e73f by Victor Stinner (INADA Naoki) in branch 'master': bpo-29463: Add docstring field to some AST nodes. (#46) https://github.com/python/cpython/commit/cb41b2766de646435743b6af7dd152751b54e73f --

[issue29546] A more helpful ImportError message

2017-03-24 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: New changeset 1bc156430bad8177b5beecf57979628c1d071230 by Barry Warsaw (Matthias Bussonnier) in branch 'master': bpo-29546: Improve from-import error message with location (#103)

[issue28598] RHS not consulted in `str % subclass_of_str` case.

2017-03-24 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset d7e64337ef45085792b382a09f5b3a45d3687c8c by Serhiy Storchaka (Martijn Pieters) in branch 'master': bpo-28598: Support __rmod__ for RHS subclasses of str in % string formatting operations (#51)

[issue28911] Clarify the behaviour of assert_called_once_with

2017-03-24 Thread STINNER Victor
STINNER Victor added the comment: New changeset 55b82e10dc6b75b30a72fa56beb60eaf54a008d4 by Victor Stinner (Arne de Laat) in branch '3.6': bpo-28911: Clarify the behaviour of assert_called_once_with. (#252) https://github.com/python/cpython/commit/55b82e10dc6b75b30a72fa56beb60eaf54a008d4

[issue28911] Clarify the behaviour of assert_called_once_with

2017-03-24 Thread STINNER Victor
STINNER Victor added the comment: New changeset 324c5d8ca6ed1c964d3b20e5762139ec65c7827c by Victor Stinner (Arne de Laat) in branch 'master': bpo-28911: Clarify the behaviour of assert_called_once_with. (#251) https://github.com/python/cpython/commit/324c5d8ca6ed1c964d3b20e5762139ec65c7827c

[issue20438] inspect: Deprecate getfullargspec?

2017-03-24 Thread Nick Coghlan
Nick Coghlan added the comment: New changeset 0246422b974b1a0c50dd30b0e1a1138674ef87a5 by Nick Coghlan (Berker Peksag) in branch '3.5': bpo-28814: Undeprecate inadvertently deprecated inspect functions. (#122) (#244)

[issue28814] Deprecation notice on inspect.getargvalues() is incorrect

2017-03-24 Thread Nick Coghlan
Nick Coghlan added the comment: New changeset 2197eac6104311472f200645bc844adb46444b10 by Nick Coghlan (Berker Peksag) in branch '3.6': bpo-28814: Undeprecate inadvertently deprecated inspect functions. (#122) (#243)

[issue20438] inspect: Deprecate getfullargspec?

2017-03-24 Thread Nick Coghlan
Nick Coghlan added the comment: New changeset 2197eac6104311472f200645bc844adb46444b10 by Nick Coghlan (Berker Peksag) in branch '3.6': bpo-28814: Undeprecate inadvertently deprecated inspect functions. (#122) (#243)

[issue28911] Clarify the behaviour of assert_called_once_with

2017-03-24 Thread STINNER Victor
STINNER Victor added the comment: New changeset fa30453568ae71861aa1928373bd76da4f3a33f6 by Victor Stinner (Arne de Laat) in branch '3.5': bpo-28911: Clarify the behaviour of assert_called_once_with. (#254) https://github.com/python/cpython/commit/fa30453568ae71861aa1928373bd76da4f3a33f6

[issue28814] Deprecation notice on inspect.getargvalues() is incorrect

2017-03-24 Thread Nick Coghlan
Nick Coghlan added the comment: New changeset 0246422b974b1a0c50dd30b0e1a1138674ef87a5 by Nick Coghlan (Berker Peksag) in branch '3.5': bpo-28814: Undeprecate inadvertently deprecated inspect functions. (#122) (#244)

[issue29622] ast module doesn't support optional fields of Parser/Python.asdl

2017-03-24 Thread INADA Naoki
INADA Naoki added the comment: New changeset 4c78c527d215c37472145152cb0e95f196cdddc9 by INADA Naoki in branch 'master': bpo-29622: Make AST constructor to accept less than enough number of positional arguments (GH-249)

[issue29624] Python 3.5.3 x86 web installer cannot install launcher

2017-03-24 Thread Steve Dower
Steve Dower added the comment: New changeset 1aceb024172ea3d6f9dd6e90f4fbe63ea1fb054e by Steve Dower in branch 'master': bpo-29624: Adds purge step and layout test after uploading files. (#258) https://github.com/python/cpython/commit/1aceb024172ea3d6f9dd6e90f4fbe63ea1fb054e --

[issue29463] Add `docstring` field to AST nodes

2017-03-24 Thread INADA Naoki
INADA Naoki added the comment: New changeset 4c78c527d215c37472145152cb0e95f196cdddc9 by INADA Naoki in branch 'master': bpo-29622: Make AST constructor to accept less than enough number of positional arguments (GH-249)

[issue29624] Python 3.5.3 x86 web installer cannot install launcher

2017-03-24 Thread Steve Dower
Steve Dower added the comment: New changeset e29741466df0cd01a49bf5ec3b1df3e2bad119a7 by Steve Dower in branch '3.5': bpo-29624: Adds purge step and layout test after uploading files. (#258) (#263) https://github.com/python/cpython/commit/e29741466df0cd01a49bf5ec3b1df3e2bad119a7 --

[issue29624] Python 3.5.3 x86 web installer cannot install launcher

2017-03-24 Thread Steve Dower
Steve Dower added the comment: New changeset f2beceb7e54fadc507137f86cbe9d74f7e5b8f7c by Steve Dower in branch '3.6': bpo-29624: Adds purge step and layout test after uploading files. (#258) (#264) https://github.com/python/cpython/commit/f2beceb7e54fadc507137f86cbe9d74f7e5b8f7c --

[issue29634] Reduce deque repeat execution when maxlen exist and size is not 1

2017-03-24 Thread Raymond Hettinger
Raymond Hettinger added the comment: New changeset 357bad7101df196d7f4ea3dc6ed9a6436afb022c by Raymond Hettinger (Louie Lu) in branch 'master': bpo-29634: Reduce deque repeat execution when maxlen exist and size is not 1 (#255) (#255)

[issue28929] Provide a link from documentation back to its source file

2017-03-24 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 23d2c31cbf3032b8c6bb254f06c4532a6db466b6 by Mariatta in branch '2.7': [2.7] bpo-28929: Add to Misc/NEWS (GH-286) https://github.com/python/cpython/commit/23d2c31cbf3032b8c6bb254f06c4532a6db466b6 --

[issue27788] platform module's version number doesn't match its docstring

2017-03-24 Thread Marc-Andre Lemburg
Marc-Andre Lemburg added the comment: New changeset 6059ce45aa96f52fa0150e68ea655fbfdc25609a by Marc-Andre Lemburg (Matthias Bussonnier) in branch 'master': bpo-27788 : synchronise platform.py version number (#246)

[issue29637] ast.get_docstring(): AttributeError: 'NoneType' object has no attribute 'expandtabs'

2017-03-24 Thread INADA Naoki
INADA Naoki added the comment: New changeset 41cea70aa38de50c1d714209aa2b7694d86a7e0c by INADA Naoki (Matthias Bussonnier) in branch 'master': bpo-29637: clean docstring only if not None (GH-267) https://github.com/python/cpython/commit/41cea70aa38de50c1d714209aa2b7694d86a7e0c --

[issue28556] typing.py upgrades

2017-03-24 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 365cb5bb9069273e6970c9d5d17ee2fe5003e7ac by Mariatta (Ivan Levkivskyi) in branch 'master': bpo-28556: Fix regression that sneaked into recent typing updates (GH-270)

[issue25008] Deprecate smtpd (based on deprecated asyncore/asynchat)

2017-03-24 Thread STINNER Victor
STINNER Victor added the comment: New changeset fba79dc568030091f84110fccac4cb64c2fef020 by Victor Stinner (Barry Warsaw) in branch 'master': bpo-25008: Deprecate smtpd and point to aiosmtpd (#274) https://github.com/python/cpython/commit/fba79dc568030091f84110fccac4cb64c2fef020 --

[issue25008] Deprecate smtpd (based on deprecated asyncore/asynchat)

2017-03-24 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: New changeset f37b0cb230069481609b0bb06891b5dd26320504 by Barry Warsaw in branch '3.4': bpo-25008: Deprecate smtpd and point to aiosmtpd (#274) (#280) https://github.com/python/cpython/commit/f37b0cb230069481609b0bb06891b5dd26320504 --

[issue29110] [patch] Fix file object leak in `aifc.open` when given invalid AIFF file.

2017-03-24 Thread INADA Naoki
INADA Naoki added the comment: New changeset 5dc33eea538361f8a218255f83db2e9298dd8c53 by INADA Naoki in branch 'master': bpo-29110: add test for Aifc_write. (GH-293) https://github.com/python/cpython/commit/5dc33eea538361f8a218255f83db2e9298dd8c53 --

[issue25008] Deprecate smtpd (based on deprecated asyncore/asynchat)

2017-03-24 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: New changeset 66b5092fac4264efdc9c508a7dd425fa9833e147 by Barry Warsaw in branch '3.5': bpo-25008: Deprecate smtpd and point to aiosmtpd (#274) (#279) https://github.com/python/cpython/commit/66b5092fac4264efdc9c508a7dd425fa9833e147 --

[issue28929] Provide a link from documentation back to its source file

2017-03-24 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 5023686f7ee69e9da07cda4b7da6691f19892111 by Mariatta in branch '3.5': [3.5] bpo-28929: Add to Misc/NEWS (GH-285) https://github.com/python/cpython/commit/5023686f7ee69e9da07cda4b7da6691f19892111 --

[issue28929] Provide a link from documentation back to its source file

2017-03-24 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 1a8dd944d4016593e78a7a6c3c635adee783abfd by Mariatta in branch '3.6': [3.6] bpo-28929: Add to Misc/NEWS (GH-284) https://github.com/python/cpython/commit/1a8dd944d4016593e78a7a6c3c635adee783abfd --

[issue25008] Deprecate smtpd (based on deprecated asyncore/asynchat)

2017-03-24 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: New changeset 0a1b656d8ce3da14f8acf947477b8e998e68ef3b by Barry Warsaw in branch '3.6': bpo-25008: Deprecate smtpd and point to aiosmtpd (#274) (#278) https://github.com/python/cpython/commit/0a1b656d8ce3da14f8acf947477b8e998e68ef3b --

[issue28556] typing.py upgrades

2017-03-24 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset bc33cd4e7a36ed4c309807ca9a911ef955582710 by Mariatta in branch '3.5': [3.5] bpo-28556: Update to typing: treat subscripted generics as proxies (GH-265) (GH-269) https://github.com/python/cpython/commit/bc33cd4e7a36ed4c309807ca9a911ef955582710

[issue28556] typing.py upgrades

2017-03-24 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset bea9d2f6488f01794098d9fd4710b98df1bd9472 by Mariatta in branch '3.6': [3.6] bpo-28556: Update to typing: treat subscripted generics as proxies (GH-265) (GH-268) https://github.com/python/cpython/commit/bea9d2f6488f01794098d9fd4710b98df1bd9472

[issue29121] sqlite3 Controlling Transactions documentation not updated

2017-03-24 Thread Berker Peksag
Berker Peksag added the comment: New changeset fe70d924bb6106d4c21eb414f4a1ba1324e8f46a by Berker Peksag in branch 'master': bpo-29121: Remove outdated documentation about transactions (#313) https://github.com/python/cpython/commit/fe70d924bb6106d4c21eb414f4a1ba1324e8f46a --

[issue24241] webbrowser default browser detection and/or public API for _trylist.

2017-03-24 Thread Nick Coghlan
Nick Coghlan added the comment: New changeset e3ce69522ffd7c0354d6e70d18f42bce325ed97e by Nick Coghlan (David Steele) in branch 'master': bpo-24241: Improve preferred webbrowser handling (#85) https://github.com/python/cpython/commit/e3ce69522ffd7c0354d6e70d18f42bce325ed97e --

[issue28929] Provide a link from documentation back to its source file

2017-03-24 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset e3bf4cdd3db9004220d3ec7f5db4e7d16a99c743 by Mariatta in branch 'master': bpo-28929: Add to Misc/NEWS (GH-112) https://github.com/python/cpython/commit/e3bf4cdd3db9004220d3ec7f5db4e7d16a99c743 -- ___

[issue28518] execute("begin immediate") throwing OperationalError

2017-03-24 Thread Berker Peksag
Berker Peksag added the comment: New changeset 76995cab69d5ef83d31d8a5754cbad11be4038cb by Berker Peksag in branch '3.6': bpo-28518: Start a transaction implicitly before a DML statement (#245) (#318) https://github.com/python/cpython/commit/76995cab69d5ef83d31d8a5754cbad11be4038cb

[issue29121] sqlite3 Controlling Transactions documentation not updated

2017-03-24 Thread Berker Peksag
Berker Peksag added the comment: New changeset fe70d924bb6106d4c21eb414f4a1ba1324e8f46a by Berker Peksag in branch 'master': bpo-29121: Remove outdated documentation about transactions (#313) https://github.com/python/cpython/commit/fe70d924bb6106d4c21eb414f4a1ba1324e8f46a --

[issue29648] Missed reference to create_module() in versionadded (import.rst)

2017-03-24 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 63ed9bc94d8df45b16aee9b92f658ebb34aa1012 by Mariatta in branch '3.5': bpo-29648: import.rst: Add reference to create_module() (GH-290) (GH-315) https://github.com/python/cpython/commit/63ed9bc94d8df45b16aee9b92f658ebb34aa1012 --

[issue16285] Update urllib quoting to RFC 3986

2017-03-24 Thread Nick Coghlan
Nick Coghlan added the comment: New changeset 21024f06622c4c55b666adb130797a4ee205d005 by Nick Coghlan (Ratnadeep Debnath) in branch 'master': bpo-16285: Update urllib quoting to RFC 3986 (#173) https://github.com/python/cpython/commit/21024f06622c4c55b666adb130797a4ee205d005 --

[issue24241] webbrowser default browser detection and/or public API for _trylist.

2017-03-24 Thread Nick Coghlan
Nick Coghlan added the comment: New changeset 56a8eccc43c66ae51c5a6bfc89635b1998fd419e by Nick Coghlan in branch 'master': bpo-24241: Add dedicated webbrowser.register test case (#288) https://github.com/python/cpython/commit/56a8eccc43c66ae51c5a6bfc89635b1998fd419e --

[issue29644] Importing webbrowser outputs a message on stderr

2017-03-24 Thread Nick Coghlan
Nick Coghlan added the comment: New changeset 140792bd514ee4ba739fda899785bea3ce746f05 by Nick Coghlan in branch 'master': bpo-29644: suppress subprocess output from webbrowser (#289) https://github.com/python/cpython/commit/140792bd514ee4ba739fda899785bea3ce746f05 --

[issue26128] Let the subprocess.STARTUPINFO constructor take arguments

2017-03-24 Thread Nick Coghlan
Nick Coghlan added the comment: New changeset ae160bba2030a7b6c86f6c7aeaf2f9d3fdb627b7 by Nick Coghlan (Subhendu Ghosh) in branch 'master': bpo-26128: Added __init__to subprocess.STARTUPINFO (#171) https://github.com/python/cpython/commit/ae160bba2030a7b6c86f6c7aeaf2f9d3fdb627b7 --

[issue22594] Add a link to the regex module in re documentation

2017-03-24 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset c8e20218d77c5b8c16fd76d45612ae48ca3fba91 by Mariatta in branch '2.7': bpo-22594: Add a link to the regex module in re documentation (GH-241) (GH-321) https://github.com/python/cpython/commit/c8e20218d77c5b8c16fd76d45612ae48ca3fba91 --

[issue29655] Certain errors during IMPORT_STAR can leak a reference

2017-03-24 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 160edb43571311a3785785c1dfa784afc52d87be by Serhiy Storchaka (Matthias Bussonnier) in branch 'master': bpo-29655: Fixed possible reference leaks in `import *`. (#301)

[issue28624] Make the `cwd` argument to `subprocess.Popen` accept a `PathLike`

2017-03-24 Thread Berker Peksag
Berker Peksag added the comment: New changeset 6b81003bdbd9375886bae54f876650bcdccfe6c7 by Berker Peksag in branch '3.6': bpo-28624: Add a test that checks that cwd parameter of Popen() accepts PathLike objects (#157) (#323)

[issue28961] unittest.mock._Call ignores `name` parameter

2017-03-24 Thread Berker Peksag
Berker Peksag added the comment: New changeset 5aa3856b4f325457e8ec1ccf669369f543e1f6b5 by Berker Peksag in branch 'master': bpo-28961: Address my comments from earlier code review (#305) https://github.com/python/cpython/commit/5aa3856b4f325457e8ec1ccf669369f543e1f6b5 --

[issue22594] Add a link to the regex module in re documentation

2017-03-24 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset ed6795e46f7653e23b862efad240a93453e7df97 by Mariatta (Marco Buttu) in branch 'master': bpo-22594: Add a link to the regex module in re documentation (GH-241) https://github.com/python/cpython/commit/ed6795e46f7653e23b862efad240a93453e7df97

[issue29648] Missed reference to create_module() in versionadded (import.rst)

2017-03-24 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 46ce7599af82a929506baeaaee5c149970440c4c by Mariatta (Marco Buttu) in branch 'master': bpo-29648: import.rst: Add reference to create_module() (GH-290) https://github.com/python/cpython/commit/46ce7599af82a929506baeaaee5c149970440c4c

[issue28961] unittest.mock._Call ignores `name` parameter

2017-03-24 Thread Berker Peksag
Berker Peksag added the comment: New changeset fae59e1aa87ee9598d032e0bd697969a5784025f by Berker Peksag in branch '3.6': bpo-28961: Address my comments from earlier code review (#306) https://github.com/python/cpython/commit/fae59e1aa87ee9598d032e0bd697969a5784025f --

[issue28518] execute("begin immediate") throwing OperationalError

2017-03-24 Thread Berker Peksag
Berker Peksag added the comment: New changeset 4a926caf8e5fd8af771b2c34bfb6e91c732331fe by Berker Peksag in branch 'master': bpo-28518: Start a transaction implicitly before a DML statement (#245) https://github.com/python/cpython/commit/4a926caf8e5fd8af771b2c34bfb6e91c732331fe --

[issue29648] Missed reference to create_module() in versionadded (import.rst)

2017-03-24 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 7333d1760e12cf27bcf63265f72521892285c10a by Mariatta in branch '3.6': bpo-29648: import.rst: Add reference to create_module() (GH-290) (GH-314) https://github.com/python/cpython/commit/7333d1760e12cf27bcf63265f72521892285c10a --

[issue26184] Add versionchanged note for error when create_module() is not defined by loaders

2017-03-24 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 6b4a5f45e2df524174a97832571c82c76a3d424a by Mariatta in branch 'master': bpo-26184: import.rst: Improve versionchanged note (GH-277) https://github.com/python/cpython/commit/6b4a5f45e2df524174a97832571c82c76a3d424a --

[issue22594] Add a link to the regex module in re documentation

2017-03-24 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 1457984c003b1e461f8aab93bfc37fd8e42312d5 by Mariatta in branch '3.6': bpo-22594: Add a link to the regex module in re documentation (GH-241) (GH-316) https://github.com/python/cpython/commit/1457984c003b1e461f8aab93bfc37fd8e42312d5 --

[issue22594] Add a link to the regex module in re documentation

2017-03-24 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 21c697fd1073d6ab59e2ba82ea80bc81b9c4125c by Mariatta in branch '3.5': bpo-22594: Add a link to the regex module in re documentation (GH-241) (GH-317) https://github.com/python/cpython/commit/21c697fd1073d6ab59e2ba82ea80bc81b9c4125c --

[issue26184] Add versionchanged note for error when create_module() is not defined by loaders

2017-03-24 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset deea29e61e61f0e216bff3f0ca008f5ee231793f by Mariatta in branch '3.6': bpo-26184: import.rst: Improve versionchanged note (GH-277) (#320) https://github.com/python/cpython/commit/deea29e61e61f0e216bff3f0ca008f5ee231793f --

[issue29121] sqlite3 Controlling Transactions documentation not updated

2017-03-24 Thread Berker Peksag
Berker Peksag added the comment: New changeset 893e86e9d3c0caeb878ccb1120c7259e022f3b68 by Berker Peksag in branch '3.6': bpo-29121: Remove outdated documentation about transactions (#313) (#319) https://github.com/python/cpython/commit/893e86e9d3c0caeb878ccb1120c7259e022f3b68 --

[issue29110] [patch] Fix file object leak in `aifc.open` when given invalid AIFF file.

2017-03-24 Thread INADA Naoki
INADA Naoki added the comment: New changeset b7fb1e25c89a9eb85b95027f4167bc0977687c43 by INADA Naoki in branch '3.5': bpo-29110: Fix file object leak in `aifc.open` (GH-311) https://github.com/python/cpython/commit/b7fb1e25c89a9eb85b95027f4167bc0977687c43 --

[issue29110] [patch] Fix file object leak in `aifc.open` when given invalid AIFF file.

2017-03-24 Thread INADA Naoki
INADA Naoki added the comment: New changeset c9131b61fa060a51ec181053cade9f0a7ee91e4f by INADA Naoki in branch '3.6': [3.6] bpo-29110: Fix file object leak in `aifc.open` (#310) https://github.com/python/cpython/commit/c9131b61fa060a51ec181053cade9f0a7ee91e4f --

[issue28624] Make the `cwd` argument to `subprocess.Popen` accept a `PathLike`

2017-03-24 Thread Berker Peksag
Berker Peksag added the comment: New changeset d5c11f7ace48701bb950c6345deee88c35c66e26 by Berker Peksag (Sayan Chowdhury) in branch 'master': bpo-28624: Add a test that checks that cwd parameter of Popen() accepts PathLike objects (#157)

  1   2   3   4   5   >