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
cbd2ab13
Kaydet (Commit)
cbd2ab13
authored
Ara 04, 2010
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#1513299: cleanup some map() uses where a comprehension works better.
üst
8334fd92
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
7 additions
and
7 deletions
+7
-7
cookies.py
Lib/http/cookies.py
+1
-1
server.py
Lib/http/server.py
+1
-1
pydoc.py
Lib/pydoc.py
+2
-2
tabnanny.py
Lib/tabnanny.py
+1
-1
pystone.py
Lib/test/pystone.py
+1
-1
test_long.py
Lib/test/test_long.py
+1
-1
No files found.
Lib/http/cookies.py
Dosyayı görüntüle @
cbd2ab13
...
...
@@ -230,7 +230,7 @@ def _quote(str, LegalChars=_LegalChars):
if
all
(
c
in
LegalChars
for
c
in
str
):
return
str
else
:
return
'"'
+
_nulljoin
(
map
(
_Translator
.
get
,
str
,
str
)
)
+
'"'
return
'"'
+
_nulljoin
(
_Translator
.
get
(
s
,
s
)
for
s
in
str
)
+
'"'
_OctalPatt
=
re
.
compile
(
r"\\[0-3][0-7][0-7]"
)
...
...
Lib/http/server.py
Dosyayı görüntüle @
cbd2ab13
...
...
@@ -868,7 +868,7 @@ def nobody_uid():
try
:
nobody
=
pwd
.
getpwnam
(
'nobody'
)[
2
]
except
KeyError
:
nobody
=
1
+
max
(
map
(
lambda
x
:
x
[
2
],
pwd
.
getpwall
()
))
nobody
=
1
+
max
(
x
[
2
]
for
x
in
pwd
.
getpwall
(
))
return
nobody
...
...
Lib/pydoc.py
Dosyayı görüntüle @
cbd2ab13
...
...
@@ -1000,7 +1000,7 @@ class TextDoc(Doc):
def
bold
(
self
,
text
):
"""Format a string in bold by overstriking."""
return
''
.
join
(
map
(
lambda
ch
:
ch
+
'
\b
'
+
ch
,
text
)
)
return
''
.
join
(
ch
+
'
\b
'
+
ch
for
ch
in
text
)
def
indent
(
self
,
text
,
prefix
=
' '
):
"""Indent text by prepending a given prefix to each line."""
...
...
@@ -1024,7 +1024,7 @@ class TextDoc(Doc):
c
,
bases
=
entry
result
=
result
+
prefix
+
classname
(
c
,
modname
)
if
bases
and
bases
!=
(
parent
,):
parents
=
map
(
lambda
c
,
m
=
modname
:
classname
(
c
,
m
),
bases
)
parents
=
(
classname
(
c
,
modname
)
for
c
in
bases
)
result
=
result
+
'(
%
s)'
%
', '
.
join
(
parents
)
result
=
result
+
'
\n
'
elif
type
(
entry
)
is
type
([]):
...
...
Lib/tabnanny.py
Dosyayı görüntüle @
cbd2ab13
...
...
@@ -264,7 +264,7 @@ class Whitespace:
return
a
def
format_witnesses
(
w
):
firsts
=
map
(
lambda
tup
:
str
(
tup
[
0
]),
w
)
firsts
=
(
str
(
tup
[
0
])
for
tup
in
w
)
prefix
=
"at tab size"
if
len
(
w
)
>
1
:
prefix
=
prefix
+
"s"
...
...
Lib/test/pystone.py
Dosyayı görüntüle @
cbd2ab13
...
...
@@ -72,7 +72,7 @@ BoolGlob = FALSE
Char1Glob
=
'
\0
'
Char2Glob
=
'
\0
'
Array1Glob
=
[
0
]
*
51
Array2Glob
=
list
(
map
(
lambda
x
:
x
[:],
[
Array1Glob
]
*
51
))
Array2Glob
=
[
x
[:]
for
x
in
[
Array1Glob
]
*
51
]
PtrGlb
=
None
PtrGlbNext
=
None
...
...
Lib/test/test_long.py
Dosyayı görüntüle @
cbd2ab13
...
...
@@ -276,7 +276,7 @@ class LongTest(unittest.TestCase):
digits
=
digits
or
[
0
]
return
'-'
[:
sign
]
+
\
{
2
:
'0b'
,
8
:
'0o'
,
10
:
''
,
16
:
'0x'
}[
base
]
+
\
""
.
join
(
map
(
lambda
i
:
"0123456789abcdef"
[
i
],
digits
)
)
""
.
join
(
"0123456789abcdef"
[
i
]
for
i
in
digits
)
def
check_format_1
(
self
,
x
):
for
base
,
mapper
in
(
8
,
oct
),
(
10
,
repr
),
(
16
,
hex
):
...
...
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