##// END OF EJS Templates
fix: clone-url test for mercurial uses a consistent and strict non-interactive mode so we never will see password prompts
fix: clone-url test for mercurial uses a consistent and strict non-interactive mode so we never will see password prompts

File last commit:

r1250:2c57bb5b default
r1263:3fe73e54 default
Show More
ext_json.py
14 lines | 294 B | text/x-python | PythonLexer
import json as stdlib_json
try:
# we keep simplejson for having dump functionality still
# orjson doesn't support it
import simplejson as sjson
except ImportError:
sjson = stdlib_json
try:
import orjson
import orjson as json
except ImportError:
json = stdlib_json