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
d8bf09c6
Commit
d8bf09c6
authored
May 19, 2016
by
Steve Dower
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #27053: Updates make_zip.py to correctly generate library ZIP file.
parent
3116cc44
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
Misc/NEWS
Misc/NEWS
+2
-0
Tools/msi/make_zip.py
Tools/msi/make_zip.py
+1
-1
No files found.
Misc/NEWS
View file @
d8bf09c6
...
...
@@ -556,6 +556,8 @@ Build
Windows
-------
-
Issue
#
27053
:
Updates
make_zip
.
py
to
correctly
generate
library
ZIP
file
.
-
Issue
#
26268
:
Update
the
prepare_ssl
.
py
script
to
handle
OpenSSL
releases
that
don
't include the contents of the include directory (that is, 1.0.2e
and later).
...
...
Tools/msi/make_zip.py
View file @
d8bf09c6
...
...
@@ -89,7 +89,7 @@ EMBED_LAYOUT = [
('
/
', '
PCBuild
/
$
arch
', '
python
*
.
exe
', is_not_debug),
('
/
', '
PCBuild
/
$
arch
', '
*
.
pyd
', is_not_debug),
('
/
', '
PCBuild
/
$
arch
', '
*
.
dll
', is_not_debug),
('
python
35
.
zip
'
, '
Lib
', '
**/*
', include_in_lib),
('
python
{
0.
major
}{
0.
minor
}.
zip
'.format(sys.version_info)
, '
Lib
', '
**/*
', include_in_lib),
]
if os.getenv('
DOC_FILENAME
'):
...
...
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