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
ae735a76
Kaydet (Commit)
ae735a76
authored
Mar 22, 2010
tarafından
Ezio Melotti
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Update the version number of the Unicode Database in a few more places.
üst
3bcc35b7
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
14 deletions
+15
-14
unicode.rst
Doc/howto/unicode.rst
+1
-1
unicodedata.rst
Doc/library/unicodedata.rst
+3
-3
2.7.rst
Doc/whatsnew/2.7.rst
+7
-5
unicodedata.c
Modules/unicodedata.c
+4
-5
No files found.
Doc/howto/unicode.rst
Dosyayı görüntüle @
ae735a76
...
@@ -472,7 +472,7 @@ These are grouped into categories such as "Letter", "Number", "Punctuation", or
...
@@ -472,7 +472,7 @@ These are grouped into categories such as "Letter", "Number", "Punctuation", or
from the above output, ``'Ll'`` means 'Letter, lowercase', ``'No'`` means
from the above output, ``'Ll'`` means 'Letter, lowercase', ``'No'`` means
"Number, other", ``'Mn'`` is "Mark, nonspacing", and ``'So'`` is "Symbol,
"Number, other", ``'Mn'`` is "Mark, nonspacing", and ``'So'`` is "Symbol,
other". See
other". See
<http://
unicode.org/Public/5.1.0/ucd/UCD.html
#General_Category_Values> for a
<http://
www.unicode.org/reports/tr44/
#General_Category_Values> for a
list of category codes.
list of category codes.
References
References
...
...
Doc/library/unicodedata.rst
Dosyayı görüntüle @
ae735a76
...
@@ -16,12 +16,12 @@
...
@@ -16,12 +16,12 @@
This module provides access to the Unicode Character Database which defines
This module provides access to the Unicode Character Database which defines
character properties for all Unicode characters. The data in this database is
character properties for all Unicode characters. The data in this database is
based on the :file:`UnicodeData.txt` file version 5.
1
.0 which is publicly
based on the :file:`UnicodeData.txt` file version 5.
2
.0 which is publicly
available from ftp://ftp.unicode.org/.
available from ftp://ftp.unicode.org/.
The module uses the same names and symbols as defined by the UnicodeData File
The module uses the same names and symbols as defined by the UnicodeData File
Format 5.
1.0 (see http://www.unicode.org/Public/5.1.0/ucd/UCD.html). It defines
Format 5.
2.0 (see http://www.unicode.org/reports/tr44/). It defines the
the
following functions:
following functions:
.. function:: lookup(name)
.. function:: lookup(name)
...
...
Doc/whatsnew/2.7.rst
Dosyayı görüntüle @
ae735a76
...
@@ -933,11 +933,13 @@ changes, or look through the Subversion logs for all the details.
...
@@ -933,11 +933,13 @@ changes, or look through the Subversion logs for all the details.
a timeout was provided and the operation timed out.
a timeout was provided and the operation timed out.
(Contributed by Tim Lesher; :issue:`1674032`.)
(Contributed by Tim Lesher; :issue:`1674032`.)
* The Unicode database provided by the :mod:`unicodedata` module
* The Unicode database has been updated to the version 5.2.0.
remains at version 5.1.0, but Python now uses it internally to
(Updated by Florent Xicluna; :issue:`8024`.)
determine which characters are numeric, whitespace, or represent
line breaks. The database also now includes information from the
* The Unicode database provided by the :mod:`unicodedata` is used
:file:`Unihan.txt` data file. (Patch by Anders Chrigström
internally to determine which characters are numeric, whitespace,
or represent line breaks. The database also now includes information
from the :file:`Unihan.txt` data file. (Patch by Anders Chrigström
and Amaury Forgeot d'Arc; :issue:`1571184`.)
and Amaury Forgeot d'Arc; :issue:`1571184`.)
* The :class:`UserDict` class is now a new-style class. (Changed by
* The :class:`UserDict` class is now a new-style class. (Changed by
...
...
Modules/unicodedata.c
Dosyayı görüntüle @
ae735a76
/* ------------------------------------------------------------------------
/* ------------------------------------------------------------------------
unicodedata -- Provides access to the Unicode 5.
1
data base.
unicodedata -- Provides access to the Unicode 5.
2
data base.
Data was extracted from the Unicode 5.
1
UnicodeData.txt file.
Data was extracted from the Unicode 5.
2
UnicodeData.txt file.
Written by Marc-Andre Lemburg (mal@lemburg.com).
Written by Marc-Andre Lemburg (mal@lemburg.com).
Modified for Python 2.0 by Fredrik Lundh (fredrik@pythonware.com)
Modified for Python 2.0 by Fredrik Lundh (fredrik@pythonware.com)
...
@@ -1233,11 +1233,10 @@ PyDoc_STRVAR(unicodedata_docstring,
...
@@ -1233,11 +1233,10 @@ PyDoc_STRVAR(unicodedata_docstring,
"This module provides access to the Unicode Character Database which
\n
\
"This module provides access to the Unicode Character Database which
\n
\
defines character properties for all Unicode characters. The data in
\n
\
defines character properties for all Unicode characters. The data in
\n
\
this database is based on the UnicodeData.txt file version
\n
\
this database is based on the UnicodeData.txt file version
\n
\
5.
1
.0 which is publically available from ftp://ftp.unicode.org/.
\n
\
5.
2
.0 which is publically available from ftp://ftp.unicode.org/.
\n
\
\n
\
\n
\
The module uses the same names and symbols as defined by the
\n
\
The module uses the same names and symbols as defined by the
\n
\
UnicodeData File Format 5.1.0 (see
\n
\
UnicodeData File Format 5.2.0 (see http://www.unicode.org/reports/tr44/)."
);
http://www.unicode.org/Public/5.1.0/ucd/UCD.html)."
);
PyMODINIT_FUNC
PyMODINIT_FUNC
initunicodedata
(
void
)
initunicodedata
(
void
)
...
...
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