From: Brett Cannon Date: Fri, 25 Aug 2006 01:08:24 +0000 (+0000) Subject: For some reason Vim was just not wanting to tell me there was more instances of X-Git-Tag: v3.0a1~1338 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7c90aed39df3fd6b2ef1500d5420c4dbf6f9401e;p=python For some reason Vim was just not wanting to tell me there was more instances of '<>'. --- diff --git a/Lib/plat-riscos/riscosenviron.py b/Lib/plat-riscos/riscosenviron.py index 6b0f82110d..ae09a9d887 100644 --- a/Lib/plat-riscos/riscosenviron.py +++ b/Lib/plat-riscos/riscosenviron.py @@ -39,7 +39,7 @@ class _Environ: riscos.putenv(k, v) def get(self, key, failobj=None): value = riscos.getenv(key) - if value<>None: + if value != None: return value else: return failobj