mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 09:34:08 +00:00
to ascii or not to ascii #1447
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
e7851a0637
commit
1992749e78
|
@ -1696,7 +1696,11 @@ if _lib is None:
|
|||
|
||||
def _to_ascii(s):
|
||||
if isinstance(s, str):
|
||||
return s.encode('ascii')
|
||||
try:
|
||||
return s.encode('ascii')
|
||||
except:
|
||||
# kick the bucket down the road. :-J
|
||||
return s
|
||||
else:
|
||||
return s
|
||||
|
||||
|
|
Loading…
Reference in a new issue