[pypy-svn] r35634 - pypy/dist/pypy/tool/build
afayolle at codespeak.net
afayolle at codespeak.net
Tue Dec 12 16:03:14 CET 2006
Author: afayolle
Date: Tue Dec 12 16:03:13 2006
New Revision: 35634
Modified:
pypy/dist/pypy/tool/build/client.py
Log:
added isatty method on OutputBuffer (to satisfy ansi_print)
Modified: pypy/dist/pypy/tool/build/client.py
==============================================================================
--- pypy/dist/pypy/tool/build/client.py (original)
+++ pypy/dist/pypy/tool/build/client.py Tue Dec 12 16:03:13 2006
@@ -140,3 +140,5 @@
def getvalue(self):
return self.buffer.getvalue()
+ def isatty(self):
+ return False
More information about the pypy-svn
mailing list