[Zope-Perl] Re: Python pyperl

Felix Schwarz Felix.Schwarz at web.de
Fri Mar 31 13:27:47 EST 2006


anand  d schrieb:
>>>> perl.require("POSIX")
> 1
>>>> x=perl.call('import') # import is a function in POSIX.pm
> Traceback (most recent call last):
>   File "<stdin>", line 1, in ?
> perl.PerlError: Undefined subroutine &main::import called.

[fs at workstation pyperl-1.0.1c]$ perldoc POSIX  | grep import
[fs at workstation pyperl-1.0.1c]$

I don't see a POSIX::import function in perldoc. Please show us your
Perl code you try to write. Is it something like:

----------------
require POSIX;
import POSIX;
print clock(),"\n";
----------------

This can be achieved by:
import perl
perl.require("POSIX")
perl.eval('import POSIX; print clock(),"\n";')

If you find bugs, please provide a testcase for it (see the 't'
directory for examples).

-- 
Felix



More information about the Zope-perl mailing list