[Python-checkins] python/dist/src/Lib/idlelib CallTips.py, 1.11, 1.12 (original) (raw)
rhettinger at users.sourceforge.net rhettinger at users.sourceforge.net
Tue May 4 04:35:06 EDT 2004
- Previous message: [Python-checkins] python/nondist/peps pep-0290.txt,1.13,1.14
- Next message: [Python-checkins] python/dist/src/Lib keyword.py, 1.13, 1.14 _strptime.py, 1.31, 1.32 ConfigParser.py, 1.62, 1.63 robotparser.py, 1.18, 1.19 webbrowser.py, 1.35, 1.36 gettext.py, 1.22, 1.23 httplib.py, 1.83, 1.84
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Update of /cvsroot/python/python/dist/src/Lib/idlelib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29494
Modified Files: CallTips.py Log Message: Testing for None should be done with 'is'
Index: CallTips.py
RCS file: /cvsroot/python/python/dist/src/Lib/idlelib/CallTips.py,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** CallTips.py 23 Jul 2003 15:42:13 -0000 1.11 --- CallTips.py 4 May 2004 08:34:56 -0000 1.12
*** 22,26 ****
def __init__(self, editwin=None):
! if editwin == None: # subprocess and test self.editwin = None return --- 22,26 ----
def __init__(self, editwin=None):
! if editwin is None: # subprocess and test self.editwin = None return
- Previous message: [Python-checkins] python/nondist/peps pep-0290.txt,1.13,1.14
- Next message: [Python-checkins] python/dist/src/Lib keyword.py, 1.13, 1.14 _strptime.py, 1.31, 1.32 ConfigParser.py, 1.62, 1.63 robotparser.py, 1.18, 1.19 webbrowser.py, 1.35, 1.36 gettext.py, 1.22, 1.23 httplib.py, 1.83, 1.84
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]