Home
last modified time | relevance | path

Searched refs:bytes_types (Results 1 – 4 of 4) sorted by relevance

/third_party/python/Lib/
Dbase64.py32 bytes_types = (bytes, bytearray) # Types acceptable as binary data variable
40 if isinstance(s, bytes_types):
174 if not isinstance(s, bytes_types):
305 if not isinstance(b, bytes_types):
Dpickletools.py21 bytes_types = pickle.bytes_types variable
2269 if isinstance(data, bytes_types):
Dpickle.py51 bytes_types = (bytes, bytearray) variable
1212 assert isinstance(key, bytes_types)
1759 assert isinstance(res, bytes_types)
/third_party/python/Lib/test/
Dpickletester.py35 from pickle import bytes_types
2229 self.assertIsInstance(s, bytes_types)