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
56be5f53
Kaydet (Commit)
56be5f53
authored
Eyl 07, 2016
tarafından
Brett Cannon
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Eliminate a tautological-pointer-compare warning found by Clang.
üst
56b1f1b4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
9 deletions
+7
-9
NEWS
Misc/NEWS
+2
-0
_scproxy.c
Modules/_scproxy.c
+5
-9
No files found.
Misc/NEWS
Dosyayı görüntüle @
56be5f53
...
@@ -97,6 +97,8 @@ Library
...
@@ -97,6 +97,8 @@ Library
-
Issue
#
16113
:
Add
SHA
-
3
and
SHAKE
support
to
hashlib
module
.
-
Issue
#
16113
:
Add
SHA
-
3
and
SHAKE
support
to
hashlib
module
.
-
Eliminate
a
tautological
-
pointer
-
compare
warning
in
_scproxy
.
c
.
-
Issue
#
27776
:
The
:
func
:`
os
.
urandom
`
function
does
now
block
on
Linux
3.17
-
Issue
#
27776
:
The
:
func
:`
os
.
urandom
`
function
does
now
block
on
Linux
3.17
and
newer
until
the
system
urandom
entropy
pool
is
initialized
to
increase
and
newer
until
the
system
urandom
entropy
pool
is
initialized
to
increase
the
security
.
This
change
is
part
of
the
:
pep
:`
524
`.
the
security
.
This
change
is
part
of
the
:
pep
:`
524
`.
...
...
Modules/_scproxy.c
Dosyayı görüntüle @
56be5f53
...
@@ -71,16 +71,12 @@ get_proxy_settings(PyObject* mod __attribute__((__unused__)))
...
@@ -71,16 +71,12 @@ get_proxy_settings(PyObject* mod __attribute__((__unused__)))
result
=
PyDict_New
();
result
=
PyDict_New
();
if
(
result
==
NULL
)
goto
error
;
if
(
result
==
NULL
)
goto
error
;
if
(
&
kSCPropNetProxiesExcludeSimpleHostnames
!=
NULL
)
{
aNum
=
CFDictionaryGetValue
(
proxyDict
,
aNum
=
CFDictionaryGetValue
(
proxyDict
,
kSCPropNetProxiesExcludeSimpleHostnames
);
kSCPropNetProxiesExcludeSimpleHostnames
);
if
(
aNum
==
NULL
)
{
if
(
aNum
==
NULL
)
{
v
=
PyBool_FromLong
(
0
);
}
else
{
v
=
PyBool_FromLong
(
cfnum_to_int32
(
aNum
));
}
}
else
{
v
=
PyBool_FromLong
(
0
);
v
=
PyBool_FromLong
(
0
);
}
else
{
v
=
PyBool_FromLong
(
cfnum_to_int32
(
aNum
));
}
}
if
(
v
==
NULL
)
goto
error
;
if
(
v
==
NULL
)
goto
error
;
...
...
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