[Python-checkins] cpython: Typo.

barry.warsaw python-checkins at python.org
Tue Jul 31 22:39:47 CEST 2012


http://hg.python.org/cpython/rev/564c2a8c975b
changeset:   78360:564c2a8c975b
user:        Barry Warsaw <barry at python.org>
date:        Tue Jul 31 16:39:43 2012 -0400
summary:
  Typo.

files:
  Lib/importlib/abc.py |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Lib/importlib/abc.py b/Lib/importlib/abc.py
--- a/Lib/importlib/abc.py
+++ b/Lib/importlib/abc.py
@@ -33,7 +33,7 @@
         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 @@
 
     """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

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list