(original) (raw)

changeset: 76549:acfdf46b8de1 user: Marc-Andre Lemburg mal@egenix.com date: Wed Apr 25 10:54:48 2012 +0200 files: Lib/importlib/_bootstrap.py Python/importlib.h description: Issue #14605 and #14642: Issue a warning in case Python\importlib.h needs to be rebuilt, but there's no Python interpreter around to freeze the bootstrap script. diff -r a2cf07135e4f -r acfdf46b8de1 Lib/importlib/_bootstrap.py --- a/Lib/importlib/_bootstrap.py Wed Apr 25 02:31:37 2012 +0200 +++ b/Lib/importlib/_bootstrap.py Wed Apr 25 10:54:48 2012 +0200 @@ -6,6 +6,13 @@ work. One should use importlib as the public-facing version of this module. """ +# +# IMPORTANT: Whenever making changes to this module, be sure to run +# a top-level make in order to get the frozen version of the module +# update. Not doing so, will result in the Makefile to fail for +# all others who don't have a ./python around to freeze the module +# in the early stages of compilation. +# # See importlib._setup() for what is injected into the global namespace. diff -r a2cf07135e4f -r acfdf46b8de1 Python/importlib.h Binary file Python/importlib.h has changed /mal@egenix.com