Lancelot SIX
f9e59d060f
Use is/is not to check for None in python code.
...
While reviewing a patch sent to the mailing list, I noticed there are few
places where python code checks if a variable is 'None' or not by using the
comparison operators '==' and '!='. PEP8[1], which is used as coding standard
in GDB coding standards, recommends using 'is' / 'is not' when comparing to a
singleton such as 'None'.
This patch proposes to change the instances of '== None' by 'is None' and
'!= None' by 'is not None'.
[1] https://www.python.org/dev/peps/pep-0008/
gdb/doc/ChangeLog:
* python.texi (Writing a Pretty-Printer): Use 'is None' instead of
'== None'.
gdb/ChangeLog:
* python/lib/gdb/FrameDecorator.py (FrameDecorator): Use 'is None' instead of
'== None'.
(FrameVars): Use 'is not None' instead of '!= None'.
* python/lib/gdb/command/frame_filters.py (SetFrameFilterPriority): Use 'is None'
instead of '== None' and 'is not None' instead of '!= None'.
gdb/testsuite/ChangeLog:
* gdb.base/premature-dummy-frame-removal.py (TestUnwinder): Use
'is None' instead of '== None' and 'is not None' instead of
'!= None'.
* gdb.python/py-frame-args.py (lookup_function): Same.
* gdb.python/py-framefilter-invalidarg.py (Reverse_Function): Same.
* gdb.python/py-framefilter.py (Reverse_Function): Same.
* gdb.python/py-nested-maps.py (lookup_function): Same.
* gdb.python/py-objfile-script-gdb.py (lookup_function): Same.
* gdb.python/py-prettyprint.py (lookup_function): Same.
* gdb.python/py-section-script.py (lookup_function): Same.
* gdb.python/py-unwind-inline.py (dummy_unwinder): Same.
* gdb.python/python.exp: Same.
* gdb.rust/pp.py (lookup_function): Same.
2021-06-08 23:49:05 +01:00
..
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-04-22 15:01:28 -04:00
2021-05-04 11:20:19 -04:00
2021-01-01 12:12:21 +04:00
2021-03-12 12:18:33 +00:00
2021-04-27 11:22:32 -04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-03-15 09:21:37 +00:00
2021-05-07 10:56:20 -04:00
2021-03-15 09:21:37 +00:00
2021-05-07 10:56:20 -04:00
2021-03-15 09:21:37 +00:00
2021-03-15 09:21:37 +00:00
2021-04-27 11:22:32 -04:00
2021-04-27 11:22:32 -04:00
2021-04-27 11:22:32 -04:00
2021-04-27 11:22:32 -04:00
2021-04-27 11:22:32 -04:00
2021-01-01 12:12:21 +04:00
2021-03-12 12:18:34 +00:00
2021-05-07 10:56:20 -04:00
2021-01-01 12:12:21 +04:00
2021-03-12 12:18:33 +00:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-05-07 10:56:20 -04:00
2021-01-01 12:12:21 +04:00
2021-01-21 18:55:45 +01:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-05-07 10:56:20 -04:00
2021-01-01 12:12:21 +04:00
2021-05-07 10:56:20 -04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-06-03 21:22:08 +01:00
2021-06-03 21:22:08 +01:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-03-12 12:18:33 +00:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-03-12 12:18:33 +00:00
2021-01-01 12:12:21 +04:00
2021-03-12 12:18:34 +00:00
2021-05-07 10:56:20 -04:00
2021-01-01 12:12:21 +04:00
2021-03-12 12:18:33 +00:00
2021-05-07 10:56:20 -04:00
2021-05-14 06:51:21 +01:00
2021-05-14 06:51:21 +01:00
2021-05-07 10:56:20 -04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-06-08 23:49:05 +01:00
2021-01-01 12:12:21 +04:00
2021-03-12 12:18:34 +00:00
2021-03-12 12:18:34 +00:00
2021-03-16 09:31:56 +00:00
2021-03-16 09:31:56 +00:00
2021-05-07 10:56:20 -04:00
2021-05-17 14:58:26 -04:00
2021-05-17 14:58:26 -04:00
2021-05-17 14:58:26 -04:00
2021-06-08 23:49:05 +01:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-05-17 14:58:26 -04:00
2021-06-08 23:49:05 +01:00
2021-01-01 12:12:21 +04:00
2021-05-14 15:33:23 +02:00
2021-03-12 12:18:34 +00:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-03-12 12:18:33 +00:00
2021-05-07 10:56:20 -04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-05-07 10:56:20 -04:00
2021-03-12 12:18:33 +00:00
2021-01-01 12:12:21 +04:00
2021-05-14 06:51:21 +01:00
2021-06-08 23:49:05 +01:00
2021-06-08 23:49:05 +01:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-04-15 21:33:58 +01:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-05-07 10:56:20 -04:00
2021-01-01 12:12:21 +04:00
2021-03-12 12:18:33 +00:00
2021-05-07 10:56:20 -04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-05-07 10:56:20 -04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-05-07 10:56:20 -04:00
2021-03-26 17:43:14 +00:00
2021-05-07 10:56:20 -04:00
2021-06-08 23:49:05 +01:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-03-12 12:18:33 +00:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-05-07 10:56:20 -04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-02-11 07:23:42 +10:30
2021-06-08 23:49:05 +01:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-05-03 12:21:00 +01:00
2021-01-01 12:12:21 +04:00
2021-03-12 12:18:33 +00:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-06-05 14:46:30 +02:00
2021-03-12 12:18:33 +00:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-05-04 22:19:05 -04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-05-07 10:56:20 -04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-06-08 23:49:05 +01:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-05-07 10:56:20 -04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-05-07 10:56:20 -04:00
2021-01-01 12:12:21 +04:00
2021-03-12 12:18:34 +00:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-05-07 10:56:20 -04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-06-08 23:49:05 +01:00
2021-01-01 12:12:21 +04:00
2021-05-07 10:56:20 -04:00
2021-02-08 11:56:16 +00:00
2021-02-08 11:56:16 +00:00
2021-05-07 10:56:20 -04:00
2021-02-08 11:55:05 +00:00
2021-05-07 10:56:20 -04:00