diff options
author | Father Chrysostomos <sprout@cpan.org> | 2011-10-30 14:33:06 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-11-06 01:13:48 -0700 |
commit | 7d7892821ccfd0b84576fc06764ec467e8ca7678 (patch) | |
tree | 8a14db3fc316b83374c8d171175537ad6e6c306e /MANIFEST | |
parent | 17e00314cad49c11dda5b621497c7010537844ea (diff) | |
download | perl-7d7892821ccfd0b84576fc06764ec467e8ca7678.tar.gz |
Add evalbytes function
This function evaluates its argument as a byte string, regardless of
the internal encoding. It croaks if the string contains characters
outside the byte range. Hence evalbytes(" use utf8; '\xc4\x80' ")
will return "\x{100}", even if the original string had the UTF8 flag
on, and evalbytes(" '\xc4\x80' ") will return "\xc4\x80".
This has the side effect of fixing the deparsing of CORE::break under
‘use feature’ when there is an override.
Diffstat (limited to 'MANIFEST')
-rw-r--r-- | MANIFEST | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -5091,6 +5091,7 @@ t/op/dor.t See if defined-or (//) works t/op/do.t See if subroutines work t/op/each_array.t See if array iterators work t/op/each.t See if hash iterators work +t/op/evalbytes.t See if evalbytes operator works t/op/eval.t See if eval operator works t/op/exec.t See if exec, system and qx work t/op/exists_sub.t See if exists(&sub) works |