[Python-Dev] optimizing out local variables
Neal Norwitz
nnorwitz at gmail.com
Mon Feb 25 03:27:40 CET 2008
More information about the Python-Dev mailing list
Mon Feb 25 03:27:40 CET 2008
- Previous message: [Python-Dev] Downloads Page
- Next message: [Python-Dev] optimizing out local variables
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Short description (see http://bugs.python.org/issue2181 for the patch and more details): Optimize code like: x = any_expression return x to: return any_expression The local variable x is no longer set before returning. Is this appropriate for .pyc generation or should it only be done for .pyo files? n
- Previous message: [Python-Dev] Downloads Page
- Next message: [Python-Dev] optimizing out local variables
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-Dev mailing list