Changeset 388 for python/vendor/current/Python/frozen.c
- Timestamp:
- Mar 19, 2014, 11:11:30 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/vendor/current/Python/frozen.c
r2 r388 13 13 14 14 static unsigned char M___hello__[] = { 15 16 17 18 19 20 21 15 99,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0, 16 0,115,9,0,0,0,100,0,0,71,72,100,1,0,83,40, 17 2,0,0,0,115,14,0,0,0,72,101,108,108,111,32,119, 18 111,114,108,100,46,46,46,78,40,0,0,0,0,40,0,0, 19 0,0,40,0,0,0,0,40,0,0,0,0,115,8,0,0, 20 0,104,101,108,108,111,46,112,121,115,1,0,0,0,63,1, 21 0,0,0,115,0,0,0,0, 22 22 }; 23 23 … … 25 25 26 26 static struct _frozen _PyImport_FrozenModules[] = { 27 28 29 30 31 32 27 /* Test module */ 28 {"__hello__", M___hello__, SIZE}, 29 /* Test package (negative size indicates package-ness) */ 30 {"__phello__", M___hello__, -SIZE}, 31 {"__phello__.spam", M___hello__, SIZE}, 32 {0, 0, 0} /* sentinel */ 33 33 }; 34 34
Note:
See TracChangeset
for help on using the changeset viewer.