Home
last modified time | relevance | path

Searched refs:decode_source (Results 1 – 6 of 6) sorted by relevance

/third_party/python/Lib/importlib/
Dutil.py10 from ._bootstrap_external import decode_source
D_bootstrap_external.py704 def decode_source(source_bytes): function
940 return decode_source(source_bytes)
/third_party/python/Lib/test/test_importlib/
Dtest_util.py25 self.assertEqual(self.util.decode_source(source_bytes), self.source)
31 self.assertEqual(self.util.decode_source(source_bytes), source)
36 self.assertEqual(self.util.decode_source(source_bytes),
/third_party/python/Doc/library/
Dimportlib.rst1534 .. function:: decode_source(source_bytes)
/third_party/python/Doc/whatsnew/
D3.4.rst1013 :mod:`importlib.util` has a new function :func:`~importlib.util.decode_source`
/third_party/python/Misc/
DHISTORY4862 - Issue #18076: Introduce importlib.util.decode_source().