]> granicus.if.org Git - python/commitdiff
Typo.
authorBarry Warsaw <barry@python.org>
Tue, 31 Jul 2012 20:39:43 +0000 (16:39 -0400)
committerBarry Warsaw <barry@python.org>
Tue, 31 Jul 2012 20:39:43 +0000 (16:39 -0400)
Lib/importlib/abc.py

index f5ac01d8f48aa389672e7d048d8ce1a6b18381bb..7fcf2de438fc38c313f2100bccd88807836525b7 100644 (file)
@@ -33,7 +33,7 @@ class Loader(metaclass=abc.ABCMeta):
         The fullname is a str."""
         raise NotImplementedError
 
-    @abs.abstractmethod
+    @abc.abstractmethod
     def module_repr(self, module):
         """Abstract method which when implemented calculates and returns the
         given module's repr."""
@@ -44,7 +44,7 @@ class Finder(metaclass=abc.ABCMeta):
 
     """Abstract base class for import finders."""
 
-    @abs.abstractmethod
+    @abc.abstractmethod
     def find_loader(self, fullname):
         """Abstract method which when implemented returns a module loader.
         The fullname is a str.  Returns a 2-tuple of (Loader, portion) where