##// END OF EJS Templates
context: add an assertion checking linerange consistency in blockdescendants()...
context: add an assertion checking linerange consistency in blockdescendants() If this assertion fails, this indicates a flaw in the algorithm. So fail fast instead of possibly producing wrong results. Also extend the target line range in test to catch a merge changeset with all its parents.

File last commit:

r30647:1914db1b stable
r31991:55987fc8 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 '?'>