Mercurial > hg > octave-nkf
comparison scripts/miscellaneous/python.m @ 13859:6d59b141e65d
Add python to manual and respect format rules of copyright block
author | Carnë Draug <carandraug+dev@gmail.com> |
---|---|
date | Mon, 31 Oct 2011 01:05:41 +0000 |
parents | 2ca9730d35ba |
children | 72c96de7a403 |
comparison
equal
deleted
inserted
replaced
13858:55ab001af1b8 | 13859:6d59b141e65d |
---|---|
1 ## Copyright (C) 2008-2011 Julian Schnidder | 1 ## Copyright (C) 2008-2011 Julian Schnidder |
2 ## Copyright (C) 2011 Carnë Draug <carandraug+dev@gmail.com> | 2 ## Copyright (C) 2011 Carnë Draug |
3 ## | 3 ## |
4 ## This file is part of Octave. | 4 ## This file is part of Octave. |
5 ## | 5 ## |
6 ## Octave is free software; you can redistribute it and/or modify it | 6 ## Octave is free software; you can redistribute it and/or modify it |
7 ## under the terms of the GNU General Public License as published by | 7 ## under the terms of the GNU General Public License as published by |
25 ## Returns output in @var{output} and status | 25 ## Returns output in @var{output} and status |
26 ## in @var{status}. | 26 ## in @var{status}. |
27 ## @seealso{system} | 27 ## @seealso{system} |
28 ## @end deftypefn | 28 ## @end deftypefn |
29 | 29 |
30 ## Author: Carnë Draug <carandraug+dev@gmail.com> | |
31 | |
30 function [output, status] = python (scriptfile = "-c ''", varargin) | 32 function [output, status] = python (scriptfile = "-c ''", varargin) |
31 | 33 |
32 ## VARARGIN is intialized to {}(1x0) if no additional arguments are | 34 ## VARARGIN is intialized to {}(1x0) if no additional arguments are |
33 ## supplied, so there is no need to check for it, or provide an | 35 ## supplied, so there is no need to check for it, or provide an |
34 ## initial value in the argument list of the function definition. | 36 ## initial value in the argument list of the function definition. |