|
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 | |
|---|
| 3 | This module is for use by PySoy internals only. No public interface is |
|---|
| 4 | available, in fact, you may very well break something by experimenting. |
|---|
| 5 | |
|---|
| 6 | If 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 | |
|---|
| 29 | cimport py |
|---|
| 30 | cimport stdio |
|---|
| 31 | |
|---|
| 32 | IF UNAME_SYSNAME == "Windows": |
|---|
| 33 | cimport windows |
|---|
| 34 | ELSE: |
|---|
| 35 | cimport posix |
|---|