From 3e3ac10890f0fc40fc4a1f4defb5b9bc8fa55ec4 Mon Sep 17 00:00:00 2001 From: Andrey Vlasovskikh Date: Tue, 3 Sep 2013 18:46:11 +0400 Subject: [PATCH] Note about unconditional redeclarations --- .../inspectionDescriptions/PyRedeclarationInspection.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/resources/inspectionDescriptions/PyRedeclarationInspection.html b/python/resources/inspectionDescriptions/PyRedeclarationInspection.html index c5bc954e07c4..1902a8f1a5c7 100644 --- a/python/resources/inspectionDescriptions/PyRedeclarationInspection.html +++ b/python/resources/inspectionDescriptions/PyRedeclarationInspection.html @@ -1,6 +1,6 @@ -This inspection detects redeclarations of names without being used in between, like this:
+This inspection detects unconditional redeclarations of names without being used in between, like this:
def x(): pass
 x = 2