diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2019-12-02 13:09:17 +0300 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2019-12-02 13:09:17 +0300 |
commit | 38fde63f74091af1f6a0d485474769bb6b4f17ce (patch) | |
tree | 1317a1fa2ef61c710ff5c653f43c0af8bb164ca6 /debian/patches/noise | |
download | pypy-debian.tar.gz |
Import pypy (7.2.0+dfsg-1)debian/7.2.0+dfsg-1debian
Diffstat (limited to 'debian/patches/noise')
-rw-r--r-- | debian/patches/noise | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/debian/patches/noise b/debian/patches/noise new file mode 100644 index 0000000..2693d75 --- /dev/null +++ b/debian/patches/noise @@ -0,0 +1,24 @@ +From: Stefano Rivera <stefanor@debian.org> +Date: Sat, 7 Oct 2017 09:38:58 +0200 +Subject: Always output the mandelbrot + +So that our buildds see progress + +Forwarded: not-needed +--- + rpython/tool/ansi_print.py | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/rpython/tool/ansi_print.py b/rpython/tool/ansi_print.py +index bfa40be..22ab296 100644 +--- a/rpython/tool/ansi_print.py ++++ b/rpython/tool/ansi_print.py +@@ -7,7 +7,7 @@ from py.io import ansi_print + from rpython.tool.ansi_mandelbrot import Driver + + +-isatty = getattr(sys.stderr, 'isatty', lambda: False) ++isatty = lambda: True + mandelbrot_driver = Driver() + wrote_dot = False # global shared state + |