diff --git a/wxPython/CHANGES.txt b/wxPython/CHANGES.txt index f3f725e060..175782600b 100644 --- a/wxPython/CHANGES.txt +++ b/wxPython/CHANGES.txt @@ -54,7 +54,7 @@ Added Throbber from Cliff Wells to the library and the demo. Windows installer prompts to uninstall old version first. -Added wxPython.lib.evtmgr by Rob Schecter, which is an easier, more +Added wxPython.lib.evtmgr by Rob Shecter, which is an easier, more "Pythonic" and more OO method of registering handlers for wxWindows events using the Publish/Subscribe pattern. diff --git a/wxPython/wxPython/lib/evtmgr.py b/wxPython/wxPython/lib/evtmgr.py index d956318d62..b93513ddec 100644 --- a/wxPython/wxPython/lib/evtmgr.py +++ b/wxPython/wxPython/lib/evtmgr.py @@ -4,11 +4,11 @@ # handlers for wxWindows events using the Publish/Subscribe # pattern. # -# Author: Rob Schecter and Robin Dunn +# Author: Robb Shecter and Robin Dunn # # Created: 12-December-2002 # RCS-ID: $Id$ -# Copyright: (c) 2002 by Rob Schecter +# Copyright: (c) 2002 by Robb Shecter # Licence: wxWindows license #--------------------------------------------------------------------------- diff --git a/wxPython/wxPython/lib/pubsub.py b/wxPython/wxPython/lib/pubsub.py index 254706258b..3af5dd9795 100644 --- a/wxPython/wxPython/lib/pubsub.py +++ b/wxPython/wxPython/lib/pubsub.py @@ -2,11 +2,11 @@ # Name: wxPython.lib.pubsub # Purpose: The Publish/Subscribe framework used by evtmgr.EventManager # -# Author: Rob Schecter and Robin Dunn +# Author: Robb Shecter and Robin Dunn # # Created: 12-December-2002 # RCS-ID: $Id$ -# Copyright: (c) 2002 by Rob Schecter +# Copyright: (c) 2002 by Robb Shecter # Licence: wxWindows license #--------------------------------------------------------------------------- """