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
b8d01695
Kaydet (Commit)
b8d01695
authored
Nis 13, 2012
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix clock_gettime/getres/settime: PyArg_ParseTuple() expects an int
Only use a single #ifdef for the 3 functions.
üst
0682a0c0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
10 deletions
+4
-10
timemodule.c
Modules/timemodule.c
+4
-10
No files found.
Modules/timemodule.c
Dosyayı görüntüle @
b8d01695
...
...
@@ -139,7 +139,7 @@ static PyObject *
time_clock_gettime
(
PyObject
*
self
,
PyObject
*
args
)
{
int
ret
;
clockid_
t
clk_id
;
in
t
clk_id
;
struct
timespec
tp
;
if
(
!
PyArg_ParseTuple
(
args
,
"i:clock_gettime"
,
&
clk_id
))
...
...
@@ -162,7 +162,7 @@ Return the time of the specified clock clk_id.");
static
PyObject
*
time_clock_settime
(
PyObject
*
self
,
PyObject
*
args
)
{
clockid_
t
clk_id
;
in
t
clk_id
;
PyObject
*
obj
;
struct
timespec
tp
;
int
ret
;
...
...
@@ -185,14 +185,12 @@ PyDoc_STRVAR(clock_settime_doc,
"clock_settime(clk_id, time)
\n
\
\n
\
Set the time of the specified clock clk_id."
);
#endif
#ifdef HAVE_CLOCK_GETRES
static
PyObject
*
time_clock_getres
(
PyObject
*
self
,
PyObject
*
args
)
{
int
ret
;
clockid_
t
clk_id
;
in
t
clk_id
;
struct
timespec
tp
;
if
(
!
PyArg_ParseTuple
(
args
,
"i:clock_getres"
,
&
clk_id
))
...
...
@@ -211,7 +209,7 @@ PyDoc_STRVAR(clock_getres_doc,
"clock_getres(clk_id) -> floating point number
\n
\
\n
\
Return the resolution (precision) of the specified clock clk_id."
);
#endif
#endif
/* HAVE_CLOCK_GETTIME */
static
PyObject
*
time_sleep
(
PyObject
*
self
,
PyObject
*
args
)
...
...
@@ -1009,11 +1007,7 @@ static PyMethodDef time_methods[] = {
#endif
#ifdef HAVE_CLOCK_GETTIME
{
"clock_gettime"
,
time_clock_gettime
,
METH_VARARGS
,
clock_gettime_doc
},
#endif
#ifdef HAVE_CLOCK_GETTIME
{
"clock_settime"
,
time_clock_settime
,
METH_VARARGS
,
clock_settime_doc
},
#endif
#ifdef HAVE_CLOCK_GETRES
{
"clock_getres"
,
time_clock_getres
,
METH_VARARGS
,
clock_getres_doc
},
#endif
{
"sleep"
,
time_sleep
,
METH_VARARGS
,
sleep_doc
},
...
...
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