From cb1855408b37864849292ab39f4e3fd9719d7e71 Mon Sep 17 00:00:00 2001 From: Mark Pilgrim Date: Wed, 5 Aug 2009 16:07:00 -0700 Subject: [PATCH] typo --- native-datatypes.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/native-datatypes.html b/native-datatypes.html index fa398a0..44b1be7 100755 --- a/native-datatypes.html +++ b/native-datatypes.html @@ -32,7 +32,7 @@ body{counter-reset:h1 2}
  • Sets are unordered bags of values.
  • Dictionaries are unordered bags of key-value pairs. -

    Of course, there are a lot more types than these seven. Everything is an object in Python, so there are types like module, function, class, method, file, and even compiled code. You’ve already seen some of these: modules have names, functions have docstrings, &c. You’ll learn about classes in Classes & Iterators, and about files in Files. +

    Of course, there are more types than these. Everything is an object in Python, so there are types like module, function, class, method, file, and even compiled code. You’ve already seen some of these: modules have names, functions have docstrings, &c. You’ll learn about classes in Classes & Iterators, and about files in Files.

    Strings and bytes are important enough — and complicated enough — that they get their own chapter. Let’s look at the others first.