diff options
Diffstat (limited to 'gdb/testsuite/gdb.python/py-section-script.py')
-rw-r--r-- | gdb/testsuite/gdb.python/py-section-script.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/testsuite/gdb.python/py-section-script.py b/gdb/testsuite/gdb.python/py-section-script.py index aac70a0..8562e52 100644 --- a/gdb/testsuite/gdb.python/py-section-script.py +++ b/gdb/testsuite/gdb.python/py-section-script.py @@ -42,7 +42,7 @@ def lookup_function(val): # Get the type name. typename = type.tag - if typename == None: + if typename is None: return None # Iterate over local dictionary of types to determine |