test/data/scripts/script1.py
author Rémi Cardona <remi.cardona@logilab.fr>
Thu, 17 Oct 2013 10:30:35 +0200
branchstable
changeset 9297 9a44436cd5a5
parent 6631 26c303c3f1aa
permissions -rw-r--r--
[dbapi] Fix broken inmemory:// URLs parsing (closes #3225832) ParseResult.path is what comes after the "domain name" in standard URLs. So in the case of 'inmemory://<instance' URLs, it is always empty. ParseResult.netloc contains the "domain name" part that we really want.

from os.path import join
assert __file__.endswith(join('scripts', 'script1.py')), __file__
assert '__main__' == __name__, __name__
assert [] == __args__, __args__