From 5c597ce1f9c4e9c1dccd8b84ed449c09932773d2 Mon Sep 17 00:00:00 2001 From: timotheyca Date: Mon, 26 Jul 2021 19:24:02 +0300 Subject: [PATCH] =?UTF-8?q?=E2=80=B9call=E2=80=BA=E2=80=B9call=E2=80=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bu4/parsing/toolchain/transply.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bu4/parsing/toolchain/transply.py b/bu4/parsing/toolchain/transply.py index 015ca61..42faac3 100644 --- a/bu4/parsing/toolchain/transply.py +++ b/bu4/parsing/toolchain/transply.py @@ -14,7 +14,7 @@ def transply(source: str) -> bytes: pass elif c in '/': b.write(bytes([CODE_CALL])) - elif c in '{': + elif c in '{‹': b.write(bytes([CODE_CALL, CODE_QOPN])) elif c in '(': b.write(bytes([CODE_MAKE])) @@ -34,7 +34,7 @@ def transply(source: str) -> bytes: b.write(bytes([CODE_QUOT])) elif c in '<': b.write(bytes([CODE_QOPN])) - elif c in '>': + elif c in '>›': b.write(bytes([CODE_QCLS])) else: value = c.encode()