Changeset 731

Show
Ignore:
Timestamp:
03/05/10 23:25:34 (5 months ago)
Author:
hodgestar
Message:

Notes for last three slides.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • hodgestar/Talks/PythonForProgrammers/slides/slide-notes.txt

    r730 r731  
    103103StringIO 
    104104reference counting / garbage collection 
    105 ABC 
     105ABC (abc and collections) 
     106lambda 
    106107 
    107 ********** THIRD BREAK ********** 
    108  
    109 10. 
    110 11. Packaging [setup.py] 
    111    -  
    112 12. Python World 
    113    - Python community 
    114    - Zen of Python 
    115    - PEPs 
    116    - PEP 8 
    117    - SHOW PYTHON 2.6 DOCS!!! 
    118  
    119  
    120 ********** END ********** 
    121  
    122 #== CD == 
    123 # 
    124 #- Dive into Python 
    125 #- Quick Reference 
    126 # 
    127 #== Keywords to Cover ==  
    128 # 
    129 #and      del     for    is     raise 
    130 #assert   elif    from   lambda return 
    131 #break    else    global not    try 
    132 #class    except  if     or     while 
    133 #continue exec    import pass   with 
    134 #def      finally in     print  yield 
    135 # 
    136108#*args, **kwargs 
    137109#unicode, encoding line for .py files. 
     
    140112#%timeit 
    141113#decorators 
     114 
     115 
     116********** THIRD BREAK ********** 
     117 
     118 
     119Reference Counting and Garbage Collection 
     120----------------------------------------- 
     121 
     122* Interned objects 
     123* Turning garbage collection on and off 
     124* Looking for object leaks 
     125 
     126 
     127Packaging 
     128--------- 
     129 
     130* setup.py 
     131* distutils 
     132* setuptools, easyinstall 
     133* distribute, pip 
     134* PyPI 
     135 
     136 
     137Interacting with the Python Community 
     138------------------------------------- 
     139 
     140* Python community 
     141* Zen of Python 
     142* PEPs 
     143* PEP 8 
     144* SHOW PYTHON 2.6 DOCS!!! 
     145 
     146 
     147********** END ********** 
     148 
     149 
     150Other Notes 
     151=========== 
     152 
     153 
     154CD Contents 
     155----------- 
     156 
     157* Dive into Python 
     158* Python Quick Reference 
     159 
     160 
     161Keywords 
     162-------- 
     163 
     164  and      del     for    is     raise 
     165  assert   elif    from   lambda return 
     166  break    else    global not    try 
     167  class    except  if     or     while 
     168  continue exec    import pass   with 
     169  def      finally in     print  yield