vote up 0 vote down star

This relates to a previous question: How can I read Perl data structures from Python?. It could be a bug in the version of the YAML parser that I'm working with (0.66), but when I run:

perl -MYAML -le 'do shift; print YAML::Dump( $CPAN::Config )' simple.pl

On the following simple.pl:

%config = (
    'color' => 'red',
    'numbers' => [5, 8],
    qr/^spam/ => qr/eggs$/,
);

I get:

---
(?-xism:^spam): !!perl/regexp (?-xism:eggs$)
color: red
numbers:
  - 5
  - 8

Note that the key regex doesn't have the explicit type. What gives? (Thanks!)

flag

I would recommend Yaml::XS – Brad Gilbert Jan 6 '09 at 18:56
Alternatively, YAML::Any uses the best available YAML module on your system (either YAML::XS, YAML::Syck, YAML::Old, YAML or YAML::Tiny, in that order). – mirod Jan 6 '09 at 22:18

1 Answer

vote up 4 vote down check

From man perldata:

Hashes are unordered collections of scalar values indexed by their associated string key.

The keys don't have a type in the YAML dump because they don't have a type in Perl. They are just strings. In you case the string (?-xism:^spam)

Try this: perl -l -e'%config = ( qr/^spam/ => qr/eggs$/); print $config{"(?-xism:^spam)"}'

link|flag
Excellent reason! :-) I figured they were just immutable objects - my brain gets stuck in Python land sometimes. – cdleary Jan 7 '09 at 6:23

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.