@@ -569,18 +569,18 @@ asyncio
569569 making some use-cases 2x to 5x faster.
570570 (Contributed by Jacob Bower & Itamar O in :gh: `102853 `, :gh: `104140 `, and :gh: `104138 `)
571571
572- * On Linux, :mod: `asyncio ` uses :class: `~ asyncio.PidfdChildWatcher ` by default
572+ * On Linux, :mod: `asyncio ` uses :class: `asyncio.PidfdChildWatcher ` by default
573573 if :func: `os.pidfd_open ` is available and functional instead of
574- :class: `~ asyncio.ThreadedChildWatcher `.
574+ :class: `asyncio.ThreadedChildWatcher `.
575575 (Contributed by Kumar Aditya in :gh: `98024 `.)
576576
577- * The child watcher classes :class: `~ asyncio.MultiLoopChildWatcher `,
578- :class: `~ asyncio.FastChildWatcher `, :class: `~ asyncio.AbstractChildWatcher `
579- and :class: `~ asyncio.SafeChildWatcher ` are deprecated and
577+ * The child watcher classes :class: `asyncio.MultiLoopChildWatcher `,
578+ :class: `asyncio.FastChildWatcher `, :class: `asyncio.AbstractChildWatcher `
579+ and :class: `asyncio.SafeChildWatcher ` are deprecated and
580580 will be removed in Python 3.14. It is recommended to not manually
581581 configure a child watcher as the event loop now uses the best available
582- child watcher for each platform (:class: `~ asyncio.PidfdChildWatcher `
583- if supported and :class: `~ asyncio.ThreadedChildWatcher ` otherwise).
582+ child watcher for each platform (:class: `asyncio.PidfdChildWatcher `
583+ if supported and :class: `asyncio.ThreadedChildWatcher ` otherwise).
584584 (Contributed by Kumar Aditya in :gh: `94597 `.)
585585
586586* :func: `asyncio.set_child_watcher `, :func: `asyncio.get_child_watcher `,
@@ -607,15 +607,15 @@ asyncio
607607calendar
608608--------
609609
610- * Add enums :data: `~ calendar.Month ` and :data: `~ calendar.Day `.
610+ * Add enums :data: `calendar.Month ` and :data: `calendar.Day `.
611611 (Contributed by Prince Roshan in :gh: `103636 `.)
612612
613613csv
614614---
615615
616- * Add :const: `~ csv.QUOTE_NOTNULL ` and :const: `~ csv.QUOTE_STRINGS ` flags to
616+ * Add :const: `csv.QUOTE_NOTNULL ` and :const: `csv.QUOTE_STRINGS ` flags to
617617 provide finer grained control of ``None `` and empty strings by
618- :class: `~ csv.writer ` objects.
618+ :class: `csv.writer ` objects.
619619
620620dis
621621---
625625 :mod: `dis ` module.
626626 :opcode: `HAVE_ARGUMENT ` is still relevant to real opcodes,
627627 but it is not useful for pseudo instructions. Use the new
628- :data: `~ dis.hasarg ` collection instead.
628+ :data: `dis.hasarg ` collection instead.
629629 (Contributed by Irit Katriel in :gh: `94216 `.)
630630
631631fractions
@@ -711,11 +711,11 @@ pathlib
711711-------
712712
713713* Add support for subclassing :class: `pathlib.PurePath ` and
714- :class: `~ pathlib.Path `, plus their Posix- and Windows-specific variants.
715- Subclasses may override the :meth: `~ pathlib.PurePath.with_segments ` method
714+ :class: `pathlib.Path `, plus their Posix- and Windows-specific variants.
715+ Subclasses may override the :meth: `pathlib.PurePath.with_segments ` method
716716 to pass information between path instances.
717717
718- * Add :meth: `~ pathlib.Path.walk ` for walking the directory trees and generating
718+ * Add :meth: `pathlib.Path.walk ` for walking the directory trees and generating
719719 all file or directory names within them, similar to :func: `os.walk `.
720720 (Contributed by Stanislav Zmiev in :gh: `90385 `.)
721721
@@ -784,20 +784,20 @@ sqlite3
784784* Add a :ref: `command-line interface <sqlite3-cli >`.
785785 (Contributed by Erlend E. Aasland in :gh: `77617 `.)
786786
787- * Add the :attr: `~ sqlite3.Connection.autocommit ` attribute
788- to :class: `~ sqlite3.Connection `
789- and the *autocommit * parameter to :func: `~ sqlite3.connect `
787+ * Add the :attr: `sqlite3.Connection.autocommit ` attribute
788+ to :class: `sqlite3.Connection `
789+ and the *autocommit * parameter to :func: `sqlite3.connect `
790790 to control :pep: `249 `-compliant
791791 :ref: `transaction handling <sqlite3-transaction-control-autocommit >`.
792792 (Contributed by Erlend E. Aasland in :gh: `83638 `.)
793793
794794* Add *entrypoint * keyword-only parameter to
795- :meth: `~ sqlite3.Connection.load_extension `,
795+ :meth: `sqlite3.Connection.load_extension `,
796796 for overriding the SQLite extension entry point.
797797 (Contributed by Erlend E. Aasland in :gh: `103015 `.)
798798
799- * Add :meth: `~ sqlite3.Connection.getconfig ` and
800- :meth: `~ sqlite3.Connection.setconfig ` to :class: `~ sqlite3.Connection `
799+ * Add :meth: `sqlite3.Connection.getconfig ` and
800+ :meth: `sqlite3.Connection.setconfig ` to :class: `sqlite3.Connection `
801801 to make configuration changes to a database connection.
802802 (Contributed by Erlend E. Aasland in :gh: `103489 `.)
803803
0 commit comments