From f031278b7cf70db69b3dce63d94b65452728d080 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sun, 20 Sep 2015 10:31:52 -0400 Subject: Latest sample HTML report --- doc/sample_html/cogapp_backward_py.html | 143 ++++++++++++++++++++++++++++++++ 1 file changed, 143 insertions(+) create mode 100644 doc/sample_html/cogapp_backward_py.html (limited to 'doc/sample_html/cogapp_backward_py.html') diff --git a/doc/sample_html/cogapp_backward_py.html b/doc/sample_html/cogapp_backward_py.html new file mode 100644 index 00000000..34b91ff0 --- /dev/null +++ b/doc/sample_html/cogapp_backward_py.html @@ -0,0 +1,143 @@ + + + + + + + + + + + Coverage for cogapp/backward.py: 57.14% + + + + + + + + + + + + +
+ Hide keyboard shortcuts +

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 +

+
+
+ +
+ + + + + +
+

1

+

2

+

3

+

4

+

5

+

6

+

7

+

8

+

9

+

10

+

11

+

12

+

13

+

14

+

15

+

16

+

17

+

18

+

19

+

20

+

21

+

22

+

23

+

24

+

25

+

26

+ +
+

"""Compatibility between Py2 and Py3.""" 

+

 

+

import sys 

+

 

+

PY3 = sys.version_info[0] == 3 

+

 

+

7 ↛ 8 [?]if PY3: 

+

    string_types = (str,bytes) 

+

    bytes_types = (bytes,) 

+

    def b(s): 

+

        return s.encode("latin-1") 

+

    def to_bytes(s): 

+

        return s.encode('utf8') 

+

else: 

+

    string_types = (basestring,) 

+

    bytes_types = (str,) 

+

    def b(s): 

+

        return s 

+

    def to_bytes(s): 

+

        return s 

+

 

+

# Pythons 2 and 3 differ on where to get StringIO 

+

try: 

+

    from cStringIO import StringIO 

+

except ImportError: 

+

    from io import StringIO 

+ +
+
+ + + + + -- cgit v1.2.1