Skip to content
Merged
4 changes: 4 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,10 @@ Modules/makesetup @erlend-aasland @AA-Turner @emmatyping
Modules/Setup* @erlend-aasland @AA-Turner @emmatyping
Tools/build/regen-configure.sh @AA-Turner

# generate-build-details
Tools/build/generate-build-details.py @FFY00
Lib/test/test_build_details.py @FFY00


# ----------------------------------------------------------------------------
# Documentation
Expand Down
2 changes: 2 additions & 0 deletions Doc/library/compression.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
The :mod:`!compression` package
===============================

.. module:: compression

.. versionadded:: 3.14

The :mod:`!compression` package contains the canonical compression modules
Expand Down
13 changes: 6 additions & 7 deletions Doc/library/importlib.resources.rst
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,12 @@ for example, a package and its resources can be imported from a zip file using

.. versionadded:: 3.9

.. versionchanged:: 3.12
*package* parameter was renamed to *anchor*. *anchor* can now
be a non-package module and if omitted will default to the caller's
module. *package* is still accepted for compatibility but will raise
a :exc:`DeprecationWarning`. Consider passing the anchor positionally or
using ``importlib_resources >= 5.10`` for a compatible interface
on older Pythons.
.. deprecated-removed:: 3.12 3.15
*package* parameter was renamed to *anchor*. *anchor* can now be a
non-package module and if omitted will default to the caller's module.
*package* is no longer accepted since Python 3.15. Consider passing the
anchor positionally or using ``importlib_resources >= 5.10`` for a
compatible interface on older Pythons.

.. function:: as_file(traversable)

Expand Down
Loading
Loading