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
6a738450
Commit
6a738450
authored
Jun 18, 2011
by
R David Murray
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#11781: update windows build script to account for move of email tests
parent
95351056
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
Tools/msi/msi.py
Tools/msi/msi.py
+2
-2
No files found.
Tools/msi/msi.py
View file @
6a738450
...
...
@@ -1057,14 +1057,14 @@ def add_files(db):
lib
.
add_file
(
"turtle.cfg"
)
if
dir
==
"pydoc_data"
:
lib
.
add_file
(
"_pydoc.css"
)
if
dir
==
"data"
and
parent
.
physical
==
"test
"
and
parent
.
basedir
.
physical
==
"
email"
:
if
dir
==
"data"
and
parent
.
physical
==
"test
_
email"
:
# This should contain all non-.svn files listed in subversion
for
f
in
os
.
listdir
(
lib
.
absolute
):
if
f
.
endswith
(
".txt"
)
or
f
==
".svn"
:
continue
if
f
.
endswith
(
".au"
)
or
f
.
endswith
(
".gif"
):
lib
.
add_file
(
f
)
else
:
print
(
"WARNING: New file %s in
email/test
/data"
%
f
)
print
(
"WARNING: New file %s in
test/test_email
/data"
%
f
)
for
f
in
os
.
listdir
(
lib
.
absolute
):
if
os
.
path
.
isdir
(
os
.
path
.
join
(
lib
.
absolute
,
f
)):
pydirs
.
append
((
lib
,
f
))
...
...
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