blob: d97acf483eb9346cb3443e3e65f1be7577e3d0fa [file] [log] [blame]
Guido van Rossum582646a1996-05-28 22:30:17 +00001/***********************************************************
2Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
3The Netherlands.
4
5 All Rights Reserved
6
Guido van Rossumd266eb41996-10-25 14:44:06 +00007Permission to use, copy, modify, and distribute this software and its
8documentation for any purpose and without fee is hereby granted,
Guido van Rossum582646a1996-05-28 22:30:17 +00009provided that the above copyright notice appear in all copies and that
Guido van Rossumd266eb41996-10-25 14:44:06 +000010both that copyright notice and this permission notice appear in
Guido van Rossum582646a1996-05-28 22:30:17 +000011supporting documentation, and that the names of Stichting Mathematisch
Guido van Rossumd266eb41996-10-25 14:44:06 +000012Centrum or CWI or Corporation for National Research Initiatives or
13CNRI not be used in advertising or publicity pertaining to
14distribution of the software without specific, written prior
15permission.
Guido van Rossum582646a1996-05-28 22:30:17 +000016
Guido van Rossumd266eb41996-10-25 14:44:06 +000017While CWI is the initial source for this software, a modified version
18is made available by the Corporation for National Research Initiatives
19(CNRI) at the Internet address ftp://ftp.python.org.
20
21STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
22REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
23MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
24CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
25DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
26PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
27TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
28PERFORMANCE OF THIS SOFTWARE.
Guido van Rossum582646a1996-05-28 22:30:17 +000029
30******************************************************************/
31
32/* Dummy frozen modules initializer */
33
34#include "Python.h"
35
Guido van Rossum667d7041995-08-04 04:20:48 +000036/* 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
40static unsigned char M___hello__[] = {
Guido van Rossum019db5d1997-07-19 21:54:24 +000041 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 Rossum667d7041995-08-04 04:20:48 +000047};
48
Guido van Rossum7c46a921996-06-17 17:07:23 +000049static struct _frozen _PyImport_FrozenModules[] = {
Guido van Rossumf015e181998-04-03 21:10:36 +000050 /* Test module */
Guido van Rossum019db5d1997-07-19 21:54:24 +000051 {"__hello__", M___hello__, 90},
Guido van Rossumf015e181998-04-03 21:10:36 +000052 /* Test package (negative size indicates package-ness) */
53 {"__phello__", M___hello__, -90},
54 {"__phello__.spam", M___hello__, 90},
Guido van Rossum667d7041995-08-04 04:20:48 +000055 {0, 0, 0} /* sentinel */
56};
Guido van Rossum7c46a921996-06-17 17:07:23 +000057
58/* Embedding apps may change this pointer to point to their favorite
59 collection of frozen modules: */
60
61struct _frozen *PyImport_FrozenModules = _PyImport_FrozenModules;