https://github.com/python/cpython/commit/f223efb2a2d6a3e86556be7295cbbd3ef839f489 commit: f223efb2a2d6a3e86556be7295cbbd3ef839f489 branch: main author: sobolevn <[email protected]> committer: sobolevn <[email protected]> date: 2024-11-12T13:23:57+03:00 summary:
gh-126525: Fix `makeunicodedata.py` output on macOS and Windows (#126526) files: M Tools/unicode/makeunicodedata.py diff --git a/Tools/unicode/makeunicodedata.py b/Tools/unicode/makeunicodedata.py index c94de7f9377b74..889ae8fc869b8a 100644 --- a/Tools/unicode/makeunicodedata.py +++ b/Tools/unicode/makeunicodedata.py @@ -35,7 +35,7 @@ from textwrap import dedent from typing import Iterator, List, Optional, Set, Tuple -SCRIPT = sys.argv[0] +SCRIPT = os.path.normpath(sys.argv[0]) VERSION = "3.3" # The Unicode Database _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: [email protected]
