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
37805e5c
Kaydet (Commit)
37805e5c
authored
Nis 18, 2010
tarafından
Ronald Oussoren
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix for issue #7072
üst
cf445fce
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
2 deletions
+19
-2
pyport.h
Include/pyport.h
+10
-1
test_locale.py
Lib/test/test_locale.py
+7
-1
NEWS
Misc/NEWS
+2
-0
No files found.
Include/pyport.h
Dosyayı görüntüle @
37805e5c
...
@@ -666,6 +666,16 @@ extern int fdatasync(int);
...
@@ -666,6 +666,16 @@ extern int fdatasync(int);
#ifdef __FreeBSD__
#ifdef __FreeBSD__
#include <osreldate.h>
#include <osreldate.h>
#if __FreeBSD_version > 500039
#if __FreeBSD_version > 500039
# define _PY_PORT_CTYPE_UTF8_ISSUE
#endif
#endif
#if defined(__APPLE__)
# define _PY_PORT_CTYPE_UTF8_ISSUE
#endif
#ifdef _PY_PORT_CTYPE_UTF8_ISSUE
#include <ctype.h>
#include <ctype.h>
#include <wctype.h>
#include <wctype.h>
#undef isalnum
#undef isalnum
...
@@ -683,7 +693,6 @@ extern int fdatasync(int);
...
@@ -683,7 +693,6 @@ extern int fdatasync(int);
#undef toupper
#undef toupper
#define toupper(c) towupper(btowc(c))
#define toupper(c) towupper(btowc(c))
#endif
#endif
#endif
/* Declarations for symbol visibility.
/* Declarations for symbol visibility.
...
...
Lib/test/test_locale.py
Dosyayı görüntüle @
37805e5c
...
@@ -10,7 +10,13 @@ enUS_locale = None
...
@@ -10,7 +10,13 @@ enUS_locale = None
def
get_enUS_locale
():
def
get_enUS_locale
():
global
enUS_locale
global
enUS_locale
if
sys
.
platform
==
'darwin'
:
if
sys
.
platform
==
'darwin'
:
raise
unittest
.
SkipTest
(
"Locale support on MacOSX is minimal"
)
import
os
tlocs
=
(
"en_US.UTF-8"
,
"en_US.ISO8859-1"
,
"en_US"
)
if
int
(
os
.
uname
()[
2
]
.
split
(
'.'
)[
0
])
<
10
:
# The locale test work fine on OSX 10.6, I (ronaldoussoren)
# haven't had time yet to verify if tests work on OSX 10.5
# (10.4 is known to be bad)
raise
unittest
.
SkipTest
(
"Locale support on MacOSX is minimal"
)
if
sys
.
platform
.
startswith
(
"win"
):
if
sys
.
platform
.
startswith
(
"win"
):
tlocs
=
(
"En"
,
"English"
)
tlocs
=
(
"En"
,
"English"
)
else
:
else
:
...
...
Misc/NEWS
Dosyayı görüntüle @
37805e5c
...
@@ -15,6 +15,8 @@ Core and Builtins
...
@@ -15,6 +15,8 @@ Core and Builtins
- Issue #8417: Raise an OverflowError when an integer larger than sys.maxsize is
- Issue #8417: Raise an OverflowError when an integer larger than sys.maxsize is
passed to bytearray.
passed to bytearray.
- Issue #7072: isspace(0xa0) is true on Mac OS X
Library
Library
-------
-------
...
...
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