@@ -58,7 +58,7 @@ def load_module(self, fullname):
58
58
except ImportError :
59
59
exc_type , exc_value , tb = sys .exc_info ()
60
60
# since we only establish the entry in sys.modules at the
61
- # very this seems to be redundant, but if recursive imports
61
+ # end this seems to be redundant, but if recursive imports
62
62
# happen we will call into the move import a second time.
63
63
# On the second invocation we still don't have an entry for
64
64
# fullname in sys.modules, but we will end up with the same
@@ -71,7 +71,7 @@ def load_module(self, fullname):
71
71
72
72
# If it's an important traceback we reraise it, otherwise
73
73
# we swallow it and try the next choice. The skipped frame
74
- # is the one from __import__ above which we don't care about
74
+ # is the one from __import__ above which we don't care about.
75
75
if self .is_important_traceback (realname , tb ):
76
76
raise exc_type , exc_value , tb .tb_next
77
77
continue
@@ -106,7 +106,7 @@ def is_important_frame(self, important_module, tb):
106
106
if module_name == important_module :
107
107
return True
108
108
109
- # Some python verisons will will clean up modules so early that the
109
+ # Some python versions will clean up modules so early that the
110
110
# module name at that point is no longer set. Try guessing from
111
111
# the filename then.
112
112
filename = os .path .abspath (tb .tb_frame .f_code .co_filename )
0 commit comments