This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author gitpushdashf
Recipients gitpushdashf
Date 2021-05-17.21:13:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1621286006.08.0.980082746272.issue44162@roundup.psfhosted.org>
In-reply-to
Content
In Python 3.7 and 3.8, importlib.resources.path worked perfectly with a directory.

For example:

with importlib.resources.path(__package__, "dir") as dir:
    os.listdir(dir)

In Python 3.9, this is raised: IsADirectoryError: [Errno 21] Is a directory: 'dir'

I haven't seen this change documented. I don't know if the behavior in 3.7 and 3.8 was a bug, it sure was useful.

In this case, we have web files which we want to serve statically from that folder. Naming them file by file could work, but would be tedious and isn't preferable for us.

Thank you!
History
Date User Action Args
2021-05-17 21:13:26gitpushdashfsetrecipients: + gitpushdashf
2021-05-17 21:13:26gitpushdashfsetmessageid: <1621286006.08.0.980082746272.issue44162@roundup.psfhosted.org>
2021-05-17 21:13:26gitpushdashflinkissue44162 messages
2021-05-17 21:13:25gitpushdashfcreate