From 16adb13d7107f01a68baa88bcfe42e3022673137 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sat, 21 May 2016 08:56:09 -0400 Subject: Latest sample html report --- doc/sample_html/cogapp___init___py.html | 26 +- doc/sample_html/cogapp___main___py.html | 20 +- doc/sample_html/cogapp_backward_py.html | 50 +- doc/sample_html/cogapp_cogapp_py.html | 2508 ++++++------- doc/sample_html/cogapp_makefiles_py.html | 174 +- doc/sample_html/cogapp_test_cogapp_py.html | 4764 ++++++++++++------------ doc/sample_html/cogapp_test_makefiles_py.html | 284 +- doc/sample_html/cogapp_test_whiteutils_py.html | 328 +- doc/sample_html/cogapp_whiteutils_py.html | 154 +- doc/sample_html/coverage_html.js | 74 + doc/sample_html/index.html | 52 +- doc/sample_html/status.json | 2 +- doc/sample_html/style.css | 54 +- 13 files changed, 4307 insertions(+), 4183 deletions(-) (limited to 'doc/sample_html') diff --git a/doc/sample_html/cogapp___init___py.html b/doc/sample_html/cogapp___init___py.html index 4003d77a..1e2712e0 100644 --- a/doc/sample_html/cogapp___init___py.html +++ b/doc/sample_html/cogapp___init___py.html @@ -44,22 +44,22 @@
Hide keyboard shortcuts -

Hot-keys on this page

+

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

@@ -78,19 +78,19 @@

7

8

9

- + -

""" Cog code generation tool. 

-

    http://nedbatchelder.com/code/cog 

+

""" Cog code generation tool. 

+

http://nedbatchelder.com/code/cog 

 

-

    Copyright 2004-2015, Ned Batchelder. 

-

""" 

+

Copyright 2004-2015, Ned Batchelder. 

+

""" 

 

from __future__ import absolute_import 

 

from .cogapp import * 

- + @@ -99,8 +99,8 @@ diff --git a/doc/sample_html/cogapp___main___py.html b/doc/sample_html/cogapp___main___py.html index c805cbee..a7e9da18 100644 --- a/doc/sample_html/cogapp___main___py.html +++ b/doc/sample_html/cogapp___main___py.html @@ -44,22 +44,22 @@
Hide keyboard shortcuts -

Hot-keys on this page

+

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

@@ -74,15 +74,15 @@

3

4

5

- + -

"""Make Cog runnable directly from the module.""" 

+

"""Make Cog runnable directly from the module.""" 

import sys 

from cogapp import Cog 

 

sys.exit(Cog().main(sys.argv)) 

- + @@ -91,8 +91,8 @@ diff --git a/doc/sample_html/cogapp_backward_py.html b/doc/sample_html/cogapp_backward_py.html index c0eb8cc2..b11f9d7e 100644 --- a/doc/sample_html/cogapp_backward_py.html +++ b/doc/sample_html/cogapp_backward_py.html @@ -44,22 +44,22 @@
Hide keyboard shortcuts -

Hot-keys on this page

+

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

@@ -95,36 +95,36 @@

24

25

26

- + -

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

+

"""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') 

+

7 ↛ 8line 7 didn't jump to line 8, because the condition on line 7 was never trueif 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 

+

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 

+

from cStringIO import StringIO 

except ImportError: 

-

    from io import StringIO 

- +

from io import StringIO 

+ @@ -133,8 +133,8 @@ diff --git a/doc/sample_html/cogapp_cogapp_py.html b/doc/sample_html/cogapp_cogapp_py.html index 26c6df75..d434af2f 100644 --- a/doc/sample_html/cogapp_cogapp_py.html +++ b/doc/sample_html/cogapp_cogapp_py.html @@ -8,7 +8,7 @@ - Coverage for cogapp/cogapp.py: 47.88% + Coverage for cogapp/cogapp.py: 98.84% @@ -24,19 +24,19 @@