Skip to content

Commit 722660b

Browse files
authored
[3.12] Docs: Update Donghee Na's name (GH-109743) (#109758)
* Update Donghee Na's name in Docs/ * Update Donghee Na's name in Misc/ACKS * Update Donghee Na's name in Misc/NEWS.d/
1 parent 633bd6e commit 722660b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+142
-142
lines changed

Doc/whatsnew/3.10.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -878,7 +878,7 @@ Other Language Changes
878878
(Contributed by Raymond Hettinger in :issue:`43475`.)
879879
880880
* A :exc:`SyntaxError` (instead of a :exc:`NameError`) will be raised when deleting
881-
the :const:`__debug__` constant. (Contributed by Dong-hee Na in :issue:`45000`.)
881+
the :const:`__debug__` constant. (Contributed by Donghee Na in :issue:`45000`.)
882882
883883
* :exc:`SyntaxError` exceptions now have ``end_lineno`` and
884884
``end_offset`` attributes. They will be ``None`` if not determined.
@@ -1255,7 +1255,7 @@ pipe. (Contributed by Pablo Galindo in :issue:`41625`.)
12551255
12561256
Add :const:`~os.O_EVTONLY`, :const:`~os.O_FSYNC`, :const:`~os.O_SYMLINK`
12571257
and :const:`~os.O_NOFOLLOW_ANY` for macOS.
1258-
(Contributed by Dong-hee Na in :issue:`43106`.)
1258+
(Contributed by Donghee Na in :issue:`43106`.)
12591259
12601260
os.path
12611261
-------
@@ -1582,7 +1582,7 @@ Optimizations
15821582
15831583
* The following built-in functions now support the faster :pep:`590` vectorcall calling convention:
15841584
:func:`map`, :func:`filter`, :func:`reversed`, :func:`bool` and :func:`float`.
1585-
(Contributed by Dong-hee Na and Jeroen Demeyer in :issue:`43575`, :issue:`43287`, :issue:`41922`, :issue:`41873` and :issue:`41870`.)
1585+
(Contributed by Donghee Na and Jeroen Demeyer in :issue:`43575`, :issue:`43287`, :issue:`41922`, :issue:`41873` and :issue:`41870`.)
15861586
15871587
* :class:`BZ2File` performance is improved by removing internal ``RLock``.
15881588
This makes :class:`BZ2File` thread unsafe in the face of multiple simultaneous
@@ -1817,7 +1817,7 @@ Removed
18171817
scheduled to be removed in Python 3.6, but such removals were delayed until
18181818
after Python 2.7 EOL. Existing users should copy whatever classes they use
18191819
into their code.
1820-
(Contributed by Dong-hee Na and Terry J. Reedy in :issue:`42299`.)
1820+
(Contributed by Donghee Na and Terry J. Reedy in :issue:`42299`.)
18211821
18221822
* Removed the :c:func:`!PyModule_GetWarningsModule` function that was useless
18231823
now due to the :mod:`!_warnings` module was converted to a builtin module in 2.6.

Doc/whatsnew/3.11.rst

+9-9
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ Other CPython Implementation Changes
499499
* The special methods :meth:`~object.__complex__` for :class:`complex`
500500
and :meth:`~object.__bytes__` for :class:`bytes` are implemented to support
501501
the :class:`typing.SupportsComplex` and :class:`typing.SupportsBytes` protocols.
502-
(Contributed by Mark Dickinson and Dong-hee Na in :issue:`24234`.)
502+
(Contributed by Mark Dickinson and Donghee Na in :issue:`24234`.)
503503

504504
* ``siphash13`` is added as a new internal hashing algorithm.
505505
It has similar security properties as ``siphash24``,
@@ -897,7 +897,7 @@ os
897897

898898
* On Windows, :func:`os.urandom` now uses ``BCryptGenRandom()``,
899899
instead of ``CryptGenRandom()`` which is deprecated.
900-
(Contributed by Dong-hee Na in :issue:`44611`.)
900+
(Contributed by Donghee Na in :issue:`44611`.)
901901

