diff options
author | Martin v. Loewis <martin@v.loewis.de> | 2013-03-24 22:12:19 +0100 |
---|---|---|
committer | Martin v. Loewis <martin@v.loewis.de> | 2013-03-24 22:12:19 +0100 |
commit | 650458ab36c29cfd3906f4940eabd01b8b523b5c (patch) | |
tree | 4463730700404c235bb38a2479a382a4d1c71653 /Python/frozen.c | |
parent | 29a7032a9fa9327c158d9d09a8d7a8942c4f87d5 (diff) | |
parent | e298eef2c67880b4773a6678310b066406385824 (diff) | |
download | cpython-650458ab36c29cfd3906f4940eabd01b8b523b5c.tar.gz |
merge 3.3
Diffstat (limited to 'Python/frozen.c')
-rw-r--r-- | Python/frozen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/frozen.c b/Python/frozen.c index 25fdc17b3f..9bc662b994 100644 --- a/Python/frozen.c +++ b/Python/frozen.c @@ -28,7 +28,7 @@ static unsigned char M___hello__[] = { #define SIZE (int)sizeof(M___hello__) -static struct _frozen _PyImport_FrozenModules[] = { +static const struct _frozen _PyImport_FrozenModules[] = { /* importlib */ {"_frozen_importlib", _Py_M__importlib, (int)sizeof(_Py_M__importlib)}, /* Test module */ @@ -42,4 +42,4 @@ static struct _frozen _PyImport_FrozenModules[] = { /* Embedding apps may change this pointer to point to their favorite collection of frozen modules: */ -struct _frozen *PyImport_FrozenModules = _PyImport_FrozenModules; +const struct _frozen *PyImport_FrozenModules = _PyImport_FrozenModules; |