We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent acbbfff commit 27cbd34Copy full SHA for 27cbd34
lib/matplotlib/testing/decorators.py
@@ -364,7 +364,9 @@ def _image_directories(func):
364
365
import imp
366
def find_dotted_module(module_name, path=None):
367
- """A version of imp which can handle dots in the module name"""
+ """A version of imp which can handle dots in the module name.
368
+ As for imp.find_module(), the return value is a 3-element
369
+ tuple (file, pathname, description)."""
370
res = None
371
for sub_mod in module_name.split('.'):
372
try:
0 commit comments