split iterators-and-generators into 2 chapters, added stubs for introduction to python classes (in iterators chapter)

--HG--
rename : iterators-and-generators.html => generators.html
This commit is contained in:
Mark Pilgrim
2009-04-20 11:35:16 -04:00
parent 55af56f960
commit d77d31e68d
9 changed files with 354 additions and 257 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
"""Fibonacci iterator"""
class fib:
class Fib:
def __init__(self, max):
self.max = max