[Python-checkins] python/dist/src/Lib optparse.py,1.9,1.10
nnorwitz at users.sourceforge.net
nnorwitz at users.sourceforge.net
Sun Oct 17 18:24:40 CEST 2004
Update of /cvsroot/python/python/dist/src/Lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32375/Lib
Modified Files:
optparse.py
Log Message:
Use proper value for False
Index: optparse.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/optparse.py,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- optparse.py 31 Jul 2004 16:15:44 -0000 1.9
+++ optparse.py 17 Oct 2004 16:24:25 -0000 1.10
@@ -767,7 +767,7 @@
elif isinstance(other, dict):
return self.__dict__ == other
else:
- return false
+ return False
def __ne__(self, other):
return not (self == other)
More information about the Python-checkins
mailing list