[Idle-dev] CVS: idle CallTips.py,1.4,1.4.2.1
Stephen M. Gava
elguavas@users.sourceforge.net
Tue, 06 Aug 2002 19:27:59 -0700
Update of /cvsroot/idlefork/idle
In directory usw-pr-cvs1:/tmp/cvs-serv32661
Modified Files:
Tag: DS_RPC_BRANCH
CallTips.py
Log Message:
tracking python/idle cvs changes
Index: CallTips.py
===================================================================
RCS file: /cvsroot/idlefork/idle/CallTips.py,v
retrieving revision 1.4
retrieving revision 1.4.2.1
diff -C2 -r1.4 -r1.4.2.1
*** CallTips.py 19 Jan 2002 10:39:47 -0000 1.4
--- CallTips.py 7 Aug 2002 02:27:57 -0000 1.4.2.1
***************
*** 64,68 ****
def get_object_at_cursor(self,
! wordchars="._" + string.uppercase + string.lowercase + string.digits):
# XXX - This needs to be moved to a better place
# so the "." attribute lookup code can also use it.
--- 64,71 ----
def get_object_at_cursor(self,
! wordchars="._" + string.ascii_letters + string.digits):
! # Usage of ascii_letters is necessary to avoid UnicodeErrors
! # if chars contains non-ASCII.
!
# XXX - This needs to be moved to a better place
# so the "." attribute lookup code can also use it.