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
c50e05ea
Kaydet (Commit)
c50e05ea
authored
15 years ago
tarafından
Eric Smith
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Keep this file in sync with trunk.
üst
37999221
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
20 deletions
+0
-20
formatter.h
Objects/stringlib/formatter.h
+0
-20
No files found.
Objects/stringlib/formatter.h
Dosyayı görüntüle @
c50e05ea
...
...
@@ -937,13 +937,6 @@ format_float_internal(PyObject *value,
format the result. We take care of that later. */
type
=
'g'
;
#if PY_VERSION_HEX < 0x0301000
/* 'F' is the same as 'f', per the PEP */
/* This is no longer the case in 3.x */
if
(
type
==
'F'
)
type
=
'f'
;
#endif
val
=
PyFloat_AsDouble
(
value
);
if
(
val
==
-
1
.
0
&&
PyErr_Occurred
())
goto
done
;
...
...
@@ -957,12 +950,6 @@ format_float_internal(PyObject *value,
if
(
precision
<
0
)
precision
=
default_precision
;
#if PY_VERSION_HEX < 0x03010000
/* 3.1 no longer converts large 'f' to 'g'. */
if
((
type
==
'f'
||
type
==
'F'
)
&&
fabs
(
val
)
>=
1e50
)
type
=
'g'
;
#endif
/* Cast "type", because if we're in unicode we need to pass a
8-bit char. This is safe, because we've restricted what "type"
can be. */
...
...
@@ -1134,13 +1121,6 @@ format_complex_internal(PyObject *value,
format the result. We take care of that later. */
type
=
'g'
;
#if PY_VERSION_HEX < 0x03010000
/* This is no longer the case in 3.x */
/* 'F' is the same as 'f', per the PEP */
if
(
type
==
'F'
)
type
=
'f'
;
#endif
if
(
precision
<
0
)
precision
=
default_precision
;
...
...
This diff is collapsed.
Click to expand it.
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