Home
last modified time | relevance | path

Searched refs:environb (Results 1 – 7 of 7) sorted by relevance

/third_party/python/Lib/
Dos.py787 environb = _Environ(environ._data, variable
796 return environb.get(key, default)
/third_party/python/Lib/test/
Dtest_os.py976 self.__saveb = dict(os.environb)
984 os.environb.clear()
985 os.environb.update(self.__saveb)
1091 self.assertEqual(os.environb[b'unicode'], value_bytes)
1095 os.environb[b'bytes'] = value
1096 self.assertEqual(os.environb[b'bytes'], value)
Dtest_subprocess.py2648 envb = os.environb.copy()
/third_party/python/Misc/NEWS.d/
D3.9.0a5.rst495 Updated :data:`os.environ` and :data:`os.environb` to support :pep:`584`'s
/third_party/python/Doc/library/
Dos.rst188 ``'surrogateescape'`` error handler. Use :data:`environb` if you would like
211 .. data:: environb
215 :data:`environ` and :data:`environb` are synchronized (modifying
216 :data:`environb` updates :data:`environ`, and vice versa).
218 :data:`environb` is only available if :data:`supports_bytes_environ` is
/third_party/python/Doc/whatsnew/
D3.2.rst1532 use the new :func:`os.getenvb` function or use :data:`os.environb`
/third_party/python/Misc/
DHISTORY4144 - Issue #17702: On error, os.environb now suppresses the exception context
13431 - Issue #8603: Support bytes environmental variables on Unix: Add os.environb