mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
bpo-45019: Clean up the frozen __hello__ module. (gh-28374)
Here's one more small cleanup that should have been in PR gh-28319. We eliminate stdout side-effects from importing the frozen __hello__ module, and update tests accordingly. We also move the module's source file into Lib/ from Toos/freeze/flag.py. https://bugs.python.org/issue45019
This commit is contained in:
parent
d081eab7df
commit
3814e2036d
12 changed files with 76 additions and 50 deletions
|
@ -49,7 +49,7 @@
|
|||
#include "frozen_modules/ntpath.h"
|
||||
#include "frozen_modules/posixpath.h"
|
||||
#include "frozen_modules/stat.h"
|
||||
#include "frozen_modules/hello.h"
|
||||
#include "frozen_modules/__hello__.h"
|
||||
/* End includes */
|
||||
|
||||
/* Note that a negative size indicates a package. */
|
||||
|
@ -74,9 +74,9 @@ static const struct _frozen _PyImport_FrozenModules[] = {
|
|||
{"stat", _Py_M__stat, (int)sizeof(_Py_M__stat)},
|
||||
|
||||
/* Test module */
|
||||
{"__hello__", _Py_M__hello, (int)sizeof(_Py_M__hello)},
|
||||
{"__phello__", _Py_M__hello, -(int)sizeof(_Py_M__hello)},
|
||||
{"__phello__.spam", _Py_M__hello, (int)sizeof(_Py_M__hello)},
|
||||
{"__hello__", _Py_M____hello__, (int)sizeof(_Py_M____hello__)},
|
||||
{"__phello__", _Py_M____hello__, -(int)sizeof(_Py_M____hello__)},
|
||||
{"__phello__.spam", _Py_M____hello__, (int)sizeof(_Py_M____hello__)},
|
||||
{0, 0, 0} /* sentinel */
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue