From f263233ccbf7b06cf9e44d5da2b2dfb4f11650c3 Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Mon, 26 Sep 2005 06:20:28 +0000 Subject: [PATCH] =?utf8?q?Estructura=20b=C3=A1sica?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/template.py | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 src/template.py diff --git a/src/template.py b/src/template.py new file mode 100644 index 0000000..d855b26 --- /dev/null +++ b/src/template.py @@ -0,0 +1,31 @@ +#!/usr/bin/env python +# -*- coding: iso-8859-1 -*- +# vim: set expandtab tabstop=4 shiftwidth=4 : +#---------------------------------------------------------------------------- +# Weathemulator +#---------------------------------------------------------------------------- +# This file is part of weathemulator. +# +# weathemulator is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by the Free +# Software Foundation; either version 2 of the License, or (at your option) +# any later version. +# +# weathemulator is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY +# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for +# more details. +# +# You should have received a copy of the GNU General Public License along +# with weathemulator; if not, write to the Free Software Foundation, Inc., 59 +# Temple Place, Suite 330, Boston, MA 02111-1307 USA +#---------------------------------------------------------------------------- +# Creado: vie sep 23 01:22:33 ART 2005 +# Autores: Leandro Lucarella +#---------------------------------------------------------------------------- + +if __name__ == '__main__': + print "Probablmente no deberías estar ejecutando esto, o deberías " \ + "escribir un testcase!" + pass + -- 2.43.0