3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-05 17:14:07 +00:00

remove \r from output

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2022-08-16 09:20:50 -07:00
parent 9d6de2f873
commit fe00e95f72

View file

@ -5,8 +5,9 @@ import re
Z3_EXE = "z3.exe"
def help():
print("Z3 Options Enabled")
def help(ous):
ous.write("Z3 Options\n")
out = subprocess.Popen([Z3_EXE, "-pm"],stdout=subprocess.PIPE).communicate()[0]
modules = []
if out != None:
@ -22,6 +23,8 @@ def help():
if out == None:
continue
out = out.decode(sys.stdout.encoding)
print(out)
out = out.replace("\r","")
ous.write(out)
help()
with open("Parameters.md",'w') as ous:
help(ous)