diff options
author | 2017-05-22 21:36:03 -0700 | |
---|---|---|
committer | 2017-05-22 21:36:03 -0700 | |
commit | 6b4be195cd8868b76eb6fbe166acc39beee8ce36 (patch) | |
tree | bbab44fad32c576b9eb7e4b83368e200adc33f00 /Makefile.pre.in | |
parent | bpo-25532: Protect against infinite loops in inspect.unwrap() (#1717) (diff) | |
download | cpython-6b4be195cd8868b76eb6fbe166acc39beee8ce36.tar.gz cpython-6b4be195cd8868b76eb6fbe166acc39beee8ce36.tar.bz2 cpython-6b4be195cd8868b76eb6fbe166acc39beee8ce36.zip |
bpo-22257: Small changes for PEP 432. (#1728)
PEP 432 specifies a number of large changes to interpreter startup code, including exposing a cleaner C-API. The major changes depend on a number of smaller changes. This patch includes all those smaller changes.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 84a12267e9b..21418055aa8 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -349,7 +349,7 @@ PYTHON_OBJS= \ Python/pystate.o \ Python/pythonrun.o \ Python/pytime.o \ - Python/random.o \ + Python/bootstrap_hash.o \ Python/structmember.o \ Python/symtable.o \ Python/sysmodule.o \ |