Added sentence in Section 13.5, «Tester l’échec» to make it clearer that we're passing a function to assertRaises, not a function name as a string. Thanks, Stephen.
Changed str example in Section 4.8, «Assembler les pièces» to use a user-defined function, since Python 2.2 obsoleted the old example by defining a doc string for the built-in dictionary methods. Thanks Eric.
Fixed capitalization typo in the tip on truth values in Section 3.2, «Présentation des listes». It's True and False, not true and false. Thanks to everyone who pointed this out.
Changed section titles of Section 3.1, «Présentation des dictionnaires», Section 3.2, «Présentation des listes», and Section 3.3, «Présentation des tuples». "Dictionaries 101" was a cute way of saying that this section was an beginner's introduction to dictionaries. American
colleges tend to use this numbering scheme to indicate introductory courses with no prerequisites, but apparently this is
a distinctly American tradition, and it was unnecessarily confusing my international readers. In my defense, when I initially
wrote these sections a year and a half ago, it never occurred to me that I would have international readers.
Upgraded to version 1.52 of the DocBookXSL stylesheets.
Upgraded to version 6.52 of processeur XSLTSAXON de Michael Kay.
Various accessibility-related stylesheet tweaks.
Somewhere between this revision and the last one, she said yes. The wedding will be next spring.
Added additional example in Section 16.2, «Trouver le chemin» to show how to run unit tests in the current working directory, instead of the directory where regression.py is located.
Modified explanation of how to derive a negative list index from a positive list index in Exemple 3.7, «Indices de liste négatifs». Thanks to Renauld for the suggestion.
Updated links on home page for downloading latest version of Python.
Added link on home page to Bruce Eckel's preliminary draft of Thinking in Python, a marvelous (and advanced) book on design patterns and how to implement them in Python.
Fixed mistake in Section 4.8, «Assembler les pièces» where I implied that you could not use is None to compare to a null value in Python. In fact, you can, and it's faster than == None. Thanks to Ori pointing this out.
Clarified in Section 3.2, «Présentation des listes» where I said that li = li + other was equivalent to li.extend(other). The result is the same, but extend is faster because it doesn't create a new list. Thanks to Denis pointing this out.
Fixed mistake in Section 3.2, «Présentation des listes» where I said that li += other was equivalent to li = li + other. In fact, it's equivalent to li.extend(other), since it doesn't create a new list. Thanks to Denis pointing this out.
Fixed typographical laziness in Chapitre 2, Votre premier programme Python; when I was writing it, I had not yet standardized on putting string literals in single quotes within the text. They were
set off by typography, but this is lost in some renditions of the book (like plain text), making it difficult to read. Thanks
to Denis for this suggestion.
Fixed mistake in Section 2.2, «Déclaration de fonctions» where I said that statically typed languages always use explicit variable + datatype declarations to enforce static typing.
Most do, but there are some statically typed languages where the compiler figures out what type the variable is based on
usage within the code. Thanks to Tony for pointing this out.
Added link to French translation. They did the right thing and translated the source XML, so they can re-use all my build scripts and make their work available in six different formats.
Upgraded to version 1.43 of the DocBookXSL stylesheets.
Upgraded to version 6.43 of processeur XSLTSAXON de Michael Kay.
Massive stylesheet changes, moving away from a table-based layout and towards more appropriate use of cascading style sheets.
Unfortunately, CSS has as many compatibility problems as anything else, so there are still some tables used in the header and footer. The resulting
HTML version looks worse in Netscape 4, but better in modern browsers, including Netscape 6, Mozilla, Internet Explorer 5, Opera 5, Konqueror, and iCab. And it's still completely readable in Lynx. I love Lynx. It was my first web browser. You never forget your first.
Moved to Ant to have better control over the build process, which is especially important now that I'm juggling six output formats and
two languages.
Consolidated the available downloadable archives; previously, I had different files for each platform, because the .zip files
that Python's zipfile module creates are non-standard and can't be opened by Aladdin Expander on MacOS. But the .zip files that Ant creates are completely standard and cross-platform. Go Ant!
Now hosting the complete XML source, XSL stylesheets, and associated scripts and libraries on SourceForge. There's also CVS access for the really adventurous.
Re-licensed the example code under the new-and-improved GPL-compatible Python 2.1.1 license. Thanks, Guido; people really do care, and it really does matter.
The PDF and Word versions now have colorized examples, an improved table of contents, and properly indented tips and notes.
The Word version is now in native Word format, compatible with Word 97.
The PDF and text versions now have fewer problems with improperly converted special characters (like trademark symbols and curly
quotes).
Added link to download Word version for UNIX, in case some twisted soul wants to import it into StarOffice or something.
Fixed several notes which were missing titles.
Fixed stylesheets to work around bug in Internet Explorer 5 for MacOS which caused colorized words in the examples to be displayed in the wrong font. (Hello?!? Microsoft? Which part of <pre> don't you understand?)
Fixed archive corruption in MacOS downloads.
In first section of each chapter, added link to download examples. (My access logs show that people skim or skip the two
pages where they could have downloaded them (the home page and preface), then scramble to find a download link once they actually start reading.)
Tightened the home page and preface even more, in the hopes that someday someone will read them.
Soon I hope to get back to actually writing this book instead of debugging it.
Fixed important error in Section 2.2, «Déclaration de fonctions»: functions that do not explicitly return a value return None, so you can assign the return value of such a function to a variable without raising an exception.
More minor stylesheet tweaks, including adding titles to link tags, which, if your browser is cool enough, will display a description of the link target in a cute little tooltip.
2001-01-03 (1.71)
Made several modifications to stylesheets to improve browser compatibility.
Wrote scripts to convert book to new output formats: one single HTML file, PDF, Microsoft Word 97, and plain text.
Registered the diveintopython.org domain and moved the book there, along with links to download the book in all available output formats for offline reading.
Modified the XSL stylesheets to change the header and footer navigation that displays on each page. The top of each page is branded with
the domain name and book version, followed by a breadcrumb trail to jump back to the chapter table of contents, the main table
of contents, or the site home page.
Added additional note about if__name__ trick under MacPython.
Switched to processeur XSLTSAXON de Michael Kay.
Upgraded to version 1.24 of the DocBookXSL stylesheets.
Added db-html processing instructions with explicit filenames of each chapter and section, to allow deep links to content
even if I add or re-arrange sections later.
Made several common phrases into entities for easier reuse.
Changed several literal tags to constant.
2000-11-09 (1.3)
Added section on dynamic code execution.
Added links to relevant section/example wherever I refer to previously covered concepts.
Explicitly placed example code under the GNU General Public License and added appendix to display license. [Note 8/16/2001: code has been re-licensed under GPL-compatible Python license]
Changed links to licenses to use xref tags, now that I know how to use them.
2000-11-06 (1.2)
Added first four sections of chapter 2.
Tightened up preface even more, and added link to MacOS version of Python.
Filled out examples in "Mapping lists" and "Joining strings" to show logical progression.
Added output in chapter 1 summary.
2000-10-31 (1.1)
Finished chapter 1 with sections on mapping and joining, and a chapter summary.
Toned down the preface, added links to introductions for non-programmers.