diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2005-11-19 18:43:38 +0000 |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2005-11-19 18:43:38 +0000 |
commit | f7209f3b0280f6e9a8001ee949ba311d6f3fb7f5 (patch) | |
tree | 6ddef4a4d44d3c7f163ea9994238acfe4bc00c63 /Doc/howto | |
parent | 5bfeafe7055cca89d99fab351ba125d5e8dc8f51 (diff) | |
download | cpython-f7209f3b0280f6e9a8001ee949ba311d6f3fb7f5.tar.gz |
Fix up incomplete sentence
Diffstat (limited to 'Doc/howto')
-rw-r--r-- | Doc/howto/unicode.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/unicode.rst b/Doc/howto/unicode.rst index 7ad61c14ba..dac5c7453f 100644 --- a/Doc/howto/unicode.rst +++ b/Doc/howto/unicode.rst @@ -246,7 +246,7 @@ abstract type called ``basestring``, which is also an ancestor of the ``str`` type; you can therefore check if a value is a string type with ``isinstance(value, basestring)``. Under the hood, Python represents Unicode strings as either 16- or 32-bit integers, depending on how the -Python interpreter was compiled, but this +Python interpreter was compiled. The ``unicode()`` constructor has the signature ``unicode(string[, encoding, errors])``. All of its arguments should be 8-bit strings. The first argument is converted |