# HG changeset patch # User Paul Boddie # Date 1337555842 -7200 # Node ID 5a7da59adae66f7d5507b3a4242b2e741f8a89f7 # Parent 7d311a8054c61e7cb0847964fccdc9fc86798913 Added copyright and modification details for the visitor changes. diff -r 7d311a8054c6 -r 5a7da59adae6 docs/COPYRIGHT --- a/docs/COPYRIGHT Fri May 18 23:48:07 2012 +0200 +++ b/docs/COPYRIGHT Mon May 21 01:17:22 2012 +0200 @@ -1,6 +1,8 @@ Copyright information from Python 2.6.8 --------------------------------------- +Copyright (c) 2012 Paul Boddie + Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Python Software Foundation. @@ -28,3 +30,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.