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
14f8899d
Kaydet (Commit)
14f8899d
authored
Nis 18, 2006
tarafından
Skip Montanaro
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
C++ compiler cleanup: "typename" is a C++ keyword
üst
1b04664e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
11 deletions
+11
-11
datetimemodule.c
Modules/datetimemodule.c
+11
-11
No files found.
Modules/datetimemodule.c
Dosyayı görüntüle @
14f8899d
...
...
@@ -2411,11 +2411,11 @@ static PyObject *
date_repr
(
PyDateTime_Date
*
self
)
{
char
buffer
[
1028
];
const
char
*
typename
;
const
char
*
type
_
name
;
typename
=
self
->
ob_type
->
tp_name
;
type
_
name
=
self
->
ob_type
->
tp_name
;
PyOS_snprintf
(
buffer
,
sizeof
(
buffer
),
"%s(%d, %d, %d)"
,
typename
,
type
_
name
,
GET_YEAR
(
self
),
GET_MONTH
(
self
),
GET_DAY
(
self
));
return
PyString_FromString
(
buffer
);
...
...
@@ -3138,7 +3138,7 @@ static PyObject *
time_repr
(
PyDateTime_Time
*
self
)
{
char
buffer
[
100
];
const
char
*
typename
=
self
->
ob_type
->
tp_name
;
const
char
*
type
_
name
=
self
->
ob_type
->
tp_name
;
int
h
=
TIME_GET_HOUR
(
self
);
int
m
=
TIME_GET_MINUTE
(
self
);
int
s
=
TIME_GET_SECOND
(
self
);
...
...
@@ -3147,13 +3147,13 @@ time_repr(PyDateTime_Time *self)
if
(
us
)
PyOS_snprintf
(
buffer
,
sizeof
(
buffer
),
"%s(%d, %d, %d, %d)"
,
typename
,
h
,
m
,
s
,
us
);
"%s(%d, %d, %d, %d)"
,
type
_
name
,
h
,
m
,
s
,
us
);
else
if
(
s
)
PyOS_snprintf
(
buffer
,
sizeof
(
buffer
),
"%s(%d, %d, %d)"
,
typename
,
h
,
m
,
s
);
"%s(%d, %d, %d)"
,
type
_
name
,
h
,
m
,
s
);
else
PyOS_snprintf
(
buffer
,
sizeof
(
buffer
),
"%s(%d, %d)"
,
typename
,
h
,
m
);
"%s(%d, %d)"
,
type
_
name
,
h
,
m
);
result
=
PyString_FromString
(
buffer
);
if
(
result
!=
NULL
&&
HASTZINFO
(
self
))
result
=
append_keyword_tzinfo
(
result
,
self
->
tzinfo
);
...
...
@@ -4036,13 +4036,13 @@ static PyObject *
datetime_repr
(
PyDateTime_DateTime
*
self
)
{
char
buffer
[
1000
];
const
char
*
typename
=
self
->
ob_type
->
tp_name
;
const
char
*
type
_
name
=
self
->
ob_type
->
tp_name
;
PyObject
*
baserepr
;
if
(
DATE_GET_MICROSECOND
(
self
))
{
PyOS_snprintf
(
buffer
,
sizeof
(
buffer
),
"%s(%d, %d, %d, %d, %d, %d, %d)"
,
typename
,
type
_
name
,
GET_YEAR
(
self
),
GET_MONTH
(
self
),
GET_DAY
(
self
),
DATE_GET_HOUR
(
self
),
DATE_GET_MINUTE
(
self
),
DATE_GET_SECOND
(
self
),
...
...
@@ -4051,7 +4051,7 @@ datetime_repr(PyDateTime_DateTime *self)
else
if
(
DATE_GET_SECOND
(
self
))
{
PyOS_snprintf
(
buffer
,
sizeof
(
buffer
),
"%s(%d, %d, %d, %d, %d, %d)"
,
typename
,
type
_
name
,
GET_YEAR
(
self
),
GET_MONTH
(
self
),
GET_DAY
(
self
),
DATE_GET_HOUR
(
self
),
DATE_GET_MINUTE
(
self
),
DATE_GET_SECOND
(
self
));
...
...
@@ -4059,7 +4059,7 @@ datetime_repr(PyDateTime_DateTime *self)
else
{
PyOS_snprintf
(
buffer
,
sizeof
(
buffer
),
"%s(%d, %d, %d, %d, %d)"
,
typename
,
type
_
name
,
GET_YEAR
(
self
),
GET_MONTH
(
self
),
GET_DAY
(
self
),
DATE_GET_HOUR
(
self
),
DATE_GET_MINUTE
(
self
));
}
...
...
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