summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2011-10-05 16:47:38 +0200
committerGeorg Brandl <georg@python.org>2011-10-05 16:47:38 +0200
commit07de325672c00351647b57f5ae7fadd85d4dd747 (patch)
treed8aa08df61d6a1bcfd31ef32c4f5b706b2f22426
parent7597addbd4f56e6a3a8a595db404824c5f825c3a (diff)
downloadcpython-git-07de325672c00351647b57f5ae7fadd85d4dd747.tar.gz
More fixes.
-rw-r--r--Include/unicodeobject.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/unicodeobject.h b/Include/unicodeobject.h
index 3207bdafbe..9ddc026367 100644
--- a/Include/unicodeobject.h
+++ b/Include/unicodeobject.h
@@ -468,7 +468,7 @@ PyAPI_DATA(PyTypeObject) PyUnicodeIter_Type;
/* Write into the canonical representation, this macro does not do any sanity
checks and is intended for usage in loops. The caller should cache the
- kind and data pointers obtained form other macro calls.
+ kind and data pointers obtained from other macro calls.
index is the index in the string (starts at 0) and value is the new
code point value which should be written to that location. */
#define PyUnicode_WRITE(kind, data, index, value) \
@@ -489,7 +489,7 @@ PyAPI_DATA(PyTypeObject) PyUnicodeIter_Type;
} \
} while (0)
-/* Read a code point form the string's canonical representation. No checks
+/* Read a code point from the string's canonical representation. No checks
or ready calls are performed. */
#define PyUnicode_READ(kind, data, index) \
((Py_UCS4) \