[Python-checkins] [python/cpython] 11ffb4: Make codecov config on master the only config used...
GitHub
noreply at github.com
Sun Jun 11 03:34:21 EDT 2017
Branch: refs/heads/bpo-30508
Home: https://github.com/python/cpython
Commit: 11ffb4543bc000dea527bcc0417e2f8bda13790f
https://github.com/python/cpython/commit/11ffb4543bc000dea527bcc0417e2f8bda13790f
Author: Brett Cannon <brettcannon at users.noreply.github.com>
Date: 2017年06月09日 (2017年6月09日)
Changed paths:
M .github/codecov.yml
Log Message:
-----------
Make codecov config on master the only config used (GH-2041)
This will allow for centralized management of the Codecov config to prevent skew as well as easier management going forward.
Closes python/core-workflow#81.
Commit: 42e3acda86829def9adc354fbee77597b849bf9e
https://github.com/python/cpython/commit/42e3acda86829def9adc354fbee77597b849bf9e
Author: Zachary Ware <zachary.ware at gmail.com>
Date: 2017年06月09日 (2017年6月09日)
Changed paths:
M .github/appveyor.yml
Log Message:
-----------
bpo-30417: Disable `cpu` resource on AppVeyor (GH-1951)
Commit: 34792d25ab7329241ea24595286d65d54c266274
https://github.com/python/cpython/commit/34792d25ab7329241ea24595286d65d54c266274
Author: Jim Fasarakis-Hilliard <d.f.hilliard at gmail.com>
Date: 2017年06月09日 (2017年6月09日)
Changed paths:
M Lib/asyncio/proactor_events.py
Log Message:
-----------
Fix TypeError is asyncio/proactor_events (#993)
Commit: a608d2d5a7f1aabe9bcbfc220135c5e126189390
https://github.com/python/cpython/commit/a608d2d5a7f1aabe9bcbfc220135c5e126189390
Author: Nikolay Kim <fafhrd91 at gmail.com>
Date: 2017年06月10日 (2017年6月10日)
Changed paths:
M Lib/asyncio/sslproto.py
M Lib/test/test_asyncio/test_sslproto.py
M Misc/NEWS
Log Message:
-----------
bpo-29406: asyncio SSL contexts leak sockets after calling close with certain servers (#409)
* asyncio SSL contexts leak sockets after calling close with certain servers
* cleanup _shutdown_timeout_handle on _fatal_error
Commit: e5f6e86c48c7b2eb9e1d6a0e72867b4d8b4720f3
https://github.com/python/cpython/commit/e5f6e86c48c7b2eb9e1d6a0e72867b4d8b4720f3
Author: csabella <cheryl.sabella at gmail.com>
Date: 2017年06月09日 (2017年6月09日)
Changed paths:
M Doc/library/fnmatch.rst
Log Message:
-----------
bpo-25409: Clarify fnmatch and fnmatchcase documentation (GH-1535)
Mention that fnmatchcase does not call normcase, and fnmatch does.
Commit: 7445381c606faf20e253da42656db478a4349f8e
https://github.com/python/cpython/commit/7445381c606faf20e253da42656db478a4349f8e
Author: Sylvain <sylvain.desodt+github at gmail.com>
Date: 2017年06月10日 (2017年6月10日)
Changed paths:
M Lib/test/test_call.py
M Modules/_io/clinic/bufferedio.c.h
M Modules/_io/clinic/bytesio.c.h
M Modules/_io/clinic/fileio.c.h
M Modules/_io/clinic/iobase.c.h
M Modules/_io/clinic/stringio.c.h
M Modules/_io/clinic/textio.c.h
M Modules/_io/clinic/winconsoleio.c.h
M Modules/cjkcodecs/clinic/multibytecodec.c.h
M Modules/clinic/_codecsmodule.c.h
M Modules/clinic/_cryptmodule.c.h
M Modules/clinic/_dbmmodule.c.h
M Modules/clinic/_elementtree.c.h
M Modules/clinic/_gdbmmodule.c.h
M Modules/clinic/_lzmamodule.c.h
M Modules/clinic/_opcode.c.h
M Modules/clinic/_operator.c.h
M Modules/clinic/_pickle.c.h
M Modules/clinic/_sre.c.h
M Modules/clinic/_ssl.c.h
M Modules/clinic/_struct.c.h
M Modules/clinic/_tkinter.c.h
M Modules/clinic/_tracemalloc.c.h
M Modules/clinic/_weakref.c.h
M Modules/clinic/_winapi.c.h
M Modules/clinic/arraymodule.c.h
M Modules/clinic/audioop.c.h
M Modules/clinic/binascii.c.h
M Modules/clinic/cmathmodule.c.h
M Modules/clinic/fcntlmodule.c.h
M Modules/clinic/mathmodule.c.h
M Modules/clinic/posixmodule.c.h
M Modules/clinic/pyexpat.c.h
M Modules/clinic/resource.c.h
M Modules/clinic/signalmodule.c.h
M Modules/clinic/symtablemodule.c.h
M Modules/clinic/unicodedata.c.h
M Modules/clinic/zlibmodule.c.h
M Objects/clinic/bytearrayobject.c.h
M Objects/clinic/bytesobject.c.h
M Objects/clinic/dictobject.c.h
M Objects/clinic/floatobject.c.h
M Objects/clinic/listobject.c.h
M Objects/clinic/tupleobject.c.h
M Objects/clinic/unicodeobject.c.h
M PC/clinic/msvcrtmodule.c.h
M PC/clinic/winreg.c.h
M Python/clinic/bltinmodule.c.h
M Python/clinic/import.c.h
M Python/clinic/marshal.c.h
M Tools/clinic/clinic.py
Log Message:
-----------
bpo-30600: Fix error messages (condition order in Argument Clinic) (#2051)
The function '_PyArg_ParseStack()' and
'_PyArg_UnpackStack' were failing (with error
"XXX() takes Y argument (Z given)") before
the function '_PyArg_NoStackKeywords()' was called.
Thus, the latter did not raise its more meaningful
error : "XXX() takes no keyword arguments".
Commit: 171b9a354e816eebc6d4c3a8553303942e9c5025
https://github.com/python/cpython/commit/171b9a354e816eebc6d4c3a8553303942e9c5025
Author: Roy Williams <roy.williams.iii at gmail.com>
Date: 2017年06月10日 (2017年6月10日)
Changed paths:
M Lib/sre_parse.py
M Lib/test/test_re.py
M Misc/ACKS
M Misc/NEWS
Log Message:
-----------
bpo-30605: Fix compiling binary regexs with BytesWarnings enabled. (#2016)
Running our unit tests with `-bb` enabled triggered this failure.
Commit: 5f31d5cf6efa8c304d352e34f9f2a1ed0074298e
https://github.com/python/cpython/commit/5f31d5cf6efa8c304d352e34f9f2a1ed0074298e
Author: Serhiy Storchaka <storchaka at gmail.com>
Date: 2017年06月10日 (2017年6月10日)
Changed paths:
M Modules/_ssl.c
M Modules/clinic/_ssl.c.h
Log Message:
-----------
Regenerate Argument Clinic code for bpo-19180. (#2073)
Commit: 1b7863c3b6519c6e134c28cab8b8af0dea43e375
https://github.com/python/cpython/commit/1b7863c3b6519c6e134c28cab8b8af0dea43e375
Author: Victor Stinner <victor.stinner at gmail.com>
Date: 2017年06月10日 (2017年6月10日)
Changed paths:
M Lib/multiprocessing/queues.py
M Misc/NEWS
Log Message:
-----------
bpo-30595: Fix multiprocessing.Queue.get(timeout) (#2027)
multiprocessing.Queue.get() with a timeout now polls its reader in
non-blocking mode if it succeeded to aquire the lock but the acquire
took longer than the timeout.
Co-Authored-By: Grzegorz Grzywacz <grzgrzgrz3 at gmail.com>
Commit: c5179f6e2dfcc01cf0b977b184f5b8f8ac98fab1
https://github.com/python/cpython/commit/c5179f6e2dfcc01cf0b977b184f5b8f8ac98fab1
Author: Victor Stinner <victor.stinner at gmail.com>
Date: 2017年06月10日 (2017年6月10日)
Changed paths:
M Lib/test/test_threaded_import.py
Log Message:
-----------
bpo-30599: Fix test_threaded_import reference leak (#2029)
Mock os.register_at_fork() when importing the random module, since
this function doesn't allow to unregister callbacks and so leaked
memory.
Commit: ca816153445cba3baec15f7e890c71abfe495340
https://github.com/python/cpython/commit/ca816153445cba3baec15f7e890c71abfe495340
Author: KatherineMichel <kthrnmichel at gmail.com>
Date: 2017年06月10日 (2017年6月10日)
Changed paths:
M Doc/tutorial/datastructures.rst
Log Message:
-----------
bpo-30312: Small correction in datastructures set code sample (GH-2081)
Commit: 29fda8db16e0edab92841277fa223f844f5a92cc
https://github.com/python/cpython/commit/29fda8db16e0edab92841277fa223f844f5a92cc
Author: Ivan Levkivskyi <levkivskyi at gmail.com>
Date: 2017年06月10日 (2017年6月10日)
Changed paths:
M Lib/test/test_typing.py
M Lib/typing.py
M Misc/NEWS
Log Message:
-----------
bpo-28556: Updates to typing module (#2076)
This PR contains two updates to typing module:
- Support ContextManager on all versions (original PR by Jelle Zijlstra).
- Add generic AsyncContextManager.
Commit: 6b6e68776663c0dda04b6a36609297728da2ae9e
https://github.com/python/cpython/commit/6b6e68776663c0dda04b6a36609297728da2ae9e
Author: Zachary Ware <zachary.ware at gmail.com>
Date: 2017年06月10日 (2017年6月10日)
Changed paths:
M .gitattributes
M Lib/venv/scripts/nt/Activate.ps1
M Lib/venv/scripts/nt/activate.bat
M Lib/venv/scripts/nt/deactivate.bat
M Modules/_decimal/tests/runall.bat
M PC/bdist_wininst/build.bat
M PCbuild/build.bat
M PCbuild/build_env.bat
M PCbuild/clean.bat
M PCbuild/env.bat
M PCbuild/get_externals.bat
M PCbuild/idle.bat
M PCbuild/pcbuild.sln
M PCbuild/prepare_ssl.bat
M PCbuild/readme.txt
M PCbuild/rt.bat
M Tools/buildbot/build.bat
M Tools/buildbot/buildmsi.bat
M Tools/buildbot/clean.bat
M Tools/buildbot/test.bat
M Tools/msi/build.bat
M Tools/msi/buildrelease.bat
M Tools/msi/get_externals.bat
M Tools/msi/testrelease.bat
M Tools/msi/uploadrelease.bat
M Tools/nuget/build.bat
M Tools/unicode/genwincodecs.bat
Log Message:
-----------
bpo-27425: Be more explicit in .gitattributes (GH-840)
Updates checked-in line endings on several files.
Commit: 05dc20f992754c4ed2b1601026263e1f309cead9
https://github.com/python/cpython/commit/05dc20f992754c4ed2b1601026263e1f309cead9
Author: Giampaolo Rodola <g.rodola at gmail.com>
Date: 2017年06月10日 (2017年6月10日)
Changed paths:
M Lib/selectors.py
M Misc/NEWS
Log Message:
-----------
#30624 / selectors: use bare except clause in order to not leave the fd in a bad state in case of error (#2082)
Commit: c94c41ce739a38b2b502d33d4ea31ffd2188d83f
https://github.com/python/cpython/commit/c94c41ce739a38b2b502d33d4ea31ffd2188d83f
Author: terryjreedy <tjreedy at udel.edu>
Date: 2017年06月10日 (2017年6月10日)
Changed paths:
M Misc/NEWS
Log Message:
-----------
Add IDLE NEWS items for 3.7 (#2090)
Commit: 503bc6363d6486c693248417a26f8c11919c6782
https://github.com/python/cpython/commit/503bc6363d6486c693248417a26f8c11919c6782
Author: terryjreedy <tjreedy at udel.edu>
Date: 2017年06月10日 (2017年6月10日)
Changed paths:
M Lib/idlelib/NEWS.txt
Log Message:
-----------
Update idlelib NEWS for 3.7 (#2089)
Commit: 0afbabe245e2eb6f7cef3b70531d69f2a7ad8295
https://github.com/python/cpython/commit/0afbabe245e2eb6f7cef3b70531d69f2a7ad8295
Author: Zachary Ware <zachary.ware at gmail.com>
Date: 2017年06月10日 (2017年6月10日)
Changed paths:
M .travis.yml
Log Message:
-----------
Use Travis to make sure all generated files are up to date (GH-2080)
Commit: 6ea4186de32d65b1f1dc1533b6312b798d300466
https://github.com/python/cpython/commit/6ea4186de32d65b1f1dc1533b6312b798d300466
Author: Nick Coghlan <ncoghlan at gmail.com>
Date: 2017年06月11日 (2017年6月11日)
Changed paths:
M Doc/using/cmdline.rst
M Doc/whatsnew/3.7.rst
M Lib/test/support/script_helper.py
A Lib/test/test_c_locale_coercion.py
M Lib/test/test_capi.py
M Lib/test/test_cmd_line.py
M Lib/test/test_subprocess.py
M Lib/test/test_sys.py
M Misc/NEWS
M Programs/python.c
M Python/pylifecycle.c
M configure
M configure.ac
M pyconfig.h.in
Log Message:
-----------
bpo-28180: Implementation for PEP 538 (#659)
- new PYTHONCOERCECLOCALE config setting
- coerces legacy C locale to C.UTF-8, C.utf8 or UTF-8 by default
- always uses C.UTF-8 on Android
- uses `surrogateescape` on stdin and stdout in the coercion
target locales
- configure option to disable locale coercion at build time
- configure option to disable C locale warning at build time
Commit: 3f8f16d102c985cba827bb52b1d1bb714325d5a4
https://github.com/python/cpython/commit/3f8f16d102c985cba827bb52b1d1bb714325d5a4
Author: Zachary Ware <zachary.ware at gmail.com>
Date: 2017年06月10日 (2017年6月10日)
Changed paths:
M .travis.yml
M Doc/make.bat
M Lib/ctypes/macholib/fetch_macholib.bat
M Lib/idlelib/idle.bat
Log Message:
-----------
Show what's changed when Travis fails regen check (GH-2095)
Also fixed a few more line endings that were missed in GH-840, which were causing failure.
Commit: dc1da9adc37abe30e97a0c2ea5331aeef7e062bc
https://github.com/python/cpython/commit/dc1da9adc37abe30e97a0c2ea5331aeef7e062bc
Author: Benjamin Peterson <benjamin at python.org>
Date: 2017年06月11日 (2017年6月11日)
Changed paths:
M Doc/library/ssl.rst
Log Message:
-----------
clarify recv() and send() on SSLObject (#2100)
SSLObject has recv() and send(), but they don't do any network io.
Commit: fdfca5f0ffa831a3365cbabf9ed8fd05e9c4da49
https://github.com/python/cpython/commit/fdfca5f0ffa831a3365cbabf9ed8fd05e9c4da49
Author: Benjamin Peterson <benjamin at python.org>
Date: 2017年06月11日 (2017年6月11日)
Changed paths:
M Doc/library/ssl.rst
Log Message:
-----------
remove extra word (#2101)
Commit: 18a2260d216086bab14d05506024f1866876784c
https://github.com/python/cpython/commit/18a2260d216086bab14d05506024f1866876784c
Author: Yury Selivanov <yury at magic.io>
Date: 2017年06月11日 (2017年6月11日)
Changed paths:
M .gitattributes
M .github/appveyor.yml
M .github/codecov.yml
M .travis.yml
M Doc/library/fnmatch.rst
M Doc/library/ssl.rst
M Doc/make.bat
M Doc/tutorial/datastructures.rst
M Doc/using/cmdline.rst
M Doc/whatsnew/3.7.rst
M Lib/asyncio/proactor_events.py
M Lib/asyncio/sslproto.py
M Lib/ctypes/macholib/fetch_macholib.bat
M Lib/idlelib/NEWS.txt
M Lib/idlelib/idle.bat
M Lib/multiprocessing/queues.py
M Lib/selectors.py
M Lib/sre_parse.py
M Lib/test/support/script_helper.py
M Lib/test/test_asyncio/test_sslproto.py
A Lib/test/test_c_locale_coercion.py
M Lib/test/test_call.py
M Lib/test/test_capi.py
M Lib/test/test_cmd_line.py
M Lib/test/test_re.py
M Lib/test/test_subprocess.py
M Lib/test/test_sys.py
M Lib/test/test_threaded_import.py
M Lib/test/test_typing.py
M Lib/typing.py
M Lib/venv/scripts/nt/Activate.ps1
M Lib/venv/scripts/nt/activate.bat
M Lib/venv/scripts/nt/deactivate.bat
M Misc/ACKS
M Misc/NEWS
M Modules/_decimal/tests/runall.bat
M Modules/_io/clinic/bufferedio.c.h
M Modules/_io/clinic/bytesio.c.h
M Modules/_io/clinic/fileio.c.h
M Modules/_io/clinic/iobase.c.h
M Modules/_io/clinic/stringio.c.h
M Modules/_io/clinic/textio.c.h
M Modules/_io/clinic/winconsoleio.c.h
M Modules/_ssl.c
M Modules/cjkcodecs/clinic/multibytecodec.c.h
M Modules/clinic/_codecsmodule.c.h
M Modules/clinic/_cryptmodule.c.h
M Modules/clinic/_dbmmodule.c.h
M Modules/clinic/_elementtree.c.h
M Modules/clinic/_gdbmmodule.c.h
M Modules/clinic/_lzmamodule.c.h
M Modules/clinic/_opcode.c.h
M Modules/clinic/_operator.c.h
M Modules/clinic/_pickle.c.h
M Modules/clinic/_sre.c.h
M Modules/clinic/_ssl.c.h
M Modules/clinic/_struct.c.h
M Modules/clinic/_tkinter.c.h
M Modules/clinic/_tracemalloc.c.h
M Modules/clinic/_weakref.c.h
M Modules/clinic/_winapi.c.h
M Modules/clinic/arraymodule.c.h
M Modules/clinic/audioop.c.h
M Modules/clinic/binascii.c.h
M Modules/clinic/cmathmodule.c.h
M Modules/clinic/fcntlmodule.c.h
M Modules/clinic/mathmodule.c.h
M Modules/clinic/posixmodule.c.h
M Modules/clinic/pyexpat.c.h
M Modules/clinic/resource.c.h
M Modules/clinic/signalmodule.c.h
M Modules/clinic/symtablemodule.c.h
M Modules/clinic/unicodedata.c.h
M Modules/clinic/zlibmodule.c.h
M Objects/clinic/bytearrayobject.c.h
M Objects/clinic/bytesobject.c.h
M Objects/clinic/dictobject.c.h
M Objects/clinic/floatobject.c.h
M Objects/clinic/listobject.c.h
M Objects/clinic/tupleobject.c.h
M Objects/clinic/unicodeobject.c.h
M PC/bdist_wininst/build.bat
M PC/clinic/msvcrtmodule.c.h
M PC/clinic/winreg.c.h
M PCbuild/build.bat
M PCbuild/build_env.bat
M PCbuild/clean.bat
M PCbuild/env.bat
M PCbuild/get_externals.bat
M PCbuild/idle.bat
M PCbuild/pcbuild.sln
M PCbuild/prepare_ssl.bat
M PCbuild/readme.txt
M PCbuild/rt.bat
M Programs/python.c
M Python/clinic/bltinmodule.c.h
M Python/clinic/import.c.h
M Python/clinic/marshal.c.h
M Python/pylifecycle.c
M Tools/buildbot/build.bat
M Tools/buildbot/buildmsi.bat
M Tools/buildbot/clean.bat
M Tools/buildbot/test.bat
M Tools/clinic/clinic.py
M Tools/msi/build.bat
M Tools/msi/buildrelease.bat
M Tools/msi/get_externals.bat
M Tools/msi/testrelease.bat
M Tools/msi/uploadrelease.bat
M Tools/nuget/build.bat
M Tools/unicode/genwincodecs.bat
M configure
M configure.ac
M pyconfig.h.in
Log Message:
-----------
Merge branch 'master' into bpo-30508
Compare: https://github.com/python/cpython/compare/b52a0e02d5f4...18a2260d2160
More information about the Python-checkins
mailing list