pbot/modules/compiler_vm/languages/python.pm

25 lines
657 B
Perl
Raw Normal View History

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';
$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;