Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
2ee077f7
Commit
2ee077f7
authored
Apr 09, 2019
by
xdegaye
Committed by
Miss Islington (bot)
Apr 09, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bpo-36544 : Fix regression introduced in bpo-36146 (GH-12708)
https://bugs.python.org/issue36544
parent
56065d4c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
0 deletions
+3
-0
Misc/NEWS.d/next/Build/2019-04-06-18-53-03.bpo-36544.hJr2_a.rst
...EWS.d/next/Build/2019-04-06-18-53-03.bpo-36544.hJr2_a.rst
+1
-0
setup.py
setup.py
+2
-0
No files found.
Misc/NEWS.d/next/Build/2019-04-06-18-53-03.bpo-36544.hJr2_a.rst
0 → 100644
View file @
2ee077f7
Fix regression introduced in bpo-36146 refactoring setup.py
setup.py
View file @
2ee077f7
...
...
@@ -1642,6 +1642,7 @@ class PyBuildExt(build_ext):
self
.
detect_crypt
()
self
.
detect_socket
()
self
.
detect_openssl_hashlib
()
self
.
detect_hash_builtins
()
self
.
detect_dbm_gdbm
()
self
.
detect_sqlite
()
self
.
detect_platform_specific_exts
()
...
...
@@ -2184,6 +2185,7 @@ class PyBuildExt(build_ext):
library_dirs
=
openssl_libdirs
,
libraries
=
openssl_libs
))
def
detect_hash_builtins
(
self
):
# We always compile these even when OpenSSL is available (issue #14693).
# It's harmless and the object code is tiny (40-50 KiB per module,
# only loaded when actually used).
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment