BUG: Supply a module for Downsampled terms.

This commit is contained in:
Scott Sanderson
2016-08-17 19:30:08 -04:00
parent 0f5784ab53
commit c5a3dae267
+2 -1
View File
@@ -457,5 +457,6 @@ class DownsampledMixin(StandardOutputs):
return type(
'Downsampled' + other_base.__name__,
(cls, other_base,),
{'__doc__': doc},
{'__doc__': doc,
'__module__': other_base.__module__},
)