[Python-checkins] commit of r41481 - python/trunk/Doc/howto

andrew.kuchling@python.org andrew.kuchling at python.org
Sat Nov 19 19:43:39 CET 2005


Author: andrew.kuchling
Date: Sat Nov 19 19:43:38 2005
New Revision: 41481

Modified:
   python/trunk/Doc/howto/unicode.rst
Log:
Fix up incomplete sentence

Modified: python/trunk/Doc/howto/unicode.rst
==============================================================================
--- python/trunk/Doc/howto/unicode.rst	(original)
+++ python/trunk/Doc/howto/unicode.rst	Sat Nov 19 19:43:38 2005
@@ -246,7 +246,7 @@
 ``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 


More information about the Python-checkins mailing list