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
df840d91
Kaydet (Commit)
df840d91
authored
Mar 27, 1992
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
lint
üst
704a26c5
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
4 deletions
+3
-4
mathmodule.c
Modules/mathmodule.c
+1
-1
intrcheck.c
Parser/intrcheck.c
+2
-1
bltinmodule.c
Python/bltinmodule.c
+0
-2
No files found.
Modules/mathmodule.c
Dosyayı görüntüle @
df840d91
...
@@ -36,7 +36,7 @@ extern int errno;
...
@@ -36,7 +36,7 @@ extern int errno;
#include <math.h>
#include <math.h>
#ifndef __STDC__
#ifndef __STDC__
extern
double
fmod
(
);
extern
double
fmod
PROTO
((
double
,
double
)
);
#endif
#endif
#ifdef HUGE_VAL
#ifdef HUGE_VAL
...
...
Parser/intrcheck.c
Dosyayı görüntüle @
df840d91
...
@@ -126,9 +126,10 @@ intrcheck()
...
@@ -126,9 +126,10 @@ intrcheck()
static
int
interrupted
;
static
int
interrupted
;
/* ARGSUSED */
static
SIGTYPE
static
SIGTYPE
intcatcher
(
sig
)
intcatcher
(
sig
)
int
sig
;
int
sig
;
/* Not used by required by interface */
{
{
interrupted
=
1
;
interrupted
=
1
;
signal
(
SIGINT
,
intcatcher
);
signal
(
SIGINT
,
intcatcher
);
...
...
Python/bltinmodule.c
Dosyayı görüntüle @
df840d91
...
@@ -315,8 +315,6 @@ builtin_input(self, v)
...
@@ -315,8 +315,6 @@ builtin_input(self, v)
{
{
FILE
*
in
=
sysgetfile
(
"stdin"
,
stdin
);
FILE
*
in
=
sysgetfile
(
"stdin"
,
stdin
);
FILE
*
out
=
sysgetfile
(
"stdout"
,
stdout
);
FILE
*
out
=
sysgetfile
(
"stdout"
,
stdout
);
node
*
n
;
int
err
;
int
c
;
int
c
;
object
*
m
,
*
d
;
object
*
m
,
*
d
;
flushline
();
flushline
();
...
...
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