Skip to content

Commit 159529d

Browse files
committed
new generators resource
1 parent 1edce3c commit 159529d

4 files changed

Lines changed: 21 additions & 1 deletion

File tree

all.html

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -759,6 +759,13 @@ <h2>Python generator resources</h2>
759759
on Stack Overflow has an impressive answer that clearly lays out the
760760
code and concepts involved with Python generators.</p>
761761
</li>
762+
<li>
763+
<p><a href="http://www.dabeaz.com/generators/">Generator Tricks for Systems Programmers</a>
764+
provides code examples for using generators. The material was originally
765+
presented in a PyCon workshop for systems programmers but is relevant to
766+
all Python developers working to understand appropriate ways to use
767+
generators.</p>
768+
</li>
762769
</ul>
763770
<h3>What's next after learning about generators?</h3>
764771
<h1>Comprehensions</h1>

feeds/all.atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2015-03-06T11:31:30Z</updated></feed>
2+
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2015-03-06T19:53:29Z</updated></feed>

generators.html

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,13 @@ <h2>Python generator resources</h2>
7171
on Stack Overflow has an impressive answer that clearly lays out the
7272
code and concepts involved with Python generators.</p>
7373
</li>
74+
<li>
75+
<p><a href="http://www.dabeaz.com/generators/">Generator Tricks for Systems Programmers</a>
76+
provides code examples for using generators. The material was originally
77+
presented in a PyCon workshop for systems programmers but is relevant to
78+
all Python developers working to understand appropriate ways to use
79+
generators.</p>
80+
</li>
7481
</ul>
7582
<h3>What's next after learning about generators?</h3>
7683
<div class="row">

source/content/pages/03-core-language/01-generators.markdown

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,11 @@ language as of Python 2.2 in 2001.
4646
on Stack Overflow has an impressive answer that clearly lays out the
4747
code and concepts involved with Python generators.
4848

49+
* [Generator Tricks for Systems Programmers](http://www.dabeaz.com/generators/)
50+
provides code examples for using generators. The material was originally
51+
presented in a PyCon workshop for systems programmers but is relevant to
52+
all Python developers working to understand appropriate ways to use
53+
generators.
54+
4955

5056
### What's next after learning about generators?

0 commit comments

Comments
 (0)