root / trunk / pysoy / src / _internals / __init__.pym

Revision 1393, 1.2 kB (checked in by ArcRiley, 7 days ago)

Happy New Year! (copyright string update)

  • Property svn:keywords set to Author Date Rev
Line 
1'''PySoy _internals
2
3This module is for use by PySoy internals only.  No public interface is
4available, in fact, you may very well break something by experimenting.
5
6If you're curious use help() on these to see what these classes do.
7'''
8__credits__ = '''Copyright (C) 2006,2007,2008,2009 PySoy Group
9
10    This program is free software; you can redistribute it and/or modify
11    it under the terms of the GNU Affero General Public License as published
12    by the Free Software Foundation, either version 3 of the License, or
13    (at your option) any later version.
14
15    This program is distributed in the hope that it will be useful,
16    but WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18    GNU Affero General Public License for more details.
19
20    You should have received a copy of the GNU Affero General Public License
21    along with this program; if not, see http://www.gnu.org/licenses
22'''
23__author__  = 'PySoy Group'
24__date__    = 'Last change on '+ \
25              '$Date$'[7:-20]+ \
26              'by '+'$Author$'[9:-2]
27__version__ = 'Trunk (r'+'$Rev$'[6:-2]+')'
28
29cimport py
30cimport stdio
31
32IF UNAME_SYSNAME == "Windows":
33  cimport windows
34ELSE:
35  cimport posix
Note: See TracBrowser for help on using the browser.