Coverage for cogapp\backward : 52%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
"""Compatibility between Py2 and Py3."""
string_types = (str,bytes) text_types = (str,) bytes_types = (bytes,) def b(s): return s.encode("latin-1") def u(s): return s def to_bytes(s): return s.encode('utf8') else: return unicode(s, "unicode_escape")
# Pythons 2 and 3 differ on where to get StringIO except ImportError: from io import StringIO |