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.

classification
Title: embeddable distro cannot import modules
Type: behavior Stage: resolved
Components: Interpreter Core Versions: Python 3.11
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: steve.dower Nosy List: lukasz.langa, steve.dower
Priority: normal Keywords: patch

Created on 2021-12-11 13:13 by steve.dower, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 30048 merged steve.dower, 2021-12-11 13:15
Messages (2)
msg408300 - (view) Author: Steve Dower (steve.dower) * (Python committer) Date: 2021-12-11 13:13
The embeddable distro cannot import native modules.

This is because the '.' entry in the ._pth file is incorrect parsed by the new getpath module (issue45582).
msg408303 - (view) Author: Steve Dower (steve.dower) * (Python committer) Date: 2021-12-11 13:43
New changeset 971ece8e1738b1107dda692cc44c6d8ddce384cd by Steve Dower in branch 'main':
bpo-46048: Fix parsing of single character lines in getpath readlines() (GH-30048)
https://github.com/python/cpython/commit/971ece8e1738b1107dda692cc44c6d8ddce384cd
History
Date User Action Args
2022-04-11 14:59:53adminsetgithub: 90206
2021-12-11 13:46:56steve.dowersetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2021-12-11 13:43:48steve.dowersetmessages: + msg408303
2021-12-11 13:15:27steve.dowersetkeywords: + patch
stage: needs patch -> patch review
pull_requests: + pull_request28273
2021-12-11 13:13:55steve.dowercreate