902902

903903
.. _whatsnew311-pathlib:
@@ -1089,7 +1089,7 @@ time
10891089
<https://docs.microsoft.com/en-us/windows-hardware/drivers/kernel/high-resolution-timers>`_
10901090
which has a resolution of 100 nanoseconds (10\ :sup:`-7` seconds). Previously,
10911091
it had a resolution of 1 millisecond (10\ :sup:`-3` seconds).
1092-
(Contributed by Benjamin Szőke, Dong-hee Na, Eryk Sun and Victor Stinner in :issue:`21302` and :issue:`45429`.)
1092+
(Contributed by Benjamin Szőke, Donghee Na, Eryk Sun and Victor Stinner in :issue:`21302` and :issue:`45429`.)
10931093

10941094

10951095
.. _whatsnew311-tkinter:
@@ -1305,7 +1305,7 @@ This section covers specific optimizations independent of the
13051305

13061306
* :func:`unicodedata.normalize`
13071307
now normalizes pure-ASCII strings in constant time.
1308-
(Contributed by Dong-hee Na in :issue:`44987`.)
1308+
(Contributed by Donghee Na in :issue:`44987`.)
13091309

13101310

13111311
.. _whatsnew311-faster-cpython:
@@ -1452,7 +1452,7 @@ Bucher, with additional help from Irit Katriel and Dennis Sweeney.)
14521452
| | | | (up to) | |
14531453
+===============+====================+=======================================================+===================+===================+
14541454
| Binary | ``x + x`` | Binary add, multiply and subtract for common types | 10% | Mark Shannon, |
1455-
| operations | | such as :class:`int`, :class:`float` and :class:`str` | | Dong-hee Na, |
1455+
| operations | | such as :class:`int`, :class:`float` and :class:`str` | | Donghee Na, |
14561456
| | ``x - x`` | take custom fast paths for their underlying types. | | Brandt Bucher, |
14571457
| | | | | Dennis Sweeney |
14581458
| | ``x * x`` | | | |
@@ -1839,7 +1839,7 @@ Standard Library
18391839

18401840
* :class:`!webbrowser.MacOSX` is deprecated and will be removed in Python 3.13.
18411841
It is untested, undocumented, and not used by :mod:`webbrowser` itself.
1842-
(Contributed by Dong-hee Na in :issue:`42255`.)
1842+
(Contributed by Donghee Na in :issue:`42255`.)
18431843

