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
363078af
Kaydet (Commit)
363078af
authored
May 24, 1996
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
make some things static
üst
9ea917eb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
complexobject.c
Objects/complexobject.c
+4
-4
floatobject.c
Objects/floatobject.c
+2
-2
No files found.
Objects/complexobject.c
Dosyayı görüntüle @
363078af
...
...
@@ -55,7 +55,7 @@ extern double pow PROTO((double, double));
/* elementary operations on complex numbers */
int
c_error
;
static
int
c_error
;
static
complex
c_1
=
{
1
.,
0
.};
complex
c_sum
(
a
,
b
)
...
...
@@ -136,7 +136,7 @@ complex c_pow(a,b)
return
r
;
}
complex
c_powu
(
x
,
n
)
static
complex
c_powu
(
x
,
n
)
complex
x
;
long
n
;
{
...
...
@@ -152,7 +152,7 @@ complex c_powu(x, n)
return
r
;
}
complex
c_powi
(
x
,
n
)
static
complex
c_powi
(
x
,
n
)
complex
x
;
long
n
;
{
...
...
@@ -228,7 +228,7 @@ complex_dealloc(op)
}
void
static
void
complex_buf_repr
(
buf
,
v
)
char
*
buf
;
complexobject
*
v
;
...
...
Objects/floatobject.c
Dosyayı görüntüle @
363078af
...
...
@@ -316,7 +316,7 @@ float_divmod(v, w)
return
mkvalue
(
"(dd)"
,
div
,
mod
);
}
double
powu
(
x
,
n
)
static
double
powu
(
x
,
n
)
double
x
;
long
n
;
{
...
...
@@ -332,7 +332,7 @@ double powu(x, n)
return
r
;
}
double
powi
(
x
,
n
)
static
double
powi
(
x
,
n
)
double
x
;
long
n
;
{
...
...
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