in reply to end of the line
Maybe the part you're confused about is that when you use the "verbose" setting on Carp, the error messages include not only what the module author wants to say but also the full content of @_ as it was passed to the failing subroutine.
So, the string in $data really is being split on "\n" (which really is the same as \x{a}), but the Carp output isn't showing you the results of the split -- it's showing you what args were passed to the subroutine, and (I presume) the error message provided by the author.
If you were to modify the source code, so that the message would be "Can't handle type <<$type>> things, only !Type:Bank", I think the problem would become clear.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: end of the line
by RandomWalk (Beadle) on Sep 10, 2004 at 03:33 UTC |