diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2018-06-11 20:08:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-11 20:08:24 (GMT) |
commit | afa1ea5bfd18947aa732a1ea09220aefbed81e1c (patch) | |
tree | 584f6aeea6f888a3c034a70fa69f1a0909ae3ed6 | |
parent | 0404d35f9dc89748949935a9178d28bedde9d8c8 (diff) | |
download | cpython-afa1ea5bfd18947aa732a1ea09220aefbed81e1c.zip cpython-afa1ea5bfd18947aa732a1ea09220aefbed81e1c.tar.gz cpython-afa1ea5bfd18947aa732a1ea09220aefbed81e1c.tar.bz2 |
bpo-33656: Add enum name for argument of Windows call. (GH-7642)
Change suggested by Eryk Sun in a comment on PR 7137 after it was merged.
(cherry picked from commit fd88f319a4f40682b989b63f0b6378d69465fda4)
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
-rwxr-xr-x | Lib/idlelib/pyshell.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Lib/idlelib/pyshell.py b/Lib/idlelib/pyshell.py index f39f156..ddfb56a 100755 --- a/Lib/idlelib/pyshell.py +++ b/Lib/idlelib/pyshell.py @@ -9,10 +9,13 @@ except ImportError: "Your Python may not be configured for Tk. **", file=sys.__stderr__) raise SystemExit(1) +# Valid arguments for the ...Awareness call below are defined in the following. +# https://msdn.microsoft.com/en-us/library/windows/desktop/dn280512(v=vs.85).aspx if sys.platform == 'win32': import ctypes + PROCESS_SYSTEM_DPI_AWARE = 1 try: - ctypes.OleDLL('shcore').SetProcessDpiAwareness(1) + ctypes.OleDLL('shcore').SetProcessDpiAwareness(PROCESS_SYSTEM_DPI_AWARE) except (AttributeError, OSError): pass |