Guido van Rossum | 582646a | 1996-05-28 22:30:17 +0000 | [diff] [blame] | 1 | /*********************************************************** |
| 2 | Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, |
| 3 | The Netherlands. |
| 4 | |
| 5 | All Rights Reserved |
| 6 | |
Guido van Rossum | d266eb4 | 1996-10-25 14:44:06 +0000 | [diff] [blame] | 7 | Permission to use, copy, modify, and distribute this software and its |
| 8 | documentation for any purpose and without fee is hereby granted, |
Guido van Rossum | 582646a | 1996-05-28 22:30:17 +0000 | [diff] [blame] | 9 | provided that the above copyright notice appear in all copies and that |
Guido van Rossum | d266eb4 | 1996-10-25 14:44:06 +0000 | [diff] [blame] | 10 | both that copyright notice and this permission notice appear in |
Guido van Rossum | 582646a | 1996-05-28 22:30:17 +0000 | [diff] [blame] | 11 | supporting documentation, and that the names of Stichting Mathematisch |
Guido van Rossum | d266eb4 | 1996-10-25 14:44:06 +0000 | [diff] [blame] | 12 | Centrum or CWI or Corporation for National Research Initiatives or |
| 13 | CNRI not be used in advertising or publicity pertaining to |
| 14 | distribution of the software without specific, written prior |
| 15 | permission. |
Guido van Rossum | 582646a | 1996-05-28 22:30:17 +0000 | [diff] [blame] | 16 | |
Guido van Rossum | d266eb4 | 1996-10-25 14:44:06 +0000 | [diff] [blame] | 17 | While CWI is the initial source for this software, a modified version |
| 18 | is made available by the Corporation for National Research Initiatives |
| 19 | (CNRI) at the Internet address ftp://ftp.python.org. |
| 20 | |
| 21 | STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH |
| 22 | REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF |
| 23 | MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH |
| 24 | CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL |
| 25 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR |
| 26 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER |
| 27 | TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR |
| 28 | PERFORMANCE OF THIS SOFTWARE. |
Guido van Rossum | 582646a | 1996-05-28 22:30:17 +0000 | [diff] [blame] | 29 | |
| 30 | ******************************************************************/ |
| 31 | |
| 32 | /* Dummy frozen modules initializer */ |
| 33 | |
| 34 | #include "Python.h" |
| 35 | |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 36 | /* In order to test the support for frozen modules, by default we |
| 37 | define a single frozen module, __hello__. Loading it will print |
| 38 | some famous words... */ |
| 39 | |
| 40 | static unsigned char M___hello__[] = { |
Guido van Rossum | 019db5d | 1997-07-19 21:54:24 +0000 | [diff] [blame] | 41 | 99,0,0,0,0,1,0,0,0,115,15,0,0,0,127,0, |
| 42 | 0,127,1,0,100,0,0,71,72,100,1,0,83,40,2,0, |
| 43 | 0,0,115,14,0,0,0,72,101,108,108,111,32,119,111,114, |
| 44 | 108,100,46,46,46,78,40,0,0,0,0,40,0,0,0,0, |
| 45 | 115,8,0,0,0,104,101,108,108,111,46,112,121,115,1,0, |
| 46 | 0,0,63,1,0,115,0,0,0,0, |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 47 | }; |
| 48 | |
Guido van Rossum | 7c46a92 | 1996-06-17 17:07:23 +0000 | [diff] [blame] | 49 | static struct _frozen _PyImport_FrozenModules[] = { |
Guido van Rossum | f015e18 | 1998-04-03 21:10:36 +0000 | [diff] [blame] | 50 | /* Test module */ |
Guido van Rossum | 019db5d | 1997-07-19 21:54:24 +0000 | [diff] [blame] | 51 | {"__hello__", M___hello__, 90}, |
Guido van Rossum | f015e18 | 1998-04-03 21:10:36 +0000 | [diff] [blame] | 52 | /* Test package (negative size indicates package-ness) */ |
| 53 | {"__phello__", M___hello__, -90}, |
| 54 | {"__phello__.spam", M___hello__, 90}, |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 55 | {0, 0, 0} /* sentinel */ |
| 56 | }; |
Guido van Rossum | 7c46a92 | 1996-06-17 17:07:23 +0000 | [diff] [blame] | 57 | |
| 58 | /* Embedding apps may change this pointer to point to their favorite |
| 59 | collection of frozen modules: */ |
| 60 | |
| 61 | struct _frozen *PyImport_FrozenModules = _PyImport_FrozenModules; |