On 3-Aug-07, at 11:17 AM, Michael Tobis wrote: > 2) Would it be difficult to provide an alternative interpreter that > produced nothing unless you asked it to print? Would this be a good > idea?
>>> 'abc' 'abc' >>> import sys >>> def f(value): pass ... >>> sys.displayhook = f >>> 'abc' >>> So if you add a do-nothing displayhook in your site.py, or as part of a standard local import, you won't have the echo behaviour. HTH --Dethe "It goes against the grain of modern education to teach children to program. What fun is there in making plans, acquiring discipline in organizing thoughts, devoting attention to detail and learning to be self-critical?" --Alan Perlis _______________________________________________ Edu-sig mailing list [email protected] http://mail.python.org/mailman/listinfo/edu-sig
