# HG changeset patch # User Paul Boddie # Date 1337555971 -7200 # Node ID 2aaf213c4bf185bfed9e88b097745c89851525b2 # Parent be84e10419c4b939156d7c8faac6cc8c66d2d9bb Added copyright and modification details for the visitor changes. diff -r be84e10419c4 -r 2aaf213c4bf1 docs/COPYRIGHT --- a/docs/COPYRIGHT Fri May 18 23:48:47 2012 +0200 +++ b/docs/COPYRIGHT Mon May 21 01:19:31 2012 +0200 @@ -1,6 +1,8 @@ Copyright information from Python 2.7.3 --------------------------------------- +Copyright (c) 2012 Paul Boddie + Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Python Software Foundation. All rights reserved. @@ -26,3 +28,7 @@ Added visit methods to the AST nodes for mutually-assisted dispatch to visitors. + +Changed the visitor dispatch mechanism to use the visit methods provided by +nodes instead of dynamically constructing a visitor method name for use with +getattr and thus obtaining a method for invocation.