in reply to Re: Trash in my prints
in thread Trash in my prints

That's a bug in mod_perl. Even if it's documented, it's still a bug. It's a bug in the design.

Replies are listed 'Best First'.
Re^3: Trash in my prints
by Anonymous Monk on Aug 19, 2011 at 12:06 UTC

    That's a bug in mod_perl. Even if it's documented, it's still a bug. It's a bug in the design.

    It is neither

    It is a perl feature, see binmode

      Really? *My* perl doesn't go adding nonsense onto the end of my print()s unless I tell it to:
      $ perl -e 'print "foo"'|hexdump -C 00000000 66 6f 6f ... |foo| 00000003
      binmode() makes no difference.