2015-01-20 19:13:09 +01:00
|
|
|
#!/usr/bin/env perl
|
|
|
|
|
2017-03-05 22:33:31 +01:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
2015-01-20 19:13:09 +01:00
|
|
|
use warnings;
|
|
|
|
use strict;
|
|
|
|
|
|
|
|
package python3;
|
|
|
|
use parent '_default';
|
|
|
|
|
|
|
|
sub initialize {
|
|
|
|
my ($self, %conf) = @_;
|
|
|
|
|
|
|
|
$self->{sourcefile} = 'prog.py3';
|
|
|
|
$self->{execfile} = 'prog.py3';
|
|
|
|
$self->{default_options} = '';
|
|
|
|
$self->{cmdline} = 'python3 $options $sourcefile';
|
2015-01-24 04:24:39 +01:00
|
|
|
|
2017-09-16 01:41:36 +02:00
|
|
|
if (length $self->{arguments}) {
|
|
|
|
$self->{cmdline} .= " $self->{arguments}";
|
|
|
|
}
|
|
|
|
|
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-20 19:13:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
1;
|