windows: effect of PYTHONLEGACYWINDOWSSTDIO when not defined
Fixes issue6952.
On Windows, we need PYTHONLEGACYWINDOWSSTDIO=1
so that the pager works correctly.
Normally, this environment variable is defined in hg.exe (see https://foss.heptapod.net/mercurial/mercurial-devel/-/blob/branch/default/mercurial/exewrapper.c?ref_type=heads#L51). However, there are situations for which this wrapper is not used (see https://bz.mercurial-scm.org/show_bug.cgi?id=6952).
Moreover, if we don't need this PYTHONLEGACYWINDOWSSTDIO=1
anymore, we can use a standard Python console-script entry point, which would simplify a lot of things.
I quickly tried this fix suggested by Steve Dower (CPython core developer) here on a PC on Windows 11 and it seems to work fine. However, I don't know all the implications of PYTHONLEGACYWINDOWSSTDIO and of this hack, so this needs to be seriously tested!
Note that it should have an effect only on Windows and only when PYTHONLEGACYWINDOWSSTDIO
is not defined, i.e. only in quite rare cases (in particular hg installed with Pixi).
@mharbison72 I would be interested to have your point of view on this possible change.
Also I wonder if it's going to be used in the Windows CI. I know that the CI uses the wheel which lacks hg.exe so it well possible that this code is going to be used. I also wonder if the pager is tested during the CI...
Merge request reports
Activity
requested review from @mercurial.review
added 1 commit
- 68a8dd95b5b5 - windows: effect of PYTHONLEGACYWINDOWSSTDIO when not defined
added 1 commit
- 12c0df3ccd9d - windows: effect of PYTHONLEGACYWINDOWSSTDIO when not defined
added 1 commit
- b6f1174cd69c - windows: stop enabling legacy stdio by default in the `hg` executable
added 2 commits
- 5312498a83ce - xxx-windows: avoid replacing `sys.__std{in,out,err}__`
- 070aed23a569 - xxx-windows: try replacing stdio streams in one place
- Resolved by Pierre Augier
25 io.FileIO(sys.stdin.fileno(), closefd=False), encoding="mbcs" 26 ) 27 sys.stdout = io.TextIOWrapper( 28 io.FileIO(sys.stdout.fileno(), "wb", closefd=False), 29 encoding="mbcs", 30 errors="replace", 31 ) 32 sys.stderr = io.TextIOWrapper( 33 io.FileIO(sys.stderr.fileno(), "wb", closefd=False), 34 encoding="mbcs", 35 errors="replace", 36 ) 37 38 sys.__stdin__ = sys.stdin 39 sys.__stdout__ = sys.stdout 40 sys.__stderr__ = sys.stderr Outstanding! I wondered if it would be this simple, but was always afraid to try it and break something. I even get color with the pager (on Windows 11 anyway), which wasn't the case when explicitly piping to the pager on the console to work around the issue.
Full disclosure, I don't really understand the encoding philosophy, other than it's bad for the vcs to have opinions about what the encoding is. But it seems like we're stuck doing that around the edges. See also the comment in my last commit about we should maybe be using
encoding.encoding
andencoding.encodingmode
instead of 'mbcs' and 'replace'. @yuja @mjacob - does that seem right?Feel free to steal/adapt/whatever code that I pushed. I'd just say you should copy the text in the MR overview into the commit message so that it's easier to find. The URL reference to the code should be a permalink, instead of floating like it is. The link to the python.org description is especially important to save. And the summary line for the commit should be something like
windows: enable unicode stdio to support paged output (issue6952)
The parenthetical is important because the bot uses that to close the issue (assuming it's still running), but is also the convention so it makes it easier to find fixes, write the release notes, etc.
I need to read through the python.org discussion that was referenced again, and might have more comments. I also thought there was something in the code where on Windows we were calling some private (underscore prefixed) function, and it was encoding related. But IDR the name, and I can't find it now. I just remember PyCharm and possibly pytype complaining that it didn't exist. If it does and it was encoding related, maybe we can get rid of it too.
about we should maybe be using
encoding.encoding
andencoding.encodingmode
instead of 'mbcs' and 'replace'I don't follow the discussion, but suppose we don't use unicode
sys.stdout
/stderr
internally, it's probably better to copy what the Python interpreter decides. If we do usesys.stdout
, I have no idea.Up to this point, we've not used
sys.stdout
directly. We've takensys.stdout.buffer
, wrapped it up in a few things that also take bytes, add line buffering, etc, and assign that toprocutil.stdout
. Everything should be writing bytes toprocutil.stdout
. We need to convert that to unicode before it gets passed to the wide character Windows API.The underlying problem here is for commands that might spin up the pager, all output is lost when writing to
sys.stdout.buffer
. (But not for non-paged commands, and not forhg foo | less
, though that loses color.)The 'mbcs' and 'replace' suggestion came from the python dev, but that seemed like it might be wrong if we're internally passing around bytes encoded with
HGENCODING
, and ultimately need unicode.FWIW:
$ py -3.9 Python 3.9.13 (tags/v3.9.13:6de2ca5, May 17 2022, 16:36:42) [MSC v.1929 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> import sys >>> sys.stdout.encoding 'utf-8' >>> sys.stderr.encoding 'utf-8' >>> sys.stderr.errors 'backslashreplace' $ hg debuginstall checking encoding (cp1252)...
@paugier - I realized that the test runner also sets this variable, so the tests to date have been invalid, since python was still being switched to legacy stdio. I'm going to push a new commit that forcibly unsets the variable in
hg.exe
andhg.bat
. It looks like that causes ~25 test failures locally. Mostly it looks to be I/O on a closed file, and order of output changing (I haven't looked to see if this is eagerly flushing or more lazily flushing). But I think we're on the right path, and it's just details that need to be worked out now.I don't know why pager matters (because afaik it replaces the underlying fds), but I don't know Windows and abstractions Py3 made on top.
If the data written to
sys.stdout
goes through Mercurial API,usingUser data might have different encoding, but maybe mojibake is acceptable if unicode stream is used only when pager is enabled on Windows?encoding.encoding
would probably be the least bad assumption.EDIT: Oh, but it's output encoding? Then, it might be safer to copy the encoding what the Python interpreter decided.
Edited by Yuya Nishihara
This can also go away, assuming this change works in some form:
(Maybe we'll need to conditionalize it to only be used if the environment variable is present, but skipped in the now working case.)
mentioned in merge request !1131 (merged)
added 4 commits
- f6a80805f308 - windows: really stop using legacy stdio during test runs
- 70b9397f9f60 - xxx-windows: avoid replacing `sys.__std{in,out,err}__`
- 5da9be877470 - xxx-windows: try replacing stdio streams in one place
- c763aeac5d33 - xxx-windows: backout the previous commit
Toggle commit listadded 6 commits
- f9b8ac279227 - windows: effect of PYTHONLEGACYWINDOWSSTDIO when not defined
- 6ec2e133d86f - windows: stop enabling legacy stdio by default in the `hg` executable
- 3d0429fc23bd - windows: really stop using legacy stdio during test runs
- 1b53c5d2dc7e - xxx-windows: avoid replacing `sys.__std{in,out,err}__`
- f78aa5d4452a - xxx-windows: try replacing stdio streams in one place
- 593bae25d979 - xxx-windows: backout the previous commit
Toggle commit listI really don't feel competent to do anything more on this MR.
However, I see the importance it can have, to fix issue6952 and moreover to allow us to just use a standard console-script entry point for
hg
, which has quite a lot of advantages in particular on Windows. For example, it would allow us to just use pyapp to create a simple application for different OS and in particular Windows (with a signed launcher).@mharbison72 do you think you can try to finalize it?
@mharbison72 now that I can run the test locally on Windows, I might be able to work a bit on this MR. However, some instructions would be useful.
It looks like that causes ~25 test failures locally. Mostly it looks to be I/O on a closed file, and order of output changing (I haven't looked to see if this is eagerly flushing or more lazily flushing).
In particular, I don't really understand how these tests should be fixed. I realized that if you knew, it would be easy, but you might be able to give few indications?
I think you're on the right path with figuring out what python (and Windows) is doing. My understanding is that the XxxA functions in the Windows API are very thin wrappers over the XxxW functions, and they simply convert from
char
using the current code page to unicodewchar_t
. The kernel iswchar_t
throughout, so the bytes are going to be decoded one way or the other. So we might as well control it.I think the proper fix for the tests is to fix all of the
tests/*.py
files to do the same thing as the hg process, but that's a lot of work and probably not something to take on until we're sure of the fix. The test runner is settingHGENCODING=ascii
, so we're not going to get good coverage here anyway. I'd maybe start with seeing if the change inhg.exe
fixes the issues that I linked from the TortoiseHg tracker to build confidence in this. If it does, maybe we can develop a Windows-only *.t file that setsHGENCODING
to something else, and then swing back around to the broken tests. You might be able to fix some of the tests by settingPYTHONLEGACYINDOWSSTDIO=1
before firing off the hook, but that only works for external hooks and isn't something we'd want to ship anyway. (I'm also not sure if any hooks invokehg.exe
, and we wouldn't want to do that for those either.)
mentioned in commit 19530863028c
mentioned in merge request !1206
mentioned in commit 727293e3ec19
mentioned in commit 63ac0fda36fe
mentioned in commit 354ba6935d78
mentioned in commit 4a69970dbaf7
It might be interesting to study what is done by CPython when PYTHONLEGACYWINDOWSSTDIO is defined.
An option
legacy_windows_stdio
is activated. A search on Github (https://github.com/search?q=repo%3Apython%2Fcpython+legacy_windows_stdio&type=code) reveals that this has consequences on mainly two files: