From 94d03915854ee6ca1493f5c22f8300580cdd6bfd Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Fri, 14 Jun 2024 16:12:22 -0400 Subject: [PATCH] xo-pyjit: minor -- drop printing to procrastinate on compiler nit --- README.md | 2 ++ src/pyjit/pyjit.cpp | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f78c49fd..1f46c9a5 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,8 @@ $ xo-build --clone --configure --build --install xo-jit $ xo-build --clone --configure --build --install xo-pyutil $ xo-build --clone --configure --build --install xo-pyexpression ``` +note: can use `xo-build -n` to dry-run here + ### copy `xo-pyjit` repository locally ``` $ xo-build --clone xo-pyjit diff --git a/src/pyjit/pyjit.cpp b/src/pyjit/pyjit.cpp index a8a532ec..db202824 100644 --- a/src/pyjit/pyjit.cpp +++ b/src/pyjit/pyjit.cpp @@ -46,8 +46,8 @@ namespace xo { x.print(ss); return buf; }) - .def("__repr__", - &Jit::display_string) +// .def("__repr__", +// &Jit::display_string) ; }