diff options
Diffstat (limited to 'Lib/os.py')
-rw-r--r-- | Lib/os.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -446,7 +446,7 @@ class _Environ(MutableMapping): return len(self.data) def __repr__(self): - return 'environ({})'.format(', '.join( + return 'environ({{{}}})'.format(', '.join( ('{!r}: {!r}'.format(self.decodekey(key), self.decodevalue(value)) for key, value in self.data.items()))) |