We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f295ac commit b039967Copy full SHA for b039967
mypyc/test/test_emitfunc.py
@@ -829,7 +829,7 @@ def test_inc_ref_int_literal(self) -> None:
829
def test_c_string(self) -> None:
830
s = Register(cstring_rprimitive, "s")
831
self.assert_emit(Assign(s, CString(b"foo")), """cpy_r_s = "foo";""")
832
- self.assert_emit(Assign(s, CString(b'fo "o')), r"""cpy_r_s = "fo \"o";""")
+ self.assert_emit(Assign(s, CString(b'foo "o')), r"""cpy_r_s = "foo \"o";""")
833
self.assert_emit(Assign(s, CString(b"\x00")), r"""cpy_r_s = "\x00";""")
834
self.assert_emit(Assign(s, CString(b"\\")), r"""cpy_r_s = "\\";""")
835
for i in range(256):
0 commit comments