18441844
* The behavior of returning a value from a :class:`~unittest.TestCase` and
18451845
:class:`~unittest.IsolatedAsyncioTestCase` test methods (other than the
@@ -1984,7 +1984,7 @@ Removed C APIs are :ref:`listed separately <whatsnew311-c-api-removed>`.
19841984
:meth:`!NullTranslations.set_output_charset` methods,
19851985
and the *codeset* parameter of :func:`!translation` and :func:`!install`,
19861986
since they are only used for the :func:`!l*gettext` functions.
1987-
(Contributed by Dong-hee Na and Serhiy Storchaka in :issue:`44235`.)
1987+
(Contributed by Donghee Na and Serhiy Storchaka in :issue:`44235`.)
19881988

19891989
* Removed from the :mod:`inspect` module:
19901990

@@ -2009,7 +2009,7 @@ Removed C APIs are :ref:`listed separately <whatsnew311-c-api-removed>`.
20092009

20102010
* Removed the :class:`!MailmanProxy` class in the :mod:`smtpd` module,
20112011
as it is unusable without the external :mod:`!mailman` package.
2012-
(Contributed by Dong-hee Na in :issue:`35800`.)
2012+
(Contributed by Donghee Na in :issue:`35800`.)
20132013

20142014
* Removed the deprecated :meth:`!split` method of :class:`!_tkinter.TkappType`.
20152015
(Contributed by Erlend E. Aasland in :issue:`38371`.)
@@ -2151,7 +2151,7 @@ Build Changes
21512151
* CPython can now be built with the
21522152
`ThinLTO <https://clang.llvm.org/docs/ThinLTO.html>`_ option
21532153
via passing ``thin`` to :option:`--with-lto`, i.e. ``--with-lto=thin``.
2154-
(Contributed by Dong-hee Na and Brett Holman in :issue:`44340`.)
2154+
(Contributed by Donghee Na and Brett Holman in :issue:`44340`.)
21552155

21562156
* Freelists for object structs can now be disabled. A new :program:`configure`
21572157
option :option:`--without-freelists` can be used to disable all freelists

Doc/whatsnew/3.12.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,7 @@ Other Language Changes
484484
(Contributed by Serhiy Storchaka in :gh:`87995`.)
485485

486486
* :class:`memoryview` now supports the half-float type (the "e" format code).
487-
(Contributed by Dong-hee Na and Antoine Pitrou in :gh:`90751`.)
487+
(Contributed by Donghee Na and Antoine Pitrou in :gh:`90751`.)
488488

489489
* The parser now raises :exc:`SyntaxError` when parsing source code containing
490490
null bytes. (Contributed by Pablo Galindo in :gh:`96670`.)
@@ -979,7 +979,7 @@ Optimizations
979979

980980
* Added experimental support for using the BOLT binary optimizer in the build
981981
process, which improves performance by 1-5%.
982-
(Contributed by Kevin Modzelewski in :gh:`90536` and tuned by Dong-hee Na in :gh:`101525`)
982+
(Contributed by Kevin Modzelewski in :gh:`90536` and tuned by Donghee Na in :gh:`101525`)
983983

984984
* Speed up the regular expression substitution (functions :func:`re.sub` and
985985
:func:`re.subn` and corresponding :class:`!re.Pattern` methods) for
@@ -1636,7 +1636,7 @@ Changes in the Python API
16361636
so only a very small set of users might be affected.
16371637
This change helps with interpreter isolation. Furthermore, :mod:`syslog` is a wrapper
16381638
around process-global resources, which are best managed from the main interpreter.
1639-
(Contributed by Dong-hee Na in :gh:`99127`.)
1639+
(Contributed by Donghee Na in :gh:`99127`.)
16401640

16411641
* The undocumented locking behavior of :func:`~functools.cached_property`
16421642
is removed, because it locked across all instances of the class, leading to high
@@ -1710,7 +1710,7 @@ Build Changes
17101710

17111711
* CPython now uses the ThinLTO option as the default link time optimization policy
17121712
if the Clang compiler accepts the flag.
1713-
(Contributed by Dong-hee Na in :gh:`89536`.)
1713+
(Contributed by Donghee Na in :gh:`89536`.)
17141714

17151715
* Add ``COMPILEALL_OPTS`` variable in Makefile to override :mod:`compileall`
17161716
options (default: ``-j0``) in ``make install``. Also merged the 3

Doc/whatsnew/3.8.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -947,7 +947,7 @@ This made it difficult to update, experiment with, or teach the various
947947
logging configuration options using the interactive prompt or a Jupyter
948948
notebook.
949949

950-
(Suggested by Raymond Hettinger, implemented by Dong-hee Na, and
950+
(Suggested by Raymond Hettinger, implemented by Donghee Na, and
951951
reviewed by Vinay Sajip in :issue:`33897`.)
952952

953953

@@ -1714,7 +1714,7 @@ Deprecated
17141714

17151715
* The :meth:`~threading.Thread.isAlive()` method of :class:`threading.Thread`
17161716
has been deprecated.
1717-
(Contributed by Dong-hee Na in :issue:`35283`.)
1717+
(Contributed by Donghee Na in :issue:`35283`.)
17181718

17191719
* Many builtin and extension functions that take integer arguments will
17201720
now emit a deprecation warning for :class:`~decimal.Decimal`\ s,

Doc/whatsnew/3.9.rst

+16-16
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ datetime
415415
The :meth:`~datetime.date.isocalendar()` of :class:`datetime.date`
416416
and :meth:`~datetime.datetime.isocalendar()` of :class:`datetime.datetime`
417417
methods now returns a :func:`~collections.namedtuple` instead of a :class:`tuple`.
418-
(Contributed by Dong-hee Na in :issue:`24416`.)
418+
(Contributed by Donghee Na in :issue:`24416`.)
419419

420420
distutils
421421
---------
@@ -429,14 +429,14 @@ fcntl
429429

430430
Added constants :const:`~fcntl.F_OFD_GETLK`, :const:`~fcntl.F_OFD_SETLK`
431431
and :const:`~fcntl.F_OFD_SETLKW`.
432-
(Contributed by Dong-hee Na in :issue:`38602`.)
432+
(Contributed by Donghee Na in :issue:`38602`.)
433433

434434
ftplib
435435
-------
436436

437437
:class:`~ftplib.FTP` and :class:`~ftplib.FTP_TLS` now raise a :class:`ValueError`
438438
if the given timeout for their constructor is zero to prevent the creation of
439-
a non-blocking socket. (Contributed by Dong-hee Na in :issue:`39259`.)
439+
a non-blocking socket. (Contributed by Donghee Na in :issue:`39259`.)
440440

441441
gc
442442
--
@@ -468,7 +468,7 @@ http
468468
----
469469

470470
HTTP status codes ``103 EARLY_HINTS``, ``418 IM_A_TEAPOT`` and ``425 TOO_EARLY`` are added to
471-
:class:`http.HTTPStatus`. (Contributed by Dong-hee Na in :issue:`39509` and Ross Rhodes in :issue:`39507`.)
471+
:class:`http.HTTPStatus`. (Contributed by Donghee Na in :issue:`39509` and Ross Rhodes in :issue:`39507`.)
472472

473473
IDLE and idlelib
474474
----------------
@@ -509,14 +509,14 @@ an optional *timeout* parameter for their constructors.
509509
Also, the :meth:`~imaplib.IMAP4.open` method now has an optional *timeout* parameter
510510
with this change. The overridden methods of :class:`~imaplib.IMAP4_SSL` and
511511
:class:`~imaplib.IMAP4_stream` were applied to this change.
512-
(Contributed by Dong-hee Na in :issue:`38615`.)
512+
(Contributed by Donghee Na in :issue:`38615`.)
513513

514514
:meth:`imaplib.IMAP4.unselect` is added.
515515
:meth:`imaplib.IMAP4.unselect` frees server's resources associated with the
516516
selected mailbox and returns the server to the authenticated
517517
state. This command performs the same actions as :meth:`imaplib.IMAP4.close`, except
518518
that no messages are permanently removed from the currently
519-
selected mailbox. (Contributed by Dong-hee Na in :issue:`40375`.)
519+
selected mailbox. (Contributed by Donghee Na in :issue:`40375`.)
520520

521521
importlib
522522
---------
@@ -588,13 +588,13 @@ nntplib
588588

589589
:class:`~nntplib.NNTP` and :class:`~nntplib.NNTP_SSL` now raise a :class:`ValueError`
590590
if the given timeout for their constructor is zero to prevent the creation of
591-
a non-blocking socket. (Contributed by Dong-hee Na in :issue:`39259`.)
591+
a non-blocking socket. (Contributed by Donghee Na in :issue:`39259`.)
592592

593593
os
594594
--
595595

596596
Added :const:`~os.CLD_KILLED` and :const:`~os.CLD_STOPPED` for :attr:`si_code`.
597-
(Contributed by Dong-hee Na in :issue:`38493`.)
597+
(Contributed by Donghee Na in :issue:`38493`.)
598598

599599
Exposed the Linux-specific :func:`os.pidfd_open` (:issue:`38692`) and
600600
:const:`os.P_PIDFD` (:issue:`38713`) for process management with file
@@ -629,7 +629,7 @@ poplib
629629

630630
:class:`~poplib.POP3` and :class:`~poplib.POP3_SSL` now raise a :class:`ValueError`
631631
if the given timeout for their constructor is zero to prevent the creation of
632-
a non-blocking socket. (Contributed by Dong-hee Na in :issue:`39259`.)
632+
a non-blocking socket. (Contributed by Donghee Na in :issue:`39259`.)
633633

634634
pprint
635635
------
@@ -661,10 +661,10 @@ smtplib
661661

662662
:class:`~smtplib.SMTP` and :class:`~smtplib.SMTP_SSL` now raise a :class:`ValueError`
663663
if the given timeout for their constructor is zero to prevent the creation of
664-
a non-blocking socket. (Contributed by Dong-hee Na in :issue:`39259`.)
664+
a non-blocking socket. (Contributed by Donghee Na in :issue:`39259`.)
665665

666666
:class:`~smtplib.LMTP` constructor now has an optional *timeout* parameter.
667-
(Contributed by Dong-hee Na in :issue:`39329`.)
667+
(Contributed by Donghee Na in :issue:`39329`.)
668668

669669
socket
670670
------
@@ -777,7 +777,7 @@ Optimizations
777777
* A number of Python builtins (:class:`range`, :class:`tuple`, :class:`set`,
778778
:class:`frozenset`, :class:`list`, :class:`dict`) are now sped up by using
779779
:pep:`590` vectorcall protocol.
780-
(Contributed by Dong-hee Na, Mark Shannon, Jeroen Demeyer and Petr Viktorin in :issue:`37207`.)
780+
(Contributed by Donghee Na, Mark Shannon, Jeroen Demeyer and Petr Viktorin in :issue:`37207`.)
781781

782782
* Optimized :func:`~set.difference_update` for the case when the other set
783783
is much larger than the base set.
@@ -791,7 +791,7 @@ Optimizations
791791

792792
* :term:`floor division` of float operation now has a better performance. Also
793793
the message of :exc:`ZeroDivisionError` for this operation is updated.
794-
(Contributed by Dong-hee Na in :issue:`39434`.)
794+
(Contributed by Donghee Na in :issue:`39434`.)
795795

796796
* Decoding short ASCII strings with UTF-8 and ascii codecs is now about
797797
15% faster. (Contributed by Inada Naoki in :issue:`37348`.)
@@ -961,7 +961,7 @@ Removed
961961
are not supported or not enabled by NNTP server administrators.
962962
For ``xgtitle()``, please use :meth:`nntplib.NNTP.descriptions` or
963963
:meth:`nntplib.NNTP.description` instead.
964-
(Contributed by Dong-hee Na in :issue:`39366`.)
964+
(Contributed by Donghee Na in :issue:`39366`.)
965965

966966
* :class:`array.array`: ``tostring()`` and ``fromstring()`` methods have been
967967
removed. They were aliases to ``tobytes()`` and ``frombytes()``, deprecated
@@ -994,7 +994,7 @@ Removed
994994
* The :meth:`~threading.Thread.isAlive()` method of :class:`threading.Thread`
995995
has been removed. It was deprecated since Python 3.8.
996996
Use :meth:`~threading.Thread.is_alive()` instead.
997-
(Contributed by Dong-hee Na in :issue:`37804`.)
997+
(Contributed by Donghee Na in :issue:`37804`.)
998998

999999
* Methods ``getchildren()`` and ``getiterator()`` of classes
10001000
:class:`~xml.etree.ElementTree.ElementTree` and
@@ -1315,7 +1315,7 @@ New Features
13151315

13161316
* The :c:func:`PyModule_AddType` function is added to help adding a type
13171317
to a module.
1318-
(Contributed by Dong-hee Na in :issue:`40024`.)
1318+
(Contributed by Donghee Na in :issue:`40024`.)
13191319

13201320
* Added the functions :c:func:`PyObject_GC_IsTracked` and
13211321
:c:func:`PyObject_GC_IsFinalized` to the public API to allow to query if

Misc/ACKS

+1-1
Original file line numberDiff line numberDiff line change
@@ -1268,7 +1268,7 @@ R. David Murray
12681268
Matti Mäki
12691269
Jörg Müller
12701270
Kaushik N
1271-
Dong-hee Na
1271+
Donghee Na
12721272
Dale Nagata
12731273
John Nagle
12741274
Takahiro Nakayama

Misc/NEWS.d/3.10.0a1.rst

+6-6
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ getting the ``__bases__`` attribute leads to infinite recursion.
6868
.. section: Core and Builtins
6969
7070
Speed up calls to ``reversed()`` by using the :pep:`590` ``vectorcall``
71-
calling convention. Patch by Dong-hee Na.
71+
calling convention. Patch by Donghee Na.
7272

7373
..
7474
@@ -88,7 +88,7 @@ convention. Patch by Dennis Sweeney.
8888
.. section: Core and Builtins
8989
9090
Speed up calls to ``bool()`` by using the :pep:`590` ``vectorcall`` calling
91-
convention. Patch by Dong-hee Na.
91+
convention. Patch by Donghee Na.
9292

9393
..
9494
@@ -715,7 +715,7 @@ Fix refleak in _Py_fopen_obj() when PySys_Audit() fails
715715
.. section: Core and Builtins
716716
717717
Add a state to the :mod:`nis` module (:pep:`3121`) and apply the multiphase
718-
initialization. Patch by Dong-hee Na.
718+
initialization. Patch by Donghee Na.
719719

720720
..
721721
@@ -936,7 +936,7 @@ class. Patch by Pablo Galindo.
936936
.. section: Core and Builtins
937937
938938
:c:func:`Py_TYPE()` is changed to the inline static function. Patch by
939-
Dong-hee Na.
939+
Donghee Na.
940940

941941
..
942942
@@ -2596,7 +2596,7 @@ remove multiple items from a list".
25962596
.. section: Documentation
25972597
25982598
Fix RemovedInSphinx40Warning when building the documentation. Patch by
2599-
Dong-hee Na.
2599+
Donghee Na.
26002600

26012601
..
26022602
@@ -2862,7 +2862,7 @@ Make test_gdb properly run on HP-UX. Patch by Michael Osipov.
28622862
.. section: Build
28632863
28642864
Update :c:macro:`Py_UNREACHABLE` to use __builtin_unreachable() if only the
2865-
compiler is able to use it. Patch by Dong-hee Na.
2865+
compiler is able to use it. Patch by Donghee Na.
28662866

28672867
..
28682868

Misc/NEWS.d/3.10.0a2.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ Removed special methods ``__int__``, ``__float__``, ``__floordiv__``,
185185
186186
Micro optimization when compute :c:member:`~PySequenceMethods.sq_item` and
187187
:c:member:`~PyMappingMethods.mp_subscript` of :class:`range`. Patch by
188-
Dong-hee Na.
188+
Donghee Na.
189189

190190
..
191191
@@ -205,7 +205,7 @@ error message using the current locale's encoding.
205205
.. nonce: iLoMVF
206206
.. section: Core and Builtins
207207
208-
Micro optimization for range.index if step is 1. Patch by Dong-hee Na.
208+
Micro optimization for range.index if step is 1. Patch by Donghee Na.
209209

210210
..
211211

Misc/NEWS.d/3.10.0a3.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ Removed the ``formatter`` module, which was deprecated in Python 3.4. It is
394394
somewhat obsolete, little used, and not tested. It was originally scheduled
395395
to be removed in Python 3.6, but such removals were delayed until after
396396
Python 2.7 EOL. Existing users should copy whatever classes they use into
397-
their code. Patch by Dong-hee Na and and Terry J. Reedy.
397+
their code. Patch by Donghee Na and and Terry J. Reedy.
398398

399399
..
400400

0 commit comments

Comments
 (0)