We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16c22b9 commit 9aa048dCopy full SHA for 9aa048d
1 file changed
Lib/test/test_importlib/import_/test_path.py
@@ -103,7 +103,7 @@ def test_invalid_names_in_sys_path(self):
103
(f'Top{os.sep}Mid\x00', 'path with embedded NUL bytes'),
104
# A filename with surrogate codes. A UnicodeEncodeError is raised
105
# by os.stat() upon querying, which is a subclass of ValueError.
106
- ("\uD834\uDD1E.py", 'surrogate codes (MUSICAL SYMBOL G CLEF)'),
+ ("\uD834\uDD1E", 'surrogate codes (MUSICAL SYMBOL G CLEF)'),
107
# For POSIX platforms, an OSError will be raised but for Windows
108
# platforms, a ValueError is raised due to the path_t converter.
109
# See: https://github.com/python/cpython/issues/122353
0 commit comments