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
aa754b70
Kaydet (Commit)
aa754b70
authored
Mar 21, 2007
tarafından
Neal Norwitz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Remove unused file spotted by Paul Hankin
üst
b54a8098
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
27 deletions
+2
-27
NEWS
Misc/NEWS
+2
-0
fmod.c
Python/fmod.c
+0
-27
No files found.
Misc/NEWS
Dosyayı görüntüle @
aa754b70
...
@@ -12,6 +12,8 @@ What's New in Python 2.6 alpha 1?
...
@@ -12,6 +12,8 @@ What's New in Python 2.6 alpha 1?
Core and builtins
Core and builtins
-----------------
-----------------
- Remove unused file Python/fmod.c.
- Patch #1675423: PyComplex_AsCComplex() now tries to convert an object
- Patch #1675423: PyComplex_AsCComplex() now tries to convert an object
to complex using its __complex__() method before falling back to the
to complex using its __complex__() method before falling back to the
__float__() method. Therefore, the functions in the cmath module now
__float__() method. Therefore, the functions in the cmath module now
...
...
Python/fmod.c
deleted
100644 → 0
Dosyayı görüntüle @
b54a8098
/* Portable fmod(x, y) implementation for systems that don't have it */
#include "pyconfig.h"
#include "pyport.h"
#include <errno.h>
double
fmod
(
double
x
,
double
y
)
{
double
i
,
f
;
if
(
y
==
0
.
0
)
{
errno
=
EDOM
;
return
0
.
0
;
}
/* return f such that x = i*y + f for some integer i
such that |f| < |y| and f has the same sign as x */
i
=
floor
(
x
/
y
);
f
=
x
-
i
*
y
;
if
((
x
<
0
.
0
)
!=
(
y
<
0
.
0
))
f
=
f
-
y
;
return
f
;
}
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