Changeset 736

Show
Ignore:
Timestamp:
03/06/10 06:52:33 (5 months ago)
Author:
hodgestar
Message:

Flesh out rest of notes.

Files:
1 modified

Legend:

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

    r733 r736  
    3131* str / __str__ 
    3232* repr / __repr__ 
     33* Explore sys 
    3334 
    3435 
     
    8586********** SECOND BREAK ********** 
    8687 
    87 Scope 
    88 List Comprehension and Generator Expressions 
    89 Generators 
    9088 
    91 classmethods 
    92 staticmethods 
     89More OO 
     90------- 
    9391 
    94 7.  
    95 8. 
    96 9. 
     92* Scope, global 
     93* classmethods 
     94* staticmethods 
     95* super 
     96* ABC (abc and collections) 
     97* __slots__ 
     98* decorators 
    9799 
    98 pkg_resources 
    99 __slots__ 
    100 id() 
    101 threads 
    102 multiprocessing 
    103100 
    104 creating your own iterable / sequence / dict 
    105 StringIO 
    106 reference counting / garbage collection 
    107 ABC (abc and collections) 
    108 lambda 
     101Functional Programming 
     102---------------------- 
    109103 
    110 #*args, **kwargs 
    111 #unicode, encoding line for .py files. 
    112 # 
    113 #super 
    114 #%timeit 
    115 #decorators 
     104* List Comprehension 
     105* Generator Expressions 
     106* lambda 
     107* Iterators 
     108* Generators 
     109* creating your own iterable / sequence / dict 
     110 
     111 
     112Miscellaneous 
     113------------- 
     114 
     115* os, os.path 
     116* pkg_resources 
     117* id() 
     118* *args, **kwargs 
     119* unicode, encoding line for .py files. 
     120* threads 
     121* multiprocessing 
     122* StringIO 
    116123 
    117124 
     
    125132* gc 
    126133* Turning garbage collection on and off 
     134* Reference counting 
    127135* Looking for object leaks 
    128136* pdb 
     137* timeit, %timeit 
    129138 
    130139