In article <calffu7bzoxttcgulpmrmiv4umbcos7joum8brzxxq+n25t4...@mail.gmail.com>, Eric Snow <ericsnowcurren...@gmail.com> wrote: > Specifically, I am wondering why there is a difference for co_names.
This is not an answer to your question but, as a metapoint, in my experience it is usually faster and often more reliable to try to answer questions like this yourself using the tools that the Python project provides: - clone a copy of the hg repository and update to the branch of interest - become familiar with the code layout (the developers guide can help with this (http://docs.python.org/devguide/) - use "hg annotate" to see what lines were changed by what rev sets and by whom - use "hg log -v <filename>" to browse the history entries for the file - look up the tracker issues referenced in those history entries and follow the discussions there The Python project has an effective process for code development and one that emphasizes good documentation of changes and additions. For instance, as part of the transition earlier this year from Subversion to Mercurial, great care was taken to preserve as much of the existing source history as possible going far back into the time machine. It's to your advantage to take advantage of these sources of history. -- Ned Deily, n...@acm.org -- http://mail.python.org/mailman/listinfo/python-list