ยปCore Development>Code coverage>Lib/packaging/tests/fake_dists/choxie-2.0.0.9/choxie/chocolate.py

Python code coverage for Lib/packaging/tests/fake_dists/choxie-2.0.0.9/choxie/chocolate.py

#countcontent
1n/a# -*- coding: utf-8 -*-
2n/afrom towel_stuff import Towel
3n/a
4n/aclass Chocolate(object):
5n/a """A piece of chocolate."""
6n/a
7n/a def wrap_with_towel(self):
8n/a towel = Towel()
9n/a towel.wrap(self)
10n/a return towel