From b75c7e51153a4cf904cdb48df9dce2d96d9a7966 Mon Sep 17 00:00:00 2001 From: Mark Pilgrim Date: Sat, 4 Jul 2009 01:03:08 -0400 Subject: [PATCH] added link to classes-and-iterators --- native-datatypes.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/native-datatypes.html b/native-datatypes.html index 11da33f..b5a54c1 100644 --- a/native-datatypes.html +++ b/native-datatypes.html @@ -31,7 +31,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 [FIXME xref] and files in [FIXME xref]. +

    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 [FIXME xref].

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