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.