New submission from Colin Williams:
This just increases test coverage for the datetime module by one line.
--
components: Library (Lib)
files: datetimepickling.patch
keywords: patch
messages: 13
nosy: Colin.Williams
priority: normal
severity: normal
status: open
title: Increased
New submission from Colin Williams:
Ported the tests built into the library requiring manual verification over to
the testing framework. Those tests only provided 77% coverage, so I improved
that up to 99%. Can't get the last line because it's only reachable on older
New submission from Colin Williams:
I didn't test the stdout and stderr stuff, but I got the module up to 74%
coverage.
--
files: tabnanny.patch
keywords: patch
messages: 201194
nosy: Colin.Williams
priority: normal
severity: normal
status: open
title: tabnanny unit tests
Added
Colin Williams added the comment:
Alright, I'll wait until that one gets committed, and then add in my changes.
I think between the two of us we'll get close to 100%
--
___
Python tracker
<http://bugs.python.o
New submission from Colin Williams:
Full coverage on this module
--
files: nturl2path.patch
keywords: patch
messages: 201197
nosy: Colin.Williams
priority: normal
severity: normal
status: open
title: nturl2path test coverage
Added file: http://bugs.python.org/file32345/nturl2path.patch
New submission from Colin Williams:
This one is pretty involved. The tests might reach into the guts of the
modules a bit too much, I'd be open to less invasive suggestions.
--
files: bdb.patch
keywords: patch
messages: 201481
nosy: Colin.Williams
priority: normal
severity: n
Colin Williams added the comment:
I've updated the patch to consolidate some duplicated code. Unfortunately, I
wasn't able to move anything to setUpClass without messing even more with the
internals. I haven't had a chance to refine the code further based on
xdegaye'