Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Doc/library/importlib.resources.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ not** have to exist as physical files and directories on the file system:
for example, a package and its resources can be imported from a zip file using
:py:mod:`zipimport`.

.. warning::

:mod:`importlib.resources` follows the same security model as the built-in
:func:`open` function. Passing untrusted inputs to the functions
in this module is unsafe.

.. note::

This module provides functionality similar to `pkg_resources
Expand Down
Loading