[Python-checkins] Fwd: Python-checkins post from webhook-mailer at python.org requires approval

Terry Reedy tjreedy at udel.edu
Sun Jun 9 11:55:54 EDT 2019


Some years ago I was added to python-checkins as a moderator, but not a 
full list owner, to occasionally discard the very occasional spam.  I 
don't know who the real list owner is, if anyone.

Recently, checkins from Łukasz Langa are being held.  I have no idea 
why, or what implicit destination means.

Whoever understands this part of the infrastructure and know how to fix 
this should do do. I will not continue to approve these on anything like 
a timely basis.

This list should have a knowledgable list owner who pays attention to 
proper checkins improperly held for moderation.

---------------------------------------------------------------------
As list administrator, your authorization is requested for the
following mailing list posting:

     List:    Python-checkins at python.org
     From:    webhook-mailer at python.org
     Subject: (no subject)
     Reason:  Message has implicit destination

At your convenience, visit:

     https://mail.python.org/mailman/admindb/python-checkins

to approve or deny the request.
-----------------------------------------------------------------------------

ForwardedMessage.eml
From:
Łukasz Langa <webhook-mailer at python.org>

To: python-checkins at python.org
Subject: Add some placeholder notes for major 3.8 features (GH-13927)
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: quoted-printable
MIME-Version: 1.0

https://github.com/python/cpython/commit/b9438ceb20635b00f10615c5b6d8dbe56e1d=
486b
commit: b9438ceb20635b00f10615c5b6d8dbe56e1d486b
branch: master
author: Nick Coghlan <ncoghlan at gmail.com>
committer: =C5=81ukasz Langa <lukasz at langa.pl>
date: 2019-06-09T11:07:42+02:00
summary:

Add some placeholder notes for major 3.8 features (GH-13927)

files:
M Doc/whatsnew/3.8.rst

diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst
index bf75387d9517..99bb793830bc 100644
--- a/Doc/whatsnew/3.8.rst
+++ b/Doc/whatsnew/3.8.rst
@@ -52,6 +52,13 @@ For full details, see the :ref:`changelog <changelog>`.
     form. It will be updated substantially as Python 3.8 moves towards 
releas=
e,
     so it's worth checking back even after reading earlier versions.
=20
+   Some notable items not yet covered here:
+
+   * :pep:`574` - Pickle protocol 5 with out-of-band data buffer support
+   * :pep:`578` - Runtime audit hooks for potentially sensitive operations
+   * ``python -m asyncio`` runs a natively async REPL
+   * ...
+
=20
  Summary -- Release highlights
 
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D
-------------------------------------------------------------------------
ForwardedMessage.eml
From:
Łukasz Langa <webhook-mailer at python.org>

To: python-checkins at python.org
Subject: bpo-36785: PEP 574 What's New entry (#13931)
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: quoted-printable
MIME-Version: 1.0

https://github.com/python/cpython/commit/c879ff247ae1b67a790ff98d2d59145302cd=
4e4e
commit: c879ff247ae1b67a790ff98d2d59145302cd4e4e
branch: master
author: Antoine Pitrou <antoine at python.org>
committer: =C5=81ukasz Langa <lukasz at langa.pl>
date: 2019-06-09T14:47:15+02:00
summary:

bpo-36785: PEP 574 What's New entry (#13931)

files:
M Doc/whatsnew/3.8.rst

diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst
index 99bb793830bc..e2f9ce8dd6e5 100644
--- a/Doc/whatsnew/3.8.rst
+++ b/Doc/whatsnew/3.8.rst
@@ -54,7 +54,6 @@ For full details, see the :ref:`changelog <changelog>`.
=20
     Some notable items not yet covered here:
=20
-   * :pep:`574` - Pickle protocol 5 with out-of-band data buffer support
     * :pep:`578` - Runtime audit hooks for potentially sensitive operations
     * ``python -m asyncio`` runs a natively async REPL
     * ...
@@ -261,6 +260,23 @@ See :pep:`590` for a full description.
  (Contributed by Jeroen Demeyer and Mark Shannon in :issue:`36974`.)
=20
=20
+Pickle protocol 5 with out-of-band data buffers
+-----------------------------------------------
+
+When :mod:`pickle` is used to transfer large data between Python processes
+in order to take advantage of multi-core or multi-machine processing,
+it is important to optimize the transfer by reducing memory copies, and
+possibly by applying custom techniques such as data-dependent compression.
+
+The :mod:`pickle` protocol 5 introduces support for out-of-band buffers
+where :pep:`3118`-compatible data can be transmitted separately from the
+main pickle stream, at the discretion of the communication layer.
+
+See :pep:`574` for a full description.
+
+(Contributed by Antoine Pitrou in :issue:`36785`.)
+
+
  Other Language Changes
  =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
=20





More information about the Python-checkins mailing list