##// END OF EJS Templates
pycompat: custom implementation of urllib.parse.quote()...
pycompat: custom implementation of urllib.parse.quote() urllib.parse.quote() accepts either str or bytes and returns str. There exists a urllib.parse.quote_from_bytes() which only accepts bytes. We should probably use that to retain strong typing and avoid surprises. In addition, since nearly all strings in Mercurial are bytes, we probably don't want quote() returning unicode. So, this patch implements a custom quote() that only accepts bytes and returns bytes. The quoted URL should only contain URL safe characters which is a strict subset of ASCII. So `.encode('ascii', 'strict')` should be safe.

File last commit:

r30647:1914db1b stable
r31400:fb1f7033 default
Show More
test-demandimport.py.out
23 lines | 910 B | text/plain | TextLexer
/ tests / test-demandimport.py.out
Martin Geisler
tests: renamed Python tests to .py
r8449 os = <unloaded module 'os'>
os.system = <built-in function system>
os = <module 'os' from '?'>
util = <unloaded module 'util'>
util.system = <function system at 0x?>
util = <module 'mercurial.util' from '?'>
util.system = <function system at 0x?>
Bryan O'Sullivan
test-demandimport: ensure that relative imports are deferred...
r27535 hgweb = <unloaded module 'hgweb'>
hgweb_mod = <unloaded module 'hgweb_mod'>
hgweb = <module 'mercurial.hgweb' from '?'>
Martin Geisler
tests: renamed Python tests to .py
r8449 fred = <unloaded module 're'>
re = <unloaded module 'sys'>
fred = <unloaded module 're'>
fred.sub = <function sub at 0x?>
fred = <proxied module 're'>
re = <unloaded module 'sys'>
Dan Villiom Podlaski Christiansen
test-demandimport.py: PyPy support...
r13083 re.stderr = <open file '<whatever>', mode 'w' at 0x?>
Martin Geisler
tests: renamed Python tests to .py
r8449 re = <proxied module 'sys'>
Yuya Nishihara
demandimport: error out early on missing attribute of non package (issue5373)...
r30022 contextlib = <unloaded module 'contextlib'>
contextlib.unknownattr = ImportError: cannot import name unknownattr
Yuya Nishihara
demandimport: do not raise ImportError for unknown item in fromlist...
r30647 __import__('contextlib', ..., ['unknownattr']) = <module 'contextlib' from '?'>
hasattr(contextlibimp, 'unknownattr') = False
Mads Kiilerich
demandimport: make it possible to disable by setting HGDEMANDIMPORT=disable...
r21025 node = <module 'mercurial.node' from '?'>