From a2602c5af011166917bf7e19bdd5ba9e449c5362 Mon Sep 17 00:00:00 2001 From: Mark Pilgrim Date: Fri, 22 May 2009 12:48:05 -0400 Subject: [PATCH] clarified wording --- strings.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/strings.html b/strings.html index 802148e..8c4853e 100644 --- a/strings.html +++ b/strings.html @@ -358,8 +358,8 @@ TypeError: Can't convert 'bytes' object to str implicitly
  1. This is a string. It has nine characters.
  2. This is a bytes object. It has 13 bytes. It is the sequence of bytes you get when you take a_string and encode it in UTF-8. -
  3. This is a bytes object. It has 11 bytes. It is the sequence of bytes you get when you take encode a_string in the GB18030 encoding. -
  4. This is a bytes object. It has 11 bytes. It is an entirely different sequence of bytes that you get by encoding a_string with the Big5 encoding algorithm. +
  5. This is a bytes object. It has 11 bytes. It is the sequence of bytes you get when you take a_string and encode it in GB18030. +
  6. This is a bytes object. It has 11 bytes. It is an entirely different sequence of bytes that you get when you take a_string and encode it in Big5.
  7. This is a string. It has nine characters. It is the sequence of characters you get when you take by and decode it using the Big5 encoding algorithm. It is identical to the original string.