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
239a218b
Kaydet (Commit)
239a218b
authored
Nis 28, 1998
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Type casts, and added a strdup() declaration for the Mac.
(Jack)
üst
9b00dfae
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
4 deletions
+7
-4
_localemodule.c
Modules/_localemodule.c
+7
-4
No files found.
Modules/_localemodule.c
Dosyayı görüntüle @
239a218b
/***********************************************************
Copyright (C) 1997 Martin von Lwis
Copyright (C) 1997 Martin von L
oe
wis
Permission to use, copy, modify, and distribute this software and its
documentation for any purpose and without fee is hereby granted,
...
...
@@ -14,6 +14,9 @@ This software comes with no warranty. Use at your own risk.
#include <string.h>
#include <limits.h>
#include "Python.h"
#ifdef macintosh
char
*
strdup
Py_PROTO
((
char
*
));
#endif
static
char
locale__doc__
[]
=
"Support for POSIX locales."
;
...
...
@@ -88,7 +91,7 @@ fixup_ulcase()
if
(
isupper
(
c
))
ul
[
n
++
]
=
c
;
}
ulo
=
PyString_FromStringAndSize
(
ul
,
n
);
ulo
=
PyString_FromStringAndSize
(
(
char
*
)
ul
,
n
);
if
(
!
ulo
)
return
;
if
(
string
)
PyDict_SetItemString
(
string
,
"uppercase"
,
ulo
);
...
...
@@ -101,7 +104,7 @@ fixup_ulcase()
if
(
islower
(
c
))
ul
[
n
++
]
=
c
;
}
ulo
=
PyString_FromStringAndSize
(
ul
,
n
);
ulo
=
PyString_FromStringAndSize
(
(
char
*
)
ul
,
n
);
if
(
!
ulo
)
return
;
if
(
string
)
PyDict_SetItemString
(
string
,
"lowercase"
,
ulo
);
...
...
@@ -114,7 +117,7 @@ fixup_ulcase()
if
(
isalpha
(
c
))
ul
[
n
++
]
=
c
;
}
ulo
=
PyString_FromStringAndSize
(
ul
,
n
);
ulo
=
PyString_FromStringAndSize
(
(
char
*
)
ul
,
n
);
if
(
!
ulo
)
return
;
if
(
string
)
PyDict_SetItemString
(
string
,
"letters"
,
ulo
);
...
...
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