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 vinay.sajip
Recipients RJ722, The Compiler, brett.cannon, dstufft, eric.araujo, ned.deily, vinay.sajip
Date 2020-06-29.17:06:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1593450364.55.0.866685498596.issue41154@roundup.psfhosted.org>
In-reply-to
Content
The problem appears to be in importlib. I put in a breakpoint in the test just before it tries to import the module é. (At this point it has successfully imported a module called वमस in an earlier loop iteration.)

Then, in a different terminal console, I cd'd to the test directory and tried the import directly:
$ ls -l
total 0
drwxr-xr-x  3 xxxxxxxx  xxxxx  102 29 Jun 17:55 é
drwxr-xr-x  4 xxxxxxxx  xxxxx  136 29 Jun 17:55 वमस
$ ~/projects/cpython/python.exe
Python 3.10.0a0 (heads/master:a3ad95d, Jun 29 2020, 17:50:09)
[Clang 8.0.0 (clang-800.0.42.1)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import वमस
>>> import é
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ModuleNotFoundError: No module named 'é'

So for some reason, importlib is failing to import the é module. (The é/__init__.py is a zero-byte file.)

Adding Brett to nosy.
History
Date User Action Args
2020-06-29 17:06:04vinay.sajipsetrecipients: + vinay.sajip, brett.cannon, ned.deily, eric.araujo, dstufft, The Compiler, RJ722
2020-06-29 17:06:04vinay.sajipsetmessageid: <1593450364.55.0.866685498596.issue41154@roundup.psfhosted.org>
2020-06-29 17:06:04vinay.sajiplinkissue41154 messages
2020-06-29 17:06:04vinay.sajipcreate