##// END OF EJS Templates
internals: extract frame-based protocol docs to own document...
internals: extract frame-based protocol docs to own document wireprotocol.txt is quite long and difficult to digest. The frame-based protocol is effectively a standalone concept (and could even be used outside of Mercurial). So this commit extracts its docs to a standalone file. The first few paragraphs were rewritten as part of the extraction. Sections headers were adjusted accordingly. Existing referalls in wireprotocol.txt were updated to refer to the new doc / concept, which I've started referring to as `hgrpc`. I'm on the fence as to whether to move the HTTP and SSH transport details to the new doc as well. For now, I'm leaving them in wireprotocol.txt. Differential Revision: https://phab.mercurial-scm.org/D4443

File last commit:

r39439:ecbab8be default
r39594:b0e0db15 default
Show More
test-check-py3-compat.t
47 lines | 2.4 KiB | text/troff | Tads3Lexer
/ tests / test-check-py3-compat.t
Gregory Szorc
tests: add test for Python 3 compatibility...
r27279 #require test-repo
timeless
tests: silence test-repo obsolete warning...
r29219 $ . "$TESTDIR/helpers-testrepo.sh"
Gregory Szorc
tests: add test for Python 3 compatibility...
r27279 $ cd "$TESTDIR"/..
Yuya Nishihara
test-check-py3-compat: don't run py2 part if $PYTHON is python3
r39438 #if no-py3k
Yuya Nishihara
demandimport: drop Py3 workarounds from Py2 implementation
r33530 $ testrepohg files 'set:(**.py)' \
> -X hgdemandimport/demandimportpy2.py \
Pulkit Goyal
cbor: fix core test-check*...
r37145 > -X mercurial/thirdparty/cbor \
Yuya Nishihara
demandimport: drop Py3 workarounds from Py2 implementation
r33530 > | sed 's|\\|/|g' | xargs $PYTHON contrib/check-py3-compat.py
Gregory Szorc
zstd: vendor python-zstandard 0.5.0...
r30435 contrib/python-zstandard/setup.py not using absolute_import
contrib/python-zstandard/setup_zstd.py not using absolute_import
contrib/python-zstandard/tests/common.py not using absolute_import
Gregory Szorc
zstd: vendor python-zstandard 0.8.0...
r31796 contrib/python-zstandard/tests/test_buffer_util.py not using absolute_import
Gregory Szorc
zstd: vendor python-zstandard 0.5.0...
r30435 contrib/python-zstandard/tests/test_compressor.py not using absolute_import
Gregory Szorc
zstd: vendor python-zstandard 0.8.0...
r31796 contrib/python-zstandard/tests/test_compressor_fuzzing.py not using absolute_import
Gregory Szorc
zstd: vendor python-zstandard 0.5.0...
r30435 contrib/python-zstandard/tests/test_data_structures.py not using absolute_import
Gregory Szorc
zstd: vendor python-zstandard 0.8.0...
r31796 contrib/python-zstandard/tests/test_data_structures_fuzzing.py not using absolute_import
Gregory Szorc
zstd: vendor python-zstandard 0.5.0...
r30435 contrib/python-zstandard/tests/test_decompressor.py not using absolute_import
Gregory Szorc
zstd: vendor python-zstandard 0.8.0...
r31796 contrib/python-zstandard/tests/test_decompressor_fuzzing.py not using absolute_import
Gregory Szorc
zstd: vendor python-zstandard 0.5.0...
r30435 contrib/python-zstandard/tests/test_estimate_sizes.py not using absolute_import
contrib/python-zstandard/tests/test_module_attributes.py not using absolute_import
contrib/python-zstandard/tests/test_train_dictionary.py not using absolute_import
Gregory Szorc
tests: add test for Python 3 compatibility...
r27279 setup.py not using absolute_import
Yuya Nishihara
test-check-py3-compat: don't run py2 part if $PYTHON is python3
r39438 #endif
Gregory Szorc
tests: perform an ast parse with Python 3...
r28583
Yuya Nishihara
test-check-py3-compat: don't run py3 part if not build against python3...
r39439 #if py3k
Yuya Nishihara
tests: alias syshg and syshgenv so they can be switched conditionally
r33199 $ testrepohg files 'set:(**.py) - grep(pygments)' \
Yuya Nishihara
demandimport: drop Py3 workarounds from Py2 implementation
r33530 > -X hgdemandimport/demandimportpy2.py \
Yuya Nishihara
tests: alias syshg and syshgenv so they can be switched conditionally
r33199 > -X hgext/fsmonitor/pywatchman \
Yuya Nishihara
test-check-py3-compat: exclude thirdparty and cffi which are known to fail...
r39421 > -X mercurial/cffi \
> -X mercurial/thirdparty \
Yuya Nishihara
test-check-py3-compat: don't run py3 part if not build against python3...
r39439 > | sed 's|\\|/|g' | xargs $PYTHON contrib/check-py3-compat.py \
Yuya Nishihara
py3: automatically glob out line numbers from check-py3-compat output...
r29810 > | sed 's/[0-9][0-9]*)$/*)/'
Yuya Nishihara
test-check-py3-compat: update "python3 check-py3-compat.py" output
r39422 hgext/convert/transport.py: error importing: <*Error> No module named 'svn.client' (error at transport.py:*) (glob) (?)
hgext/infinitepush/sqlindexapi.py: error importing: <*Error> No module named 'mysql' (error at sqlindexapi.py:*) (glob) (?)
mercurial/scmwindows.py: error importing: <ValueError> _type_ 'v' not supported (error at win32.py:*) (no-windows !)
mercurial/win32.py: error importing: <ValueError> _type_ 'v' not supported (error at win32.py:*) (no-windows !)
mercurial/windows.py: error importing: <ModuleNotFoundError> No module named 'msvcrt' (error at windows.py:*) (no-windows !)
Gregory Szorc
tests: perform an ast parse with Python 3...
r28583
#endif
Augie Fackler
py3: split check of pygments-using files from the rest of the tree...
r29886
Yuya Nishihara
test-check-py3-compat: don't run py3 part if not build against python3...
r39439 #if py3k pygments
Yuya Nishihara
tests: alias syshg and syshgenv so they can be switched conditionally
r33199 $ testrepohg files 'set:(**.py) and grep(pygments)' | sed 's|\\|/|g' \
Yuya Nishihara
test-check-py3-compat: don't run py3 part if not build against python3...
r39439 > | xargs $PYTHON contrib/check-py3-compat.py \
Augie Fackler
py3: split check of pygments-using files from the rest of the tree...
r29886 > | sed 's/[0-9][0-9]*)$/*)/'
#endif