diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-03-29 15:24:25 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-03-29 15:24:25 (GMT) |
commit | 5b63acd31e0e40c1a9a9e9762905b0054ff37994 (patch) | |
tree | 763a6e10d4c0fa64797f5311491a3cbeb0f7e5d9 /Demo/classes | |
parent | 672fbf519568bc295aa64992dcbabe0eebccb5fc (diff) | |
download | cpython-5b63acd31e0e40c1a9a9e9762905b0054ff37994.zip cpython-5b63acd31e0e40c1a9a9e9762905b0054ff37994.tar.gz cpython-5b63acd31e0e40c1a9a9e9762905b0054ff37994.tar.bz2 |
#2503 make singletons compared with "is" not == or !=
Thanks to Wummel for the patch
Diffstat (limited to 'Demo/classes')
-rwxr-xr-x | Demo/classes/Dbm.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Demo/classes/Dbm.py b/Demo/classes/Dbm.py index 482806a..892c103 100755 --- a/Demo/classes/Dbm.py +++ b/Demo/classes/Dbm.py @@ -50,7 +50,7 @@ def test(): value = d[key] print 'currently:', value value = input('value: ') - if value == None: + if value is None: del d[key] else: d[key] = value |