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
ed5b3d8b
Commit
ed5b3d8b
authored
Mar 24, 1998
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
give in to tab police
parent
3db0e371
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
342 additions
and
337 deletions
+342
-337
Tools/scripts/cvsfiles.py
Tools/scripts/cvsfiles.py
+29
-29
Tools/scripts/fixnotice.py
Tools/scripts/fixnotice.py
+4
-4
Tools/scripts/linktree.py
Tools/scripts/linktree.py
+20
-17
Tools/scripts/logmerge.py
Tools/scripts/logmerge.py
+63
-63
Tools/scripts/mailerdaemon.py
Tools/scripts/mailerdaemon.py
+226
-224
No files found.
Tools/scripts/cvsfiles.py
View file @
ed5b3d8b
Tools/scripts/fixnotice.py
View file @
ed5b3d8b
Tools/scripts/linktree.py
View file @
ed5b3d8b
...
...
@@ -60,15 +60,18 @@ def linknames(old, new, link):
linkname
=
os
.
path
.
join
(
link
,
name
)
newname
=
os
.
path
.
join
(
new
,
name
)
if
debug
>
1
:
print
oldname
,
newname
,
linkname
if
os
.
path
.
isdir
(
oldname
)
and
not
os
.
path
.
islink
(
oldname
):
if
os
.
path
.
isdir
(
oldname
)
and
\
not
os
.
path
.
islink
(
oldname
):
try
:
os
.
mkdir
(
newname
,
0777
)
ok
=
1
except
:
print
newname
+
': warning: cannot mkdir:'
,
msg
print
newname
+
\
': warning: cannot mkdir:'
,
msg
ok
=
0
if
ok
:
linkname
=
os
.
path
.
join
(
os
.
pardir
,
linkname
)
linkname
=
os
.
path
.
join
(
os
.
pardir
,
linkname
)
linknames
(
oldname
,
newname
,
linkname
)
else
:
os
.
symlink
(
linkname
,
newname
)
...
...
Tools/scripts/logmerge.py
View file @
ed5b3d8b
Tools/scripts/mailerdaemon.py
View file @
ed5b3d8b
...
...
@@ -48,7 +48,9 @@ def emparse_sendmail(fp, sub):
((
line
[
0
]
==
'-----'
and
line
[
1
]
==
'Transcript'
)
or
(
line
[
0
]
==
'---'
and
line
[
1
]
==
'The'
and
line
[
2
]
==
'transcript'
)
or
(
line
[
0
]
==
'While'
and
line
[
1
]
==
'talking'
and
line
[
2
]
==
'to'
)):
(
line
[
0
]
==
'While'
and
line
[
1
]
==
'talking'
and
line
[
2
]
==
'to'
)):
# Yes, found it!
break
...
...
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