2015-01-19 03:36:57 +01:00
|
|
|
#!/usr/bin/env perl
|
|
|
|
|
|
|
|
use warnings;
|
|
|
|
use strict;
|
|
|
|
|
|
|
|
package python;
|
|
|
|
use parent '_default';
|
|
|
|
|
|
|
|
sub initialize {
|
|
|
|
my ($self, %conf) = @_;
|
|
|
|
|
|
|
|
$self->{sourcefile} = 'prog.py';
|
|
|
|
$self->{execfile} = 'prog.py';
|
|
|
|
$self->{default_options} = '';
|
|
|
|
$self->{cmdline} = 'python $options $sourcefile';
|
2015-01-24 04:24:39 +01:00
|
|
|
|
|
|
|
$self->{cmdline_opening_comment} = "'''\n=============== CMDLINE ===============\n";
|
|
|
|
$self->{cmdline_closing_comment} = "=============== CMDLINE ===============\n'''\n";
|
|
|
|
|
|
|
|
$self->{output_opening_comment} = "'''\n=============== OUTPUT ===============\n";
|
|
|
|
$self->{output_closing_comment} = "=============== OUTPUT ===============\n'''\n";
|
2015-01-19 03:36:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
1;
|