diff options
author | Barry Warsaw <barry@python.org> | 2012-07-31 16:39:43 -0400 |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2012-07-31 16:39:43 -0400 |
commit | 38f75cbc0048ff1a026f56e42d89132cf65792f7 (patch) | |
tree | df63030693326e498c7d23ebec301c0e8ec03b8c /Lib/importlib/abc.py | |
parent | dbdc3db5343f4e76c1d6a7456841b91b88d35fba (diff) | |
download | cpython-38f75cbc0048ff1a026f56e42d89132cf65792f7.tar.gz cpython-38f75cbc0048ff1a026f56e42d89132cf65792f7.zip |
Typo.
Diffstat (limited to 'Lib/importlib/abc.py')
-rw-r--r-- | Lib/importlib/abc.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/importlib/abc.py b/Lib/importlib/abc.py index f5ac01d8f48..7fcf2de438f 100644 --- a/Lib/importlib/abc.py +++ b/Lib/importlib/abc.py @@ -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 |