mirror of
https://github.com/python/cpython.git
synced 2025-11-13 15:40:05 +00:00
For some reason Vim was just not wanting to tell me there was more instances of
'<>'.
This commit is contained in:
parent
0fc9139193
commit
7c90aed39d
1 changed files with 1 additions and 1 deletions
|
|
@ -39,7 +39,7 @@ class _Environ:
|
||||||
riscos.putenv(k, v)
|
riscos.putenv(k, v)
|
||||||
def get(self, key, failobj=None):
|
def get(self, key, failobj=None):
|
||||||
value = riscos.getenv(key)
|
value = riscos.getenv(key)
|
||||||
if value<>None:
|
if value != None:
|
||||||
return value
|
return value
|
||||||
else:
|
else:
|
||||||
return failobj
|
return failobj
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue