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
6083a4bc
Kaydet (Commit)
6083a4bc
authored
Eki 14, 2013
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Re #18521: remove assignments of variables that are immediately reassigned.
üst
782952b8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
socketmodule.c
Modules/socketmodule.c
+1
-1
pystrtod.c
Python/pystrtod.c
+1
-1
No files found.
Modules/socketmodule.c
Dosyayı görüntüle @
6083a4bc
...
...
@@ -5155,7 +5155,7 @@ socket_getaddrinfo(PyObject *self, PyObject *args, PyObject* kwargs)
PyObject
*
all
=
(
PyObject
*
)
NULL
;
PyObject
*
idna
=
NULL
;
family
=
socktype
=
protocol
=
flags
=
0
;
socktype
=
protocol
=
flags
=
0
;
family
=
AF_UNSPEC
;
if
(
!
PyArg_ParseTupleAndKeywords
(
args
,
kwargs
,
"OO|iiii:getaddrinfo"
,
kwnames
,
&
hobj
,
&
pobj
,
&
family
,
&
socktype
,
...
...
Python/pystrtod.c
Dosyayı görüntüle @
6083a4bc
...
...
@@ -164,7 +164,7 @@ static double
_PyOS_ascii_strtod
(
const
char
*
nptr
,
char
**
endptr
)
{
char
*
fail_pos
;
double
val
=
-
1
.
0
;
double
val
;
struct
lconv
*
locale_data
;
const
char
*
decimal_point
;
size_t
decimal_point_len
;
...
...
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