From ec3c0f9a9020c80e564f2a6c8cdc87c51ca86bb2 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Tue, 6 Jan 2026 00:01:08 +0900 Subject: [PATCH] Drop reference to removed hacking checks The actual check implementations were removed by [1]. [1] 478502b3dfb8c3ff66318169377251826563a398 Change-Id: I7af92462f56d7688aa8d144fa53d1c3293139a02 Signed-off-by: Takashi Kajinami --- HACKING.rst | 3 --- 1 file changed, 3 deletions(-) diff --git a/HACKING.rst b/HACKING.rst index d51217054..486a42d67 100644 --- a/HACKING.rst +++ b/HACKING.rst @@ -10,9 +10,6 @@ Neutron Library Specific Commandments - [N521] Validate that jsonutils module is used instead of json - [N524] Prevent use of deprecated contextlib.nested. -- [N525] Python 3: Do not use xrange. -- [N526] Python 3: do not use basestring. -- [N527] Python 3: do not use dict.iteritems. - [N529] Method's default argument shouldn't be mutable - [N530] No importing of neutron; should be ignored in neutron itself - [N532] Validate that LOG.warning is used instead of LOG.warn. The latter is deprecated.