3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-27 05:26:01 +00:00

more output

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2025-08-24 14:49:56 -07:00
parent 867bc6aee6
commit be22111df5

View file

@ -118,7 +118,7 @@ def _z3_version():
dirs = [SRC_DIR, ROOT_DIR, SRC_DIR_REPO, SRC_DIR_LOCAL, os.path.join(ROOT_DIR, '..', '..')] dirs = [SRC_DIR, ROOT_DIR, SRC_DIR_REPO, SRC_DIR_LOCAL, os.path.join(ROOT_DIR, '..', '..')]
fns = [os.path.join(d, 'VERSION.txt') for d in dirs] fns = [os.path.join(d, 'VERSION.txt') for d in dirs]
for fn in fns: for fn in fns:
print("loading version file", fn) print("loading version file", fn, "exists", os.path.exists(fn))
if os.path.exists(fn): if os.path.exists(fn):
with open(fn) as f: with open(fn) as f:
for line in f: for line in f: