in reply to Re^2: ref() and Regexp (blessed)
in thread ref() and Regexp

You can also make an optional dependency on Data::Dump::Streamer rather easily. Using MakeMaker, you'd only document that the user installing Data::Dump::Streamer would allow blessed regexes to be used. Using Module::Build, I think the optional dependency could be declared such that the plethora of automated installation tools can decide to ask the user if they want to install it.

I don't know what did or didn't change in 5.010, but I'd jump to the same conclusion as you for the same reasons.

- tye        

Replies are listed 'Best First'.
Re^4: ref() and Regexp (blessed)
by ysth (Canon) on Jan 31, 2008 at 18:20 UTC
    In 5.10, DDS isn't needed: re::is_regexp and re::regexp_pattern are available in core. (The latter requires use'ing re; the former doesn't.)