Author: Maciej Fijalkowski <[email protected]> Branch: extradoc Changeset: r4119:d053d843db56 Date: 2012-03-05 13:50 -0800 http://bitbucket.org/pypy/extradoc/changeset/d053d843db56/
Log: work on slides diff --git a/talk/pycon2012/tutorial/slides.rst b/talk/pycon2012/tutorial/slides.rst --- a/talk/pycon2012/tutorial/slides.rst +++ b/talk/pycon2012/tutorial/slides.rst @@ -192,12 +192,23 @@ Specialized lists ================= -* xxx +* lists are specialized for type - ``int``, ``float``, ``str``, ``unicode`` and + ``range``. + +* appending a new type to an existing list makes you iterate over the entire + list and rewrite everything. Itertools abuse =============== -XXX +* some examples + +* simple is good + +* python is vast + +* if we've never seen a use of some piece of stdlib, chances are it'll be + suboptimal on pypy Obscure stuff ============= @@ -206,6 +217,10 @@ * List comprehension vs generator expression +* Profiling & tracing hooks + +* A bit in the state of flux + JitViewer ========= @@ -230,5 +245,3 @@ * Functions are inlined * Sometimes completely twisted flow - -XXX examples, including two nested loops _______________________________________________ pypy-commit mailing list [email protected] http://mail.python.org/mailman/listinfo/pypy-commit
