Use "l LWP::UserAgent::new" and/or "b LWP::UserAgent::new" to save yourself a lot of typing:

% perl -del Loading DB routines from perl5db.pl version 1.33 ... DB<1> use LWP::UserAgent DB<2> l LWP::UserAgent::new Switching to file '.../lib/LWP/UserAgent.pm'. 31 { 32 # Check for common user mistake 33: Carp::croak("Options to LWP::UserAgent should be key/value + pairs, no t hash reference") 34 if ref($_[1]) eq 'HASH'; 35 36: my($class, %cnf) = @_; 37 38: my $agent = delete $cnf{agent}; 39: my $from = delete $cnf{from}; 40: my $def_headers = delete $cnf{default_headers}; DB<3> l 30 30 sub new DB<4> b LWP::UserAgent::new DB<5> L .../lib/LWP/UserAgent.pm: 33: Carp::croak("Options to LWP::UserAgent should be key/value + pairs, not hash reference") break if (1) DB<6>

- tye        


In reply to Re: Using the debugger's R command to debug "hard" problems (l,b w/ ::) by tye
in thread Using the debugger's R command to debug "hard" problems by pemungkah

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.