File pypy-1.2-suppress-mandelbrot-set-during-tty-build.patch of Package pypy3
Index: pypy-5.1.0-src/rpython/tool/ansi_print.py
===================================================================
--- pypy-5.1.0-src.orig/rpython/tool/ansi_print.py
+++ pypy-5.1.0-src/rpython/tool/ansi_print.py
@@ -67,11 +67,7 @@ class AnsiLogger(object):
def dot(self):
"""Output a mandelbrot dot to the terminal."""
- global wrote_dot
- if not wrote_dot:
- mandelbrot_driver.reset()
- wrote_dot = True
- mandelbrot_driver.dot()
+ pass
def debug(self, info):
"""For messages that are dropped. Can be monkeypatched in tests."""