We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f74ad98 commit be1a6deCopy full SHA for be1a6de
bpython/curtsiesfrontend/repl.py
@@ -208,6 +208,8 @@ def readline(self):
208
209
210
class ImportLoader:
211
+ """Wrapper for module loaders to watch their paths with watchdog."""
212
+
213
def __init__(self, watcher, loader):
214
self.watcher = watcher
215
self.loader = loader
@@ -236,6 +238,8 @@ def _load_module(self, name):
236
238
237
239
240
class ImportFinder:
241
+ """Wrapper for finders in sys.meta_path to replace wrap all loaders with ImportLoader."""
242
243
def __init__(self, finder, watcher):
244
245
self.finder = finder
0 commit comments