Changeset 731
- Timestamp:
- 03/05/10 23:25:34 (5 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
hodgestar/Talks/PythonForProgrammers/slides/slide-notes.txt
r730 r731 103 103 StringIO 104 104 reference counting / garbage collection 105 ABC 105 ABC (abc and collections) 106 lambda 106 107 107 ********** THIRD BREAK **********108 109 10.110 11. Packaging [setup.py]111 -112 12. Python World113 - Python community114 - Zen of Python115 - PEPs116 - PEP 8117 - SHOW PYTHON 2.6 DOCS!!!118 119 120 ********** END **********121 122 #== CD ==123 #124 #- Dive into Python125 #- Quick Reference126 #127 #== Keywords to Cover ==128 #129 #and del for is raise130 #assert elif from lambda return131 #break else global not try132 #class except if or while133 #continue exec import pass with134 #def finally in print yield135 #136 108 #*args, **kwargs 137 109 #unicode, encoding line for .py files. … … 140 112 #%timeit 141 113 #decorators 114 115 116 ********** THIRD BREAK ********** 117 118 119 Reference Counting and Garbage Collection 120 ----------------------------------------- 121 122 * Interned objects 123 * Turning garbage collection on and off 124 * Looking for object leaks 125 126 127 Packaging 128 --------- 129 130 * setup.py 131 * distutils 132 * setuptools, easyinstall 133 * distribute, pip 134 * PyPI 135 136 137 Interacting 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 150 Other Notes 151 =========== 152 153 154 CD Contents 155 ----------- 156 157 * Dive into Python 158 * Python Quick Reference 159 160 161 Keywords 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
