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
2ea2c9d1
Kaydet (Commit)
2ea2c9d1
authored
Nis 19, 2002
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Patch #546194: Check constants individually. Fixes 534143 on OpenBSD.
Will backport to 2.2.
üst
4f109c1c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
2 deletions
+19
-2
_localemodule.c
Modules/_localemodule.c
+19
-2
No files found.
Modules/_localemodule.c
Dosyayı görüntüle @
2ea2c9d1
...
...
@@ -482,19 +482,36 @@ struct langinfo_constant{
LANGINFO
(
AM_STR
),
LANGINFO
(
PM_STR
),
/* The following constants are available only with XPG4. AIX 3.2. only has
CODESET. */
/* The following constants are available only with XPG4, but...
AIX 3.2. only has CODESET.
OpenBSD doesn't have CODESET but has T_FMT_AMPM, and doesn't have
a few of the others.
Solution: ifdef-test them all. */
#ifdef CODESET
LANGINFO
(
CODESET
),
#endif
#ifdef T_FMT_AMPM
LANGINFO
(
T_FMT_AMPM
),
#endif
#ifdef ERA
LANGINFO
(
ERA
),
#endif
#ifdef ERA_D_FMT
LANGINFO
(
ERA_D_FMT
),
#endif
#ifdef ERA_D_T_FMT
LANGINFO
(
ERA_D_T_FMT
),
#endif
#ifdef ERA_T_FMT
LANGINFO
(
ERA_T_FMT
),
#endif
#ifdef ALT_DIGITS
LANGINFO
(
ALT_DIGITS
),
#endif
#ifdef YESEXPR
LANGINFO
(
YESEXPR
),
#endif
#ifdef NOEXPR
LANGINFO
(
NOEXPR
),
#endif
#ifdef _DATE_FMT
...
...
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