summaryrefslogtreecommitdiff
path: root/Lib/packaging/tests/fake_dists/choxie-2.0.0.9/choxie/chocolate.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/packaging/tests/fake_dists/choxie-2.0.0.9/choxie/chocolate.py')
-rw-r--r--Lib/packaging/tests/fake_dists/choxie-2.0.0.9/choxie/chocolate.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/Lib/packaging/tests/fake_dists/choxie-2.0.0.9/choxie/chocolate.py b/Lib/packaging/tests/fake_dists/choxie-2.0.0.9/choxie/chocolate.py
new file mode 100644
index 0000000000..c4027f36c1
--- /dev/null
+++ b/Lib/packaging/tests/fake_dists/choxie-2.0.0.9/choxie/chocolate.py
@@ -0,0 +1,10 @@
+# -*- coding: utf-8 -*-
+from towel_stuff import Towel
+
+class Chocolate(object):
+ """A piece of chocolate."""
+
+ def wrap_with_towel(self):
+ towel = Towel()
+ towel.wrap(self)
+ return towel