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
58d05102
Kaydet (Commit)
58d05102
authored
Tem 24, 2000
tarafından
Thomas Wouters
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
ANSIfy some more forward declarations.
üst
8ec68fde
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
13 additions
and
13 deletions
+13
-13
_tkinter.c
Modules/_tkinter.c
+2
-2
bsddbmodule.c
Modules/bsddbmodule.c
+1
-1
cPickle.c
Modules/cPickle.c
+4
-4
cStringIO.c
Modules/cStringIO.c
+1
-1
dbmmodule.c
Modules/dbmmodule.c
+1
-1
gdbmmodule.c
Modules/gdbmmodule.c
+1
-1
sunaudiodev.c
Modules/sunaudiodev.c
+2
-2
timemodule.c
Modules/timemodule.c
+1
-1
No files found.
Modules/_tkinter.c
Dosyayı görüntüle @
58d05102
...
@@ -433,8 +433,8 @@ Tcl_AppInit(Tcl_Interp *interp)
...
@@ -433,8 +433,8 @@ Tcl_AppInit(Tcl_Interp *interp)
* `tkMain.c'.
* `tkMain.c'.
*/
*/
static
void
EnableEventHook
();
/* Forward */
static
void
EnableEventHook
(
void
);
/* Forward */
static
void
DisableEventHook
();
/* Forward */
static
void
DisableEventHook
(
void
);
/* Forward */
static
TkappObject
*
static
TkappObject
*
Tkapp_New
(
char
*
screenName
,
char
*
baseName
,
char
*
className
,
int
interactive
)
Tkapp_New
(
char
*
screenName
,
char
*
baseName
,
char
*
className
,
int
interactive
)
...
...
Modules/bsddbmodule.c
Dosyayı görüntüle @
58d05102
...
@@ -786,7 +786,7 @@ static PyMethodDef bsddbmodule_methods[] = {
...
@@ -786,7 +786,7 @@ static PyMethodDef bsddbmodule_methods[] = {
};
};
DL_EXPORT
(
void
)
DL_EXPORT
(
void
)
initbsddb
()
{
initbsddb
(
void
)
{
PyObject
*
m
,
*
d
;
PyObject
*
m
,
*
d
;
Bsddbtype
.
ob_type
=
&
PyType_Type
;
Bsddbtype
.
ob_type
=
&
PyType_Type
;
...
...
Modules/cPickle.c
Dosyayı görüntüle @
58d05102
...
@@ -180,7 +180,7 @@ static PyTypeObject PdataType = {
...
@@ -180,7 +180,7 @@ static PyTypeObject PdataType = {
#define Pdata_Check(O) ((O)->ob_type == &PdataType)
#define Pdata_Check(O) ((O)->ob_type == &PdataType)
static
PyObject
*
static
PyObject
*
Pdata_New
()
{
Pdata_New
(
void
)
{
Pdata
*
self
;
Pdata
*
self
;
UNLESS
(
self
=
PyObject_New
(
Pdata
,
&
PdataType
))
return
NULL
;
UNLESS
(
self
=
PyObject_New
(
Pdata
,
&
PdataType
))
return
NULL
;
...
@@ -193,7 +193,7 @@ Pdata_New() {
...
@@ -193,7 +193,7 @@ Pdata_New() {
}
}
static
int
static
int
stackUnderflow
()
{
stackUnderflow
(
void
)
{
PyErr_SetString
(
UnpicklingError
,
"unpickling stack underflow"
);
PyErr_SetString
(
UnpicklingError
,
"unpickling stack underflow"
);
return
-
1
;
return
-
1
;
}
}
...
@@ -2418,7 +2418,7 @@ load_none(Unpicklerobject *self) {
...
@@ -2418,7 +2418,7 @@ load_none(Unpicklerobject *self) {
}
}
static
int
static
int
bad_readline
()
{
bad_readline
(
void
)
{
PyErr_SetString
(
UnpicklingError
,
"pickle data was truncated"
);
PyErr_SetString
(
UnpicklingError
,
"pickle data was truncated"
);
return
-
1
;
return
-
1
;
}
}
...
@@ -4516,7 +4516,7 @@ init_stuff(PyObject *module, PyObject *module_dict) {
...
@@ -4516,7 +4516,7 @@ init_stuff(PyObject *module, PyObject *module_dict) {
#define DL_EXPORT(RTYPE) RTYPE
#define DL_EXPORT(RTYPE) RTYPE
#endif
#endif
DL_EXPORT
(
void
)
DL_EXPORT
(
void
)
initcPickle
()
{
initcPickle
(
void
)
{
PyObject
*
m
,
*
d
,
*
v
;
PyObject
*
m
,
*
d
,
*
v
;
char
*
rev
=
"1.71"
;
char
*
rev
=
"1.71"
;
PyObject
*
format_version
;
PyObject
*
format_version
;
...
...
Modules/cStringIO.c
Dosyayı görüntüle @
58d05102
...
@@ -639,7 +639,7 @@ static struct PycStringIO_CAPI CAPI = {
...
@@ -639,7 +639,7 @@ static struct PycStringIO_CAPI CAPI = {
#define DL_EXPORT(RTYPE) RTYPE
#define DL_EXPORT(RTYPE) RTYPE
#endif
#endif
DL_EXPORT
(
void
)
DL_EXPORT
(
void
)
initcStringIO
()
{
initcStringIO
(
void
)
{
PyObject
*
m
,
*
d
,
*
v
;
PyObject
*
m
,
*
d
,
*
v
;
...
...
Modules/dbmmodule.c
Dosyayı görüntüle @
58d05102
...
@@ -272,7 +272,7 @@ static PyMethodDef dbmmodule_methods[] = {
...
@@ -272,7 +272,7 @@ static PyMethodDef dbmmodule_methods[] = {
};
};
DL_EXPORT
(
void
)
DL_EXPORT
(
void
)
initdbm
()
{
initdbm
(
void
)
{
PyObject
*
m
,
*
d
;
PyObject
*
m
,
*
d
;
m
=
Py_InitModule
(
"dbm"
,
dbmmodule_methods
);
m
=
Py_InitModule
(
"dbm"
,
dbmmodule_methods
);
...
...
Modules/gdbmmodule.c
Dosyayı görüntüle @
58d05102
...
@@ -474,7 +474,7 @@ static PyMethodDef dbmmodule_methods[] = {
...
@@ -474,7 +474,7 @@ static PyMethodDef dbmmodule_methods[] = {
};
};
DL_EXPORT
(
void
)
DL_EXPORT
(
void
)
initgdbm
()
{
initgdbm
(
void
)
{
PyObject
*
m
,
*
d
;
PyObject
*
m
,
*
d
;
Dbmtype
.
ob_type
=
&
PyType_Type
;
Dbmtype
.
ob_type
=
&
PyType_Type
;
...
...
Modules/sunaudiodev.c
Dosyayı görüntüle @
58d05102
...
@@ -51,7 +51,7 @@ typedef struct {
...
@@ -51,7 +51,7 @@ typedef struct {
staticforward
PyTypeObject
Sadtype
;
staticforward
PyTypeObject
Sadtype
;
staticforward
PyTypeObject
Sadstatustype
;
staticforward
PyTypeObject
Sadstatustype
;
static
sadstatusobject
*
sads_alloc
();
/* Forward */
static
sadstatusobject
*
sads_alloc
(
void
);
/* Forward */
static
PyObject
*
SunAudioError
;
static
PyObject
*
SunAudioError
;
...
@@ -364,7 +364,7 @@ sad_getattr(sadobject *xp, char *name)
...
@@ -364,7 +364,7 @@ sad_getattr(sadobject *xp, char *name)
/* ----------------------------------------------------------------- */
/* ----------------------------------------------------------------- */
static
sadstatusobject
*
static
sadstatusobject
*
sads_alloc
()
{
sads_alloc
(
void
)
{
return
PyObject_New
(
sadstatusobject
,
&
Sadstatustype
);
return
PyObject_New
(
sadstatusobject
,
&
Sadstatustype
);
}
}
...
...
Modules/timemodule.c
Dosyayı görüntüle @
58d05102
...
@@ -91,7 +91,7 @@ extern int ftime(struct timeb *);
...
@@ -91,7 +91,7 @@ extern int ftime(struct timeb *);
/* Forward declarations */
/* Forward declarations */
static
int
floatsleep
(
double
);
static
int
floatsleep
(
double
);
static
double
floattime
();
static
double
floattime
(
double
);
/* For Y2K check */
/* For Y2K check */
static
PyObject
*
moddict
;
static
PyObject
*
moddict
;
...
...
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