|
|
6 Member(s) Online
- Overview
- Presentations
- Con Activities
- Travel/Lodging/Food
- Help Out
- Past Cons
PyCon is a 100% Volunteer-run Conference Organized by Members of the Python Community.
Site/Questions etc ?
|
|
|
How to Optimize Your Python Programs?
- optimization - speed or memory?
- common mistakes
- use of repeated append on strings
- not using Numeric when doing array operations
- close your handles, release your objects where possible
- what slows Python down?
- methods to speed things up
- pre-binding
- push looping into C extensions
- code in C extensions releases global lock and speeds up execution on multicores
- shrinking your memory footprint
|