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
9ca9f567
Commit
9ca9f567
authored
Jan 03, 2006
by
Martin v. Löwis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Ignore .svn instead of CVS now.
parent
17e98635
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
Tools/msi/msi.py
Tools/msi/msi.py
+3
-3
No files found.
Tools/msi/msi.py
View file @
9ca9f567
...
...
@@ -907,7 +907,7 @@ def add_files(db):
pydirs = [(root,"
Lib
")]
while pydirs:
parent, dir = pydirs.pop()
if dir == "
CVS
" or dir.startswith("
plat
-
"):
if dir == "
.
svn
" or dir.startswith("
plat
-
"):
continue
elif dir in ["
lib
-
tk
", "
idlelib
", "
Icons
"]:
if not have_tcl:
...
...
@@ -957,9 +957,9 @@ def add_files(db):
lib.add_file("
wininst
-
6.
exe
")
lib.add_file("
wininst
-
7.1
.
exe
")
if dir=="
data
" and parent.physical=="
test
" and parent.basedir.physical=="
email
":
# This should contain all non-
CVS files listed in CVS
# This should contain all non-
.svn files listed in subversion
for f in os.listdir(lib.absolute):
if f.endswith("
.
txt
") or f=="
CVS
":continue
if f.endswith("
.
txt
") or f=="
.
svn
":continue
if f.endswith("
.
au
") or f.endswith("
.
gif
"):
lib.add_file(f)
else:
...
...
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