Home
last modified time | relevance | path

Searched refs:BINUNICODE (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython2/Lib/
Dpickle.py121 BINUNICODE = 'X' # " " " ; counted UTF-8 string argument variable
502 self.write(BINUNICODE + pack("<i", n) + encoding)
524 self.write(BINUNICODE + s + obj)
992 dispatch[BINUNICODE] = load_binunicode
/external/python/cpython3/Lib/
Dpickle.py130 BINUNICODE = b'X' # " " " ; counted UTF-8 string argument variable
859 self._write_large_bytes(BINUNICODE + pack("<I", n), encoded)
861 self.write(BINUNICODE + pack("<I", n) + encoded)
1367 dispatch[BINUNICODE[0]] = load_binunicode
/external/python/cpython2/Modules/
DcPickle.c52 #define BINUNICODE 'X' macro
1458 c_str[0] = BINUNICODE; in save_unicode()
4809 case BINUNICODE: in load()
5226 case BINUNICODE: in noload()
/external/python/cpython3/Modules/
D_pickle.c56 BINUNICODE = 'X', enumerator
2683 header[0] = BINUNICODE; in write_unicode_binary()
6943 OP_ARG(BINUNICODE, load_counted_binunicode, 4) in load()
/external/python/cpython3/Lib/test/
Dpickletester.py2952 header = (pickle.BINUNICODE +