Mercurial > public > mercurial-scm > hg
view tests/test-check-py3-commands.t @ 30305:af7c60988f6e
py3: make scmutil.rcpath() return bytes
This patch make sure scmutil.rcpath() returns bytes independent of
which platform is used on Python 3. If we want to change type for windows we
can just conditionalize the return variable.
author | Pulkit Goyal <7895pulkit@gmail.com> |
---|---|
date | Sun, 06 Nov 2016 04:17:19 +0530 |
parents | d69d86e7d6c8 |
children | 9df29b7c62cf |
line wrap: on
line source
#require py3exe This test helps in keeping a track on which commands we can run on Python 3 and see what kind of errors are coming up. The full traceback is hidden to have a stable output. $ for cmd in version debuginstall ; do > echo $cmd > $PYTHON3 `which hg` $cmd 2>&1 2>&1 | tail -1 > done version TypeError: startswith first arg must be str or a tuple of str, not bytes debuginstall TypeError: startswith first arg must be str or a tuple of str, not bytes