wrote advanced-unit-testing chapter, decided to merge it into unit-testing. renumbered chapters and fixed up TOC and navigation

This commit is contained in:
Mark Pilgrim
2009-07-25 15:31:55 -04:00
parent 71821cfadc
commit e5b43fb442
19 changed files with 187 additions and 1933 deletions
+4 -6
View File
@@ -2,6 +2,10 @@
* Your First Python Program
** TODO mention why from module import * is only allowed at module level
* Native Datatypes
** TODO section (chapter?) on comprehensions
*** TODO list comprehensions
*** TODO set comprehensions
*** TODO dictionary comprehensions
* Strings
* Regular Expressions
* Closures & Generators
@@ -44,16 +48,10 @@
* TODO 2nd draft Special Method Names
* Bits to add somewhere
** TODO section on tuples
** TODO section (chapter?) on comprehensions
*** TODO list comprehensions
*** TODO set comprehensions
*** TODO dictionary comprehensions
** TODO section on dictionary views
several dictionary methods return them
they're dynamic
they update when the dictionary changes
** TODO function annotations?
** TODO PEP 8 style conventions
** TODO Decorators
[[http://docs.python.org/3.1/whatsnew/3.1.html][@unittest.skipUnless(sys.platform.startswith("win"), "requires Windows")]]
* Meta