Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #14928: Fix importlib bootstrap issues by using a custom executable ↵ | Antoine Pitrou | 2012-06-19 | 1 | -39/+0 |
| | | | | (Modules/_freeze_importlib) to build Python/importlib.h. | ||||
* | Issue #15103: remove the NUL character (serving as a Mercurial binary ↵ | Antoine Pitrou | 2012-06-19 | 1 | -1/+0 |
| | | | | | | marker) from Python/importlib.h. Instead the email notification hook uses a configuration option to omit importlib.h diffs. | ||||
* | Avoid "warning: no newline at end of file" in importlib.h. | Antoine Pitrou | 2012-05-16 | 1 | -0/+2 |
| | |||||
* | Avoid compiler warning due to stray \x00 | Antoine Pitrou | 2012-04-16 | 1 | -2/+2 |
| | |||||
* | Try to get hg to treat importlib.h as binary. | Brett Cannon | 2012-04-15 | 1 | -0/+1 |
| | |||||
* | Issue #2377: Make importlib the implementation of __import__(). | Brett Cannon | 2012-04-14 | 1 | -0/+37 |
importlib._bootstrap is now frozen into Python/importlib.h and stored as _frozen_importlib in sys.modules. Py_Initialize() loads the frozen code along with sys and imp and then uses _frozen_importlib._install() to set builtins.__import__() w/ _frozen_importlib.__import__(). |