summaryrefslogtreecommitdiff
path: root/Include
diff options
context:
space:
mode:
authorAlexander Belopolsky <alexander.belopolsky@gmail.com>2010-11-16 14:29:01 +0000
committerAlexander Belopolsky <alexander.belopolsky@gmail.com>2010-11-16 14:29:01 +0000
commit83283c270a56db084f019843209a43f9f06d38e0 (patch)
treebfe4067aafaacfc85536cdb5fffe6345dbb4d455 /Include
parent8593ae64518bb6d42a330a4015f875c7d9a42d18 (diff)
downloadcpython-git-83283c270a56db084f019843209a43f9f06d38e0.tar.gz
Issue #10413: Updated comments to reflect code changes
Diffstat (limited to 'Include')
-rw-r--r--Include/unicodeobject.h31
1 files changed, 13 insertions, 18 deletions
diff --git a/Include/unicodeobject.h b/Include/unicodeobject.h
index 0a3cfc69ca..2a207797f3 100644
--- a/Include/unicodeobject.h
+++ b/Include/unicodeobject.h
@@ -7,7 +7,8 @@
Unicode implementation based on original code by Fredrik Lundh,
modified by Marc-Andre Lemburg (mal@lemburg.com) according to the
-Unicode Integration Proposal (see file Misc/unicode.txt).
+Unicode Integration Proposal. (See
+http://www.egenix.com/files/python/unicode-proposal.txt).
Copyright (c) Corporation for National Research Initiatives.
@@ -354,8 +355,8 @@ typedef PY_UNICODE_TYPE Py_UNICODE;
for (i_ = 0; i_ < (length); i_++) t_[i_] = v_;\
} while (0)
-/* Check if substring matches at given offset. the offset must be
- valid, and the substring must not be empty */
+/* Check if substring matches at given offset. The offset must be
+ valid, and the substring must not be empty. */
#define Py_UNICODE_MATCH(string, offset, substring) \
((*((string)->str + (offset)) == *((substring)->str)) && \
@@ -483,8 +484,8 @@ PyAPI_FUNC(int) PyUnicode_Resize(
Coercion is done in the following way:
1. bytes, bytearray and other char buffer compatible objects are decoded
- under the assumptions that they contain data using the current
- default encoding. Decoding is done in "strict" mode.
+ under the assumptions that they contain data using the UTF-8
+ encoding. Decoding is done in "strict" mode.
2. All other objects (including Unicode objects) raise an
exception.
@@ -614,7 +615,7 @@ PyAPI_FUNC(int) PyUnicode_ClearFreeList(void);
Many of these APIs take two arguments encoding and errors. These
parameters encoding and errors have the same semantics as the ones
- of the builtin unicode() API.
+ of the builtin str() API.
Setting encoding to NULL causes the default encoding (UTF-8) to be used.
@@ -633,7 +634,8 @@ PyAPI_FUNC(int) PyUnicode_ClearFreeList(void);
/* Return a Python string holding the default encoded value of the
Unicode object.
- The resulting string is cached in the Unicode object for subsequent
+ Same as PyUnicode_AsUTF8String() except
+ the resulting string is cached in the Unicode object for subsequent
usage by this function. The cached version is needed to implement
the character buffer interface and will live (at least) as long as
the Unicode object itself.
@@ -648,14 +650,14 @@ PyAPI_FUNC(PyObject *) _PyUnicode_AsDefaultEncodedString(
PyObject *unicode,
const char *errors);
-/* Returns a pointer to the default encoding (normally, UTF-8) of the
+/* Returns a pointer to the default encoding (UTF-8) of the
Unicode object unicode and the size of the encoded representation
in bytes stored in *size.
In case of an error, no *size is set.
*** This API is for interpreter INTERNAL USE ONLY and will likely
- *** be removed or changed for Python 3.1.
+ *** be removed or changed in the future.
*** If you need to access the Unicode object as UTF-8 bytes string,
*** please use PyUnicode_AsUTF8String() instead.
@@ -666,7 +668,7 @@ PyAPI_FUNC(char *) _PyUnicode_AsStringAndSize(
PyObject *unicode,
Py_ssize_t *size);
-/* Returns a pointer to the default encoding (normally, UTf-8) of the
+/* Returns a pointer to the default encoding (UTF-8) of the
Unicode object unicode.
Use of this API is DEPRECATED since no size information can be
@@ -682,14 +684,7 @@ PyAPI_FUNC(char *) _PyUnicode_AsStringAndSize(
PyAPI_FUNC(char *) _PyUnicode_AsString(PyObject *unicode);
-/* Returns the currently active default encoding.
-
- The default encoding is currently implemented as run-time settable
- process global. This may change in future versions of the
- interpreter to become a parameter which is managed on a per-thread
- basis.
-
- */
+/* Returns "utf-8". */
PyAPI_FUNC(const char*) PyUnicode_GetDefaultEncoding(void);