Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:

Does anyone know where I might find the Carp::Heavy module for win32 platforms?

I've had no luck with CPAN or using PPM

Thanks

Replies are listed 'Best First'.
Re: Unable to locate Carp::Heavy for Win32
by PodMaster (Abbot) on Mar 07, 2003 at 19:57 UTC
    Why? You must be confused
    C:\>perldoc Carp::Heavy NAME Carp::Heavy - Carp guts SYNOPIS (internal use only) DESCRIPTION No user-serviceable parts inside.
    use Carp; (it is a standard perl module)


    MJD says you can't just make shit up and expect the computer to know what you mean, retardo!
    I run a Win32 PPM repository for perl 5.6x+5.8x. I take requests.
    ** The Third rule of perl club is a statement of fact: pod is sexy.

Re: Unable to locate Carp::Heavy for Win32
by Anonymous Monk on Mar 07, 2003 at 18:19 UTC
    Well I think I found a temporary solution:

    I changed:

    { local $@; require Carp::Heavy; } # XXX fix require to: { local $@; use Carp::Heavy; } # XXX fix require
    And now it's not complaining anymore

      Somebody has to ask: Whats wrong with

      use Carp;

      ?!?


      ---
      demerphq