Home | History | Annotate | Download | only in python2.7

Lines Matching refs:def

77     def __new__(cls, encode, decode, streamreader=None, streamwriter=None,
89 def __repr__(self):
114 def encode(self, input, errors='strict'):
133 def decode(self, input, errors='strict'):
162 def __init__(self, errors='strict'):
173 def encode(self, input, final=False):
179 def reset(self):
184 def getstate(self):
190 def setstate(self, state):
202 def __init__(self, errors='strict'):
206 def _buffer_encode(self, input, errors, final):
211 def encode(self, input, final=False):
219 def reset(self):
223 def getstate(self):
226 def setstate(self, state):
235 def __init__(self, errors='strict'):
245 def decode(self, input, final=False):
251 def reset(self):
256 def getstate(self):
270 def setstate(self, state):
284 def __init__(self, errors='strict'):
288 def _buffer_decode(self, input, errors, final):
293 def decode(self, input, final=False):
301 def reset(self):
305 def getstate(self):
309 def setstate(self, state):
322 def __init__(self, stream, errors='strict'):
347 def write(self, object):
354 def writelines(self, list):
361 def reset(self):
373 def seek(self, offset, whence=0):
378 def __getattr__(self, name,
385 def __enter__(self):
388 def __exit__(self, type, value, tb):
395 def __init__(self, stream, errors='strict'):
421 def decode(self, input, errors='strict'):
424 def read(self, size=-1, chars=-1, firstline=False):
503 def readline(self, size=None, keepends=True):
576 def readlines(self, sizehint=None, keepends=True):
591 def reset(self):
604 def seek(self, offset, whence=0):
612 def next(self):
620 def __iter__(self):
623 def __getattr__(self, name,
630 def __enter__(self):
633 def __exit__(self, type, value, tb):
651 def __init__(self, stream, Reader, Writer, errors='strict'):
669 def read(self, size=-1):
673 def readline(self, size=None):
677 def readlines(self, sizehint=None):
681 def next(self):
686 def __iter__(self):
689 def write(self, data):
693 def writelines(self, list):
697 def reset(self):
702 def seek(self, offset, whence=0):
708 def __getattr__(self, name,
717 def __enter__(self):
720 def __exit__(self, type, value, tb):
746 def __init__(self, stream, encode, decode, Reader, Writer,
779 def read(self, size=-1):
785 def readline(self, size=None):
794 def readlines(self, sizehint=None):
800 def next(self):
807 def __iter__(self):
810 def write(self, data):
815 def writelines(self, list):
821 def reset(self):
826 def __getattr__(self, name,
833 def __enter__(self):
836 def __exit__(self, type, value, tb):
841 def open(filename, mode='rb', encoding=None, errors='strict', buffering=1):
890 def EncodedFile(file, data_encoding, file_encoding=None, errors='strict'):
928 def getencoder(encoding):
938 def getdecoder(encoding):
948 def getincrementalencoder(encoding):
962 def getincrementaldecoder(encoding):
976 def getreader(encoding):
986 def getwriter(encoding):
996 def iterencode(iterator, encoding, errors='strict', **kwargs):
1014 def iterdecode(iterator, encoding, errors='strict', **kwargs):
1034 def make_identity_dict(rng):
1047 def make_encoding_map(decoding_map):