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
b47d24f8
Commit
b47d24f8
authored
May 25, 2000
by
Greg Ward
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Normalized all the end-of-class lines.
parent
0ad89999
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
10 additions
and
6 deletions
+10
-6
Lib/distutils/command/bdist_rpm.py
Lib/distutils/command/bdist_rpm.py
+2
-0
Lib/distutils/command/build.py
Lib/distutils/command/build.py
+1
-1
Lib/distutils/command/build_clib.py
Lib/distutils/command/build_clib.py
+1
-1
Lib/distutils/command/build_ext.py
Lib/distutils/command/build_ext.py
+1
-1
Lib/distutils/command/build_py.py
Lib/distutils/command/build_py.py
+1
-1
Lib/distutils/command/clean.py
Lib/distutils/command/clean.py
+2
-0
Lib/distutils/command/install.py
Lib/distutils/command/install.py
+1
-1
Lib/distutils/command/sdist.py
Lib/distutils/command/sdist.py
+1
-1
No files found.
Lib/distutils/command/bdist_rpm.py
View file @
b47d24f8
...
@@ -388,3 +388,5 @@ class bdist_rpm (Command):
...
@@ -388,3 +388,5 @@ class bdist_rpm (Command):
'list or tuple of strings'
%
var_name
)
'list or tuple of strings'
%
var_name
)
else
:
else
:
return
default_value
return
default_value
# class bdist_rpm
Lib/distutils/command/build.py
View file @
b47d24f8
...
@@ -100,4 +100,4 @@ class build (Command):
...
@@ -100,4 +100,4 @@ class build (Command):
if
self
.
distribution
.
has_ext_modules
():
if
self
.
distribution
.
has_ext_modules
():
self
.
run_peer
(
'build_ext'
)
self
.
run_peer
(
'build_ext'
)
#
end class B
uild
#
class b
uild
Lib/distutils/command/build_clib.py
View file @
b47d24f8
...
@@ -207,4 +207,4 @@ class build_clib (Command):
...
@@ -207,4 +207,4 @@ class build_clib (Command):
# build_libraries ()
# build_libraries ()
# class
BuildL
ib
# class
build_l
ib
Lib/distutils/command/build_ext.py
View file @
b47d24f8
...
@@ -406,4 +406,4 @@ class build_ext (Command):
...
@@ -406,4 +406,4 @@ class build_ext (Command):
return
apply
(
os
.
path
.
join
,
ext_path
)
+
'_d.lib'
return
apply
(
os
.
path
.
join
,
ext_path
)
+
'_d.lib'
return
apply
(
os
.
path
.
join
,
ext_path
)
+
'.lib'
return
apply
(
os
.
path
.
join
,
ext_path
)
+
'.lib'
# class
BuildE
xt
# class
build_e
xt
Lib/distutils/command/build_py.py
View file @
b47d24f8
...
@@ -322,4 +322,4 @@ class build_py (Command):
...
@@ -322,4 +322,4 @@ class build_py (Command):
# build_packages ()
# build_packages ()
#
end class BuildP
y
#
class build_p
y
Lib/distutils/command/clean.py
View file @
b47d24f8
...
@@ -74,3 +74,5 @@ class clean (Command):
...
@@ -74,3 +74,5 @@ class clean (Command):
self
.
announce
(
"removing '%s'"
%
self
.
build_base
)
self
.
announce
(
"removing '%s'"
%
self
.
build_base
)
except
OSError
:
except
OSError
:
pass
pass
# class clean
Lib/distutils/command/install.py
View file @
b47d24f8
...
@@ -519,4 +519,4 @@ class install (Command):
...
@@ -519,4 +519,4 @@ class install (Command):
"installations)"
)
%
"installations)"
)
%
filename
)
filename
)
# class
I
nstall
# class
i
nstall
Lib/distutils/command/sdist.py
View file @
b47d24f8
...
@@ -519,7 +519,7 @@ class sdist (Command):
...
@@ -519,7 +519,7 @@ class sdist (Command):
if not self.keep_tree:
if not self.keep_tree:
remove_tree (base_dir, self.verbose, self.dry_run)
remove_tree (base_dir, self.verbose, self.dry_run)
# class
D
ist
# class
sd
ist
# ----------------------------------------------------------------------
# ----------------------------------------------------------------------
...
...
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