Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 34k
bpo-45573: Move mandatory core modules to Modules/Setup.bootstrap (GH-29616)#29616
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Conversation
tiran commented Nov 18, 2021 • edited by bedevere-bot
Loading Uh oh!
There was an error while loading. Please reload this page.
edited by bedevere-bot
Uh oh!
There was an error while loading. Please reload this page.
be740b2 to 0db8a04Compare0db8a04 to 05c1b88Compare
erlend-aasland left a comment • edited
Loading Uh oh!
There was an error while loading. Please reload this page.
edited
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a nice improvement. Not all modules that #define Py_BUILD_CORE_MODULE are included in Modules/Setup.core. Is Modules/Setup.builtin a more "correct" name?
Modules that define Py_BUILD_CORE_MODULE
$ grep -r "#.*define.*Py_BUILD_CORE_MODULE" Modules | sort Modules/_abc.c:# define Py_BUILD_CORE_MODULE 1 Modules/_asynciomodule.c:# define Py_BUILD_CORE_MODULE 1 Modules/_blake2/blake2b_impl.c:# define Py_BUILD_CORE_MODULE 1 Modules/_blake2/blake2module.c:# define Py_BUILD_CORE_MODULE 1 Modules/_blake2/blake2s_impl.c:# define Py_BUILD_CORE_MODULE 1 Modules/_ctypes/_ctypes.c:# define Py_BUILD_CORE_MODULE 1 Modules/_ctypes/callbacks.c:# define Py_BUILD_CORE_MODULE 1 Modules/_ctypes/cfield.c:# define Py_BUILD_CORE_MODULE 1 Modules/_ctypes/stgdict.c:# define Py_BUILD_CORE_MODULE 1 Modules/_cursesmodule.c:# define Py_BUILD_CORE_MODULE 1 Modules/_datetimemodule.c:# define Py_BUILD_CORE_MODULE 1 Modules/_decimal/_decimal.c:# define Py_BUILD_CORE_MODULE 1 Modules/_hashopenssl.c:# define Py_BUILD_CORE_MODULE 1 Modules/_heapqmodule.c:# define Py_BUILD_CORE_MODULE 1 Modules/_json.c:# define Py_BUILD_CORE_MODULE 1 Modules/_lsprof.c:# define Py_BUILD_CORE_MODULE 1 Modules/_pickle.c:# define Py_BUILD_CORE_MODULE 1 Modules/_posixsubprocess.c:# define Py_BUILD_CORE_MODULE 1 Modules/_queuemodule.c:# define Py_BUILD_CORE_MODULE 1 Modules/_randommodule.c:# define Py_BUILD_CORE_MODULE 1 Modules/_sha3/sha3module.c:# define Py_BUILD_CORE_MODULE 1 Modules/_struct.c:# define Py_BUILD_CORE_MODULE 1 Modules/_testinternalcapi.c:# define Py_BUILD_CORE_MODULE 1 Modules/_testmultiphase.c:# define Py_BUILD_CORE_MODULE 1 Modules/_xxsubinterpretersmodule.c:# define Py_BUILD_CORE_MODULE 1 Modules/_zoneinfo.c:# define Py_BUILD_CORE_MODULE 1 Modules/arraymodule.c:# define Py_BUILD_CORE_MODULE 1 Modules/binascii.c:# define Py_BUILD_CORE_MODULE 1 Modules/cmathmodule.c:# define Py_BUILD_CORE_MODULE 1 Modules/mathmodule.c:# define Py_BUILD_CORE_MODULE 1 Modules/md5module.c:# define Py_BUILD_CORE_MODULE 1 Modules/sha1module.c:# define Py_BUILD_CORE_MODULE 1 Modules/sha256module.c:# define Py_BUILD_CORE_MODULE 1 Modules/sha512module.c:# define Py_BUILD_CORE_MODULE 1 Modules/unicodedata.c:# define Py_BUILD_CORE_MODULE 1Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
configure.ac Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why the alias?
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
tiran commented Nov 19, 2021
The term core is overloaded. I have not found a better term, though.
|
erlend-aasland commented Nov 19, 2021
Yeah, |
05c1b88 to a1b915fCompareUh oh!
There was an error while loading. Please reload this page.
Signed-off-by: Christian Heimes <christian@python.org>
ff2d1e0 to db3e45eCompare
erlend-aasland left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great! LGTM
Signed-off-by: Christian Heimes christian@python.org
https://bugs.python.org/issue45573