Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
61cb0873
Kaydet (Commit)
61cb0873
authored
Tem 26, 2008
tarafından
Amaury Forgeot d'Arc
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Remove incorrect usages of map() in distutils.
Reported by Lisandro Dalcin.
üst
9a2310d1
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
11 additions
and
9 deletions
+11
-9
cmd.py
Lib/distutils/cmd.py
+1
-1
build_ext.py
Lib/distutils/command/build_ext.py
+1
-1
dist.py
Lib/distutils/dist.py
+2
-1
filelist.py
Lib/distutils/filelist.py
+2
-2
mwerkscompiler.py
Lib/distutils/mwerkscompiler.py
+3
-3
text_file.py
Lib/distutils/text_file.py
+2
-1
No files found.
Lib/distutils/cmd.py
Dosyayı görüntüle @
61cb0873
...
@@ -158,7 +158,7 @@ class Command:
...
@@ -158,7 +158,7 @@ class Command:
print
(
indent
+
header
)
print
(
indent
+
header
)
indent
=
indent
+
" "
indent
=
indent
+
" "
for
(
option
,
_
,
_
)
in
self
.
user_options
:
for
(
option
,
_
,
_
)
in
self
.
user_options
:
option
=
option
.
translate
(
longopt_xlate
)
option
=
longopt_xlate
(
option
)
if
option
[
-
1
]
==
"="
:
if
option
[
-
1
]
==
"="
:
option
=
option
[:
-
1
]
option
=
option
[:
-
1
]
value
=
getattr
(
self
,
option
)
value
=
getattr
(
self
,
option
)
...
...
Lib/distutils/command/build_ext.py
Dosyayı görüntüle @
61cb0873
...
@@ -244,7 +244,7 @@ class build_ext(Command):
...
@@ -244,7 +244,7 @@ class build_ext(Command):
if
self
.
define
:
if
self
.
define
:
defines
=
self
.
define
.
split
(
','
)
defines
=
self
.
define
.
split
(
','
)
self
.
define
=
map
(
lambda
symbol
:
(
symbol
,
'1'
),
defines
)
self
.
define
=
[(
symbol
,
'1'
)
for
symbol
in
defines
]
# The option for macros to undefine is also a string from the
# The option for macros to undefine is also a string from the
# option parsing, but has to be a list. Multiple symbols can also
# option parsing, but has to be a list. Multiple symbols can also
...
...
Lib/distutils/dist.py
Dosyayı görüntüle @
61cb0873
...
@@ -864,7 +864,8 @@ Common commands: (see '--help-commands' for more)
...
@@ -864,7 +864,8 @@ Common commands: (see '--help-commands' for more)
for
(
option
,
(
source
,
value
))
in
option_dict
.
items
():
for
(
option
,
(
source
,
value
))
in
option_dict
.
items
():
if
DEBUG
:
print
(
"
%
s =
%
s (from
%
s)"
%
(
option
,
value
,
source
))
if
DEBUG
:
print
(
"
%
s =
%
s (from
%
s)"
%
(
option
,
value
,
source
))
try
:
try
:
bool_opts
=
map
(
translate_longopt
,
command_obj
.
boolean_options
)
bool_opts
=
[
translate_longopt
(
o
)
for
o
in
command_obj
.
boolean_options
]
except
AttributeError
:
except
AttributeError
:
bool_opts
=
[]
bool_opts
=
[]
try
:
try
:
...
...
Lib/distutils/filelist.py
Dosyayı görüntüle @
61cb0873
...
@@ -85,13 +85,13 @@ class FileList:
...
@@ -85,13 +85,13 @@ class FileList:
if
len
(
words
)
<
2
:
if
len
(
words
)
<
2
:
raise
DistutilsTemplateError
(
raise
DistutilsTemplateError
(
"'
%
s' expects <pattern1> <pattern2> ..."
%
action
)
"'
%
s' expects <pattern1> <pattern2> ..."
%
action
)
patterns
=
map
(
convert_path
,
words
[
1
:])
patterns
=
[
convert_path
(
w
)
for
w
in
words
[
1
:]]
elif
action
in
(
'recursive-include'
,
'recursive-exclude'
):
elif
action
in
(
'recursive-include'
,
'recursive-exclude'
):
if
len
(
words
)
<
3
:
if
len
(
words
)
<
3
:
raise
DistutilsTemplateError
(
raise
DistutilsTemplateError
(
"'
%
s' expects <dir> <pattern1> <pattern2> ..."
%
action
)
"'
%
s' expects <dir> <pattern1> <pattern2> ..."
%
action
)
dir
=
convert_path
(
words
[
1
])
dir
=
convert_path
(
words
[
1
])
patterns
=
map
(
convert_path
,
words
[
2
:])
patterns
=
[
convert_path
(
w
)
for
w
in
words
[
2
:]]
elif
action
in
(
'graft'
,
'prune'
):
elif
action
in
(
'graft'
,
'prune'
):
if
len
(
words
)
!=
2
:
if
len
(
words
)
!=
2
:
raise
DistutilsTemplateError
(
raise
DistutilsTemplateError
(
...
...
Lib/distutils/mwerkscompiler.py
Dosyayı görüntüle @
61cb0873
...
@@ -104,10 +104,10 @@ class MWerksCompiler (CCompiler) :
...
@@ -104,10 +104,10 @@ class MWerksCompiler (CCompiler) :
# This is because we (usually) create the project in a subdirectory of
# This is because we (usually) create the project in a subdirectory of
# where we are now, and keeping the paths relative is too much work right
# where we are now, and keeping the paths relative is too much work right
# now.
# now.
sources
=
map
(
self
.
_filename_to_abs
,
self
.
__sources
)
sources
=
[
self
.
_filename_to_abs
(
s
)
for
s
in
self
.
__sources
]
include_dirs
=
map
(
self
.
_filename_to_abs
,
self
.
__include_dirs
)
include_dirs
=
[
self
.
_filename_to_abs
(
d
)
for
d
in
self
.
__include_dirs
]
if
objects
:
if
objects
:
objects
=
map
(
self
.
_filename_to_abs
,
objects
)
objects
=
[
self
.
_filename_to_abs
(
o
)
for
o
in
objects
]
else
:
else
:
objects
=
[]
objects
=
[]
if
build_temp
:
if
build_temp
:
...
...
Lib/distutils/text_file.py
Dosyayı görüntüle @
61cb0873
...
@@ -292,7 +292,7 @@ line 3 \\
...
@@ -292,7 +292,7 @@ line 3 \\
continues on next line
continues on next line
"""
"""
# result 1: no fancy options
# result 1: no fancy options
result1
=
map
(
lambda
x
:
x
+
"
\n
"
,
test_data
.
split
(
"
\n
"
)[
0
:
-
1
])
result1
=
[
x
+
"
\n
"
for
x
in
test_data
.
split
(
"
\n
"
)[:
-
1
]]
# result 2: just strip comments
# result 2: just strip comments
result2
=
[
"
\n
"
,
result2
=
[
"
\n
"
,
...
@@ -357,4 +357,5 @@ line 3 \\
...
@@ -357,4 +357,5 @@ line 3 \\
join_lines
=
1
,
rstrip_ws
=
1
,
collapse_join
=
1
)
join_lines
=
1
,
rstrip_ws
=
1
,
collapse_join
=
1
)
test_input
(
6
,
"join lines with collapsing"
,
in_file
,
result6
)
test_input
(
6
,
"join lines with collapsing"
,
in_file
,
result6
)
del
in_file
os
.
remove
(
filename
)
os
.
remove
(
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