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
1fb399ba
Unverified
Kaydet (Commit)
1fb399ba
authored
Eyl 17, 2018
tarafından
Victor Stinner
Kaydeden (comit)
GitHub
Eyl 17, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-34715: Revert "Simplify PyInit_timezone. (GH-9323)" (GH-9366)
This reverts commit
afde1c1a
.
üst
394374e3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
68 additions
and
15 deletions
+68
-15
timemodule.c
Modules/timemodule.c
+68
-15
No files found.
Modules/timemodule.c
Dosyayı görüntüle @
1fb399ba
...
...
@@ -1522,6 +1522,29 @@ PyDoc_STRVAR(get_clock_info_doc,
\n
\
Get information of the specified clock."
);
#if !defined(HAVE_TZNAME) || defined(__GLIBC__) || defined(__CYGWIN__)
static
void
get_zone
(
char
*
zone
,
int
n
,
struct
tm
*
p
)
{
#ifdef HAVE_STRUCT_TM_TM_ZONE
strncpy
(
zone
,
p
->
tm_zone
?
p
->
tm_zone
:
" "
,
n
);
#else
tzset
();
strftime
(
zone
,
n
,
"%Z"
,
p
);
#endif
}
static
int
get_gmtoff
(
time_t
t
,
struct
tm
*
p
)
{
#ifdef HAVE_STRUCT_TM_TM_ZONE
return
p
->
tm_gmtoff
;
#else
return
timegm
(
p
)
-
t
;
#endif
}
#endif
/* !defined(HAVE_TZNAME) || defined(__GLIBC__) || defined(__CYGWIN__) */
static
void
PyInit_timezone
(
PyObject
*
m
)
{
/* This code moved from PyInit_time wholesale to allow calling it from
...
...
@@ -1540,35 +1563,65 @@ PyInit_timezone(PyObject *m) {
And I'm lazy and hate C so nyer.
*/
#if defined(HAVE_TZNAME) && !defined(__GLIBC__) && !defined(__CYGWIN__)
PyObject
*
otz0
,
*
otz1
;
tzset
();
PyModule_AddIntConstant
(
m
,
"timezone"
,
timezone
);
#ifdef HAVE_ALTZONE
PyModule_AddIntConstant
(
m
,
"altzone"
,
altzone
);
#elif defined(HAVE_STRUCT_TM_TM_ZONE)
#else
PyModule_AddIntConstant
(
m
,
"altzone"
,
timezone
-
3600
);
#endif
PyModule_AddIntConstant
(
m
,
"daylight"
,
daylight
);
otz0
=
PyUnicode_DecodeLocale
(
tzname
[
0
],
"surrogateescape"
);
otz1
=
PyUnicode_DecodeLocale
(
tzname
[
1
],
"surrogateescape"
);
PyModule_AddObject
(
m
,
"tzname"
,
Py_BuildValue
(
"(NN)"
,
otz0
,
otz1
));
#else
/* !HAVE_TZNAME || __GLIBC__ || __CYGWIN__*/
{
static
const
time_t
YEAR
=
(
365
*
24
+
6
)
*
3600
;
#define YEAR ((time_t)((365 * 24 + 6) * 3600))
time_t
t
;
struct
tm
p
;
long
janzone
,
julyzone
;
char
janname
[
10
],
julyname
[
10
];
t
=
(
time
((
time_t
*
)
0
)
/
YEAR
)
*
YEAR
;
_PyTime_localtime
(
t
,
&
p
);
janzone
=
-
p
.
tm_gmtoff
;
get_zone
(
janname
,
9
,
&
p
);
janzone
=
-
get_gmtoff
(
t
,
&
p
);
janname
[
9
]
=
'\0'
;
t
+=
YEAR
/
2
;
_PyTime_localtime
(
t
,
&
p
);
julyzone
=
-
p
.
tm_gmtoff
;
// DST is reversed in the southern hemisphere.
PyModule_AddIntConstant
(
m
,
"altzone"
,
(
janzone
<
julyzone
)
?
janzone
:
julyzone
);
get_zone
(
julyname
,
9
,
&
p
);
julyzone
=
-
get_gmtoff
(
t
,
&
p
);
julyname
[
9
]
=
'\0'
;
if
(
janzone
<
julyzone
)
{
/* DST is reversed in the southern hemisphere */
PyModule_AddIntConstant
(
m
,
"timezone"
,
julyzone
);
PyModule_AddIntConstant
(
m
,
"altzone"
,
janzone
);
PyModule_AddIntConstant
(
m
,
"daylight"
,
janzone
!=
julyzone
);
PyModule_AddObject
(
m
,
"tzname"
,
Py_BuildValue
(
"(zz)"
,
julyname
,
janname
));
}
else
{
PyModule_AddIntConstant
(
m
,
"timezone"
,
janzone
);
PyModule_AddIntConstant
(
m
,
"altzone"
,
julyzone
);
PyModule_AddIntConstant
(
m
,
"daylight"
,
janzone
!=
julyzone
);
PyModule_AddObject
(
m
,
"tzname"
,
Py_BuildValue
(
"(zz)"
,
janname
,
julyname
));
}
}
#else
PyModule_AddIntConstant
(
m
,
"altzone"
,
timezone
-
3600
);
#endif
PyModule_AddIntConstant
(
m
,
"daylight"
,
daylight
);
otz0
=
PyUnicode_DecodeLocale
(
tzname
[
0
],
"surrogateescape"
);
otz1
=
PyUnicode_DecodeLocale
(
tzname
[
1
],
"surrogateescape"
);
PyModule_AddObject
(
m
,
"tzname"
,
Py_BuildValue
(
"(NN)"
,
otz0
,
otz1
));
#ifdef __CYGWIN__
tzset
();
PyModule_AddIntConstant
(
m
,
"timezone"
,
_timezone
);
PyModule_AddIntConstant
(
m
,
"altzone"
,
_timezone
-
3600
);
PyModule_AddIntConstant
(
m
,
"daylight"
,
_daylight
);
PyModule_AddObject
(
m
,
"tzname"
,
Py_BuildValue
(
"(zz)"
,
_tzname
[
0
],
_tzname
[
1
]));
#endif
/* __CYGWIN__ */
#endif
/* !HAVE_TZNAME || __GLIBC__ || __CYGWIN__*/
}
...
...
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