mirror of
https://github.com/AdaCore/cpython.git
synced 2026-02-12 12:57:15 -08:00
For some reason Vim was just not wanting to tell me there was more instances of
'<>'.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user