@@ -415,7 +415,7 @@ datetime
415415The :meth: `~datetime.date.isocalendar() ` of :class: `datetime.date `
416416and :meth: `~datetime.datetime.isocalendar() ` of :class: `datetime.datetime `
417417methods 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
420420distutils
421421---------
@@ -429,14 +429,14 @@ fcntl
429429
430430Added constants :const: `~fcntl.F_OFD_GETLK `, :const: `~fcntl.F_OFD_SETLK `
431431and :const: `~fcntl.F_OFD_SETLKW `.
432- (Contributed by Dong-hee Na in :issue: `38602 `.)
432+ (Contributed by Donghee Na in :issue: `38602 `.)
433433
434434ftplib
435435-------
436436
437437:class: `~ftplib.FTP ` and :class: `~ftplib.FTP_TLS ` now raise a :class: `ValueError `
438438if 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
441441gc
442442--
468468----
469469
470470HTTP 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
473473IDLE and idlelib
474474----------------
@@ -509,14 +509,14 @@ an optional *timeout* parameter for their constructors.
509509Also, the :meth: `~imaplib.IMAP4.open ` method now has an optional *timeout * parameter
510510with 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
516516selected mailbox and returns the server to the authenticated
517517state. This command performs the same actions as :meth: `imaplib.IMAP4.close `, except
518518that 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
521521importlib
522522---------
@@ -588,13 +588,13 @@ nntplib
588588
589589:class: `~!nntplib.NNTP ` and :class: `~!nntplib.NNTP_SSL ` now raise a :class: `ValueError `
590590if 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
593593os
594594--
595595
596596Added :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
599599Exposed 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 `
631631if 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
634634pprint
635635------
@@ -661,10 +661,10 @@ smtplib
661661
662662:class: `~smtplib.SMTP ` and :class: `~smtplib.SMTP_SSL ` now raise a :class: `ValueError `
663663if 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
669669socket
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
0 commit comments