>  $str =  '\\x{A3f4}'

please note the single quotes, it creates just the string \x{A3f4}

only two characters need to be escaped inside single-quotes ... the single-quote and consequently the escape-character, which is the backslash.

"\x{HEX}" is a notation for hex-character only inside double-quotes, so it seems someone is trying to parse code similar to Perl.

I ran the debugger with 5.32 without warnings pre-activated, I'm surprised about your errors. Looks like you ran something like perl -dwe0

And you are seeing the internal stack-trace of the debugger, I don't wanna comment on the perldebguts

The debugger is mostly written in Perl, but using hooks written in C.

I.O.W. perl5db.pl is written in Perl, but only possible because of the debugging API written in C, expecting to find functions like &DB::DB

And there are some old debugging flags available written in C, things I've never used.

Greetings from Krautland ;-)

  • Rolf

    In reply to Re^5: Unescaped left brace in regex is passed through in regex by LanX
    in thread Unescaped left brace in regex is passed through in regex by gzh

    Title:
    Use:  <p> text here (a paragraph) </p>
    and:  <code> code here </code>
    to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.