From 646ea887747f1d57a69dbc758df901668413ef6a Mon Sep 17 00:00:00 2001 From: Jero Bado Date: Mon, 14 Oct 2019 18:55:39 +0800 Subject: [PATCH] Fix minor typos in What's New in Python 3.8. Added periods at the end of the sentences. --- Doc/whatsnew/3.8.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst index 0c59ef8015a586..44c9996180ec63 100644 --- a/Doc/whatsnew/3.8.rst +++ b/Doc/whatsnew/3.8.rst @@ -759,7 +759,7 @@ numbers:: >>> math.prod(likelihoods, start=prior) 0.126 -(Contributed by Pablo Galindo in :issue:`35606`) +(Contributed by Pablo Galindo in :issue:`35606`.) Added new function :func:`math.isqrt` for computing integer square roots. (Contributed by Mark Dickinson in :issue:`36887`.) @@ -859,12 +859,12 @@ pickle Reduction methods can now include a 6th item in the tuple they return. This item should specify a custom state-setting method that's called instead of the regular ``__setstate__`` method. -(Contributed by Pierre Glaser and Olivier Grisel in :issue:`35900`) +(Contributed by Pierre Glaser and Olivier Grisel in :issue:`35900`.) :mod:`pickle` extensions subclassing the C-optimized :class:`~pickle.Pickler` can now override the pickling logic of functions and classes by defining the special :meth:`~pickle.Pickler.reducer_override` method. -(Contributed by Pierre Glaser and Olivier Grisel in :issue:`35900`) +(Contributed by Pierre Glaser and Olivier Grisel in :issue:`35900`.) plistlib @@ -1217,7 +1217,7 @@ Optimizations * Removed one ``Py_ssize_t`` member from ``PyGC_Head``. All GC tracked objects (e.g. tuple, list, dict) size is reduced 4 or 8 bytes. - (Contributed by Inada Naoki in :issue:`33597`) + (Contributed by Inada Naoki in :issue:`33597`.) * :class:`uuid.UUID` now uses ``__slots__`` to reduce its memory footprint.