@@ -569,18 +569,18 @@ asyncio
569
569
making some use-cases 2x to 5x faster.
570
570
(Contributed by Jacob Bower & Itamar O in :gh: `102853 `, :gh: `104140 `, and :gh: `104138 `)
571
571
572
- * On Linux, :mod: `asyncio ` uses :class: `~ asyncio.PidfdChildWatcher ` by default
572
+ * On Linux, :mod: `asyncio ` uses :class: `asyncio.PidfdChildWatcher ` by default
573
573
if :func: `os.pidfd_open ` is available and functional instead of
574
- :class: `~ asyncio.ThreadedChildWatcher `.
574
+ :class: `asyncio.ThreadedChildWatcher `.
575
575
(Contributed by Kumar Aditya in :gh: `98024 `.)
576
576
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
580
580
will be removed in Python 3.14. It is recommended to not manually
581
581
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).
584
584
(Contributed by Kumar Aditya in :gh: `94597 `.)
585
585
586
586
* :func: `asyncio.set_child_watcher `, :func: `asyncio.get_child_watcher `,
@@ -607,15 +607,15 @@ asyncio
607
607
calendar
608
608
--------
609
609
610
- * Add enums :data: `~ calendar.Month ` and :data: `~ calendar.Day `.
610
+ * Add enums :data: `calendar.Month ` and :data: `calendar.Day `.
611
611
(Contributed by Prince Roshan in :gh: `103636 `.)
612
612
613
613
csv
614
614
---
615
615
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
617
617
provide finer grained control of ``None `` and empty strings by
618
- :class: `~ csv.writer ` objects.
618
+ :class: `csv.writer ` objects.
619
619
620
620
dis
621
621
---
625
625
:mod: `dis ` module.
626
626
:opcode: `HAVE_ARGUMENT ` is still relevant to real opcodes,
627
627
but it is not useful for pseudo instructions. Use the new
628
- :data: `~ dis.hasarg ` collection instead.
628
+ :data: `dis.hasarg ` collection instead.
629
629
(Contributed by Irit Katriel in :gh: `94216 `.)
630
630
631
631
fractions
@@ -711,11 +711,11 @@ pathlib
711
711
-------
712
712
713
713
* 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
716
716
to pass information between path instances.
717
717
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
719
719
all file or directory names within them, similar to :func: `os.walk `.
720
720
(Contributed by Stanislav Zmiev in :gh: `90385 `.)
721
721
@@ -784,20 +784,20 @@ sqlite3
784
784
* Add a :ref: `command-line interface <sqlite3-cli >`.
785
785
(Contributed by Erlend E. Aasland in :gh: `77617 `.)
786
786
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 `
790
790
to control :pep: `249 `-compliant
791
791
:ref: `transaction handling <sqlite3-transaction-control-autocommit >`.
792
792
(Contributed by Erlend E. Aasland in :gh: `83638 `.)
793
793
794
794
* Add *entrypoint * keyword-only parameter to
795
- :meth: `~ sqlite3.Connection.load_extension `,
795
+ :meth: `sqlite3.Connection.load_extension `,
796
796
for overriding the SQLite extension entry point.
797
797
(Contributed by Erlend E. Aasland in :gh: `103015 `.)
798
798
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 `
801
801
to make configuration changes to a database connection.
802
802
(Contributed by Erlend E. Aasland in :gh: `103489 `.)
803
803
0 commit comments