Subject: | $_ is written but not being localized |
Expect makes use of $_ in several places, like _make_readable, but does not localize it.
I got "can't modify readonly value" when doing something like this:
for (CONSTANT) {
$e->send("echo $_\n");
$e->expect($timeout, -ex => "$_\n");
}