python2.5-compiler-package

Changeset

5:594cde91c7f1
2012-05-21 Paul Boddie raw files shortlog changelog graph Added copyright and modification details for the visitor changes.
docs/COPYRIGHT (file)
     1.1 --- a/docs/COPYRIGHT	Thu May 17 20:25:34 2012 +0200
     1.2 +++ b/docs/COPYRIGHT	Mon May 21 01:18:56 2012 +0200
     1.3 @@ -1,6 +1,8 @@
     1.4  Copyright information from Python 2.5.6
     1.5  ---------------------------------------
     1.6  
     1.7 +Copyright (c) 2012 Paul Boddie <paul@boddie.org.uk>
     1.8 +
     1.9  Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
    1.10  Python Software Foundation.  All rights reserved.
    1.11  
    1.12 @@ -26,3 +28,7 @@
    1.13  
    1.14  Added visit methods to the AST nodes for mutually-assisted dispatch to
    1.15  visitors.
    1.16 +
    1.17 +Changed the visitor dispatch mechanism to use the visit methods provided by
    1.18 +nodes instead of dynamically constructing a visitor method name for use with
    1.19 +getattr and thus obtaining a method for invocation.