From: Rafael Fontenelle Date: Fri, 19 Apr 2024 03:28:12 +0000 (-0300) Subject: Use "Contributed by" in a couple of occurrences of 3.12 whatsnew (#118070) X-Git-Tag: v3.13.0b1~348 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=398abdd6fa5b6b15c0570c75321cd7df9573a5b7;p=thirdparty%2FPython%2Fcpython.git Use "Contributed by" in a couple of occurrences of 3.12 whatsnew (#118070) --- diff --git a/Doc/whatsnew/3.12.rst b/Doc/whatsnew/3.12.rst index f2ef4efcb378..ce3d9ec6a29d 100644 --- a/Doc/whatsnew/3.12.rst +++ b/Doc/whatsnew/3.12.rst @@ -726,7 +726,7 @@ inspect * Add :func:`inspect.markcoroutinefunction` to mark sync functions that return a :term:`coroutine` for use with :func:`inspect.iscoroutinefunction`. - (Contributed Carlton Gibson in :gh:`99247`.) + (Contributed by Carlton Gibson in :gh:`99247`.) * Add :func:`inspect.getasyncgenstate` and :func:`inspect.getasyncgenlocals` for determining the current state of asynchronous generators. @@ -751,8 +751,8 @@ math (Contributed by Raymond Hettinger in :gh:`100485`.) * Extend :func:`math.nextafter` to include a *steps* argument - for moving up or down multiple steps at a time. - (By Matthias Goergens, Mark Dickinson, and Raymond Hettinger in :gh:`94906`.) + for moving up or down multiple steps at a time. (Contributed by + Matthias Goergens, Mark Dickinson, and Raymond Hettinger in :gh:`94906`.) os --