diff options
author | Rafael Fontenelle <rffontenelle@users.noreply.github.com> | 2024-04-19 03:28:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-19 03:28:12 (GMT) |
commit | 398abdd6fa5b6b15c0570c75321cd7df9573a5b7 (patch) | |
tree | ccdf8561411c233d4e8cf9fa17c1908e5eb7f783 | |
parent | 710c01be94ca7b2c96407f41f0e37e24701008b4 (diff) | |
download | cpython-398abdd6fa5b6b15c0570c75321cd7df9573a5b7.zip cpython-398abdd6fa5b6b15c0570c75321cd7df9573a5b7.tar.gz cpython-398abdd6fa5b6b15c0570c75321cd7df9573a5b7.tar.bz2 |
Use "Contributed by" in a couple of occurrences of 3.12 whatsnew (#118070)
-rw-r--r-- | Doc/whatsnew/3.12.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/whatsnew/3.12.rst b/Doc/whatsnew/3.12.rst index f2ef4ef..ce3d9ec 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 -- |