Re: Overriding CORE::GLOBAL::print

2007-10-28 Thread Chris Dolan
On Oct 28, 2007, at 6:12 PM, Scott McWhirter wrote: You could use an IO::Handle based object wrapped around STDOUT/STDERR. It doesn't really matter whether it's a glob filehandle or an IO::Handle or a tied handle. The important part is the select() which lets you avoid changing each and e

Re: Overriding CORE::GLOBAL::print

2007-10-28 Thread Scott McWhirter
You could use an IO::Handle based object wrapped around STDOUT/STDERR. On 10/28/07, Chris Dolan <[EMAIL PROTECTED]> wrote: > On Oct 28, 2007, at 9:31 AM, A. Pagaltzis wrote: > > > * Matisse Enzer <[EMAIL PROTECTED]> [2007-10-27 21:20]: > >> I suppose we need to bite the bullet and just find and re

Re: Overriding CORE::GLOBAL::print

2007-10-28 Thread Chris Dolan
On Oct 28, 2007, at 9:31 AM, A. Pagaltzis wrote: * Matisse Enzer <[EMAIL PROTECTED]> [2007-10-27 21:20]: I suppose we need to bite the bullet and just find and replace all the calls to 'print' with something else. Select a tied filehandle? Not efficient… but quick to add. That's a popular t

Re: Overriding CORE::GLOBAL::print

2007-10-28 Thread A. Pagaltzis
* Matisse Enzer <[EMAIL PROTECTED]> [2007-10-27 21:20]: > I suppose we need to bite the bullet and just find and replace > all the calls to 'print' with something else. Select a tied filehandle? Not efficient… but quick to add. Regards, -- Aristotle Pagaltzis //