PEP 235: Resolve dangling hyphens (#3345)

This commit is contained in:
Adam Turner 2023-09-01 19:39:22 +01:00 committed by GitHub
parent e8715f849d
commit 97df1d2039
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -125,8 +125,8 @@ A. If the ``PYTHONCASEOK`` environment variable exists, same as
B. Else search ``sys.path`` for the first case-sensitive match; raise
``ImportError`` if none found.
#B is the same rule as is used on Unix, so this will improve cross-
platform portability. That's good. #B is also the rule the Mac
#B is the same rule as is used on Unix, so this will improve
cross-platform portability. That's good. #B is also the rule the Mac
and Cygwin folks want (and wanted enough to implement themselves,
multiple times, which is a powerful argument in PythonLand). It
can't cause any existing non-exceptional Windows import to fail,