diff options
author | Benjamin Peterson <benjamin@python.org> | 2013-03-13 19:06:39 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2013-03-13 19:06:39 (GMT) |
commit | 7701e6ef93be47b6d9646321ff95530653097d68 (patch) | |
tree | ff3b21ece3419a59035ce91526f022a4c45b915c /Python/frozen.c | |
parent | 327992330e13cd6663faa8400f9ff46daab828b0 (diff) | |
download | cpython-7701e6ef93be47b6d9646321ff95530653097d68.zip cpython-7701e6ef93be47b6d9646321ff95530653097d68.tar.gz cpython-7701e6ef93be47b6d9646321ff95530653097d68.tar.bz2 |
make some freezing related stuff const
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 25fdc17..9bc662b 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; |