In StrPrinter there is def emptyPrinter(self, expr): if isinstance(expr, str): return expr elif isinstance(expr, Basic): return repr(expr) else: return str(expr)
Is `return repr(expr)` reachable if `StrPrinter` defines `_print_Basic` that prints all `Basic` objects? -- You received this message because you are subscribed to the Google Groups "sympy" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/sympy/718ba707-4e22-4a0c-9068-fc9346874b96n%40googlegroups.com.
