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
3f2e6f15
Unverified
Kaydet (Commit)
3f2e6f15
authored
Şub 26, 2018
tarafından
Serhiy Storchaka
Kaydeden (comit)
GitHub
Şub 26, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Revert unneccessary changes made in bpo-30296 and apply other improvements. (GH-2624)
üst
6f600ff1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
5 deletions
+6
-5
config.py
Lib/logging/config.py
+2
-2
pstats.py
Lib/pstats.py
+1
-1
turtle.py
Lib/turtle.py
+1
-1
request.py
Lib/urllib/request.py
+2
-1
No files found.
Lib/logging/config.py
Dosyayı görüntüle @
3f2e6f15
...
...
@@ -460,7 +460,7 @@ class BaseConfigurator(object):
c
=
self
.
resolve
(
c
)
props
=
config
.
pop
(
'.'
,
None
)
# Check for valid identifiers
kwargs
=
dict
((
k
,
config
[
k
])
for
k
in
config
if
valid_ident
(
k
))
kwargs
=
{
k
:
config
[
k
]
for
k
in
config
if
valid_ident
(
k
)}
result
=
c
(
**
kwargs
)
if
props
:
for
name
,
value
in
props
.
items
():
...
...
@@ -723,7 +723,7 @@ class DictConfigurator(BaseConfigurator):
config
[
'address'
]
=
self
.
as_tuple
(
config
[
'address'
])
factory
=
klass
props
=
config
.
pop
(
'.'
,
None
)
kwargs
=
dict
((
k
,
config
[
k
])
for
k
in
config
if
valid_ident
(
k
))
kwargs
=
{
k
:
config
[
k
]
for
k
in
config
if
valid_ident
(
k
)}
try
:
result
=
factory
(
**
kwargs
)
except
TypeError
as
te
:
...
...
Lib/pstats.py
Dosyayı görüntüle @
3f2e6f15
...
...
@@ -530,7 +530,7 @@ def add_callers(target, source):
if
func
in
new_callers
:
if
isinstance
(
caller
,
tuple
):
# format used by cProfile
new_callers
[
func
]
=
tuple
(
i
[
0
]
+
i
[
1
]
for
i
in
zip
(
caller
,
new_callers
[
func
]))
new_callers
[
func
]
=
tuple
(
i
+
j
for
i
,
j
in
zip
(
caller
,
new_callers
[
func
]))
else
:
# format used by profile
new_callers
[
func
]
+=
caller
...
...
Lib/turtle.py
Dosyayı görüntüle @
3f2e6f15
...
...
@@ -3839,7 +3839,7 @@ def write_docstringdict(filename="turtle_docstringdict"):
docsdict
[
key
]
=
eval
(
key
)
.
__doc__
with
open
(
"
%
s.py"
%
filename
,
"w"
)
as
f
:
keys
=
sorted
(
x
for
x
in
docsdict
.
keys
()
keys
=
sorted
(
x
for
x
in
docsdict
if
x
.
split
(
'.'
)[
1
]
not
in
_alias_list
)
f
.
write
(
'docsdict = {
\n\n
'
)
for
key
in
keys
[:
-
1
]:
...
...
Lib/urllib/request.py
Dosyayı görüntüle @
3f2e6f15
...
...
@@ -1286,7 +1286,8 @@ class AbstractHTTPHandler(BaseHandler):
h
.
set_debuglevel
(
self
.
_debuglevel
)
headers
=
dict
(
req
.
unredirected_hdrs
)
headers
.
update
((
k
,
v
)
for
k
,
v
in
req
.
headers
.
items
()
if
k
not
in
headers
)
headers
.
update
({
k
:
v
for
k
,
v
in
req
.
headers
.
items
()
if
k
not
in
headers
})
# TODO(jhylton): Should this be redesigned to handle
# persistent connections?
...
...
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