in reply to Google Provisioning API - method not found

I think it's just malformed pod - the doubling up of "=cut" effectively hiding the sub from view:
=cut =cut sub RetrievePageOfEmailLists { . .
Cheers,
Rob

Replies are listed 'Best First'.
Re^2: Google Provisioning API - method not found
by McDarren (Abbot) on Jul 23, 2008 at 13:05 UTC
    Yes, you are absolutely right.
    I had missed that earlier, but when I went back and had another look at the module source (after posting my question *sigh*), I also noticed it.
    Getting rid of that fixes the problem.

    Cheers,
    Darren :)

      Life would be so much simpler if people would refrain from intermingling code and pod :-)

      Cheers,
      Rob
        Bite your tongue. Life would be easier if all modules included comprehensive test suites.
Re^2: Google Provisioning API - method not found
by McDarren (Abbot) on Jul 24, 2008 at 10:05 UTC
    As an aside, I today discovered another bug associated with that same module routine (after an hour or so of hair-pulling).

    The line my $start_emaillist; should be my $start_emaillist = shift;

    The effect of it not being so (pretty obvious) is that any parameter passed to the method is ignored, and the result set always starts from the first list, no matter where you ask it to start.

    I've informed the module author of both problems, hopefully he'll fix it :)