aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'pym/portage/cache/mappings.py')
-rw-r--r--pym/portage/cache/mappings.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pym/portage/cache/mappings.py b/pym/portage/cache/mappings.py
index cd39a6ea1..921fdaf1b 100644
--- a/pym/portage/cache/mappings.py
+++ b/pym/portage/cache/mappings.py
@@ -14,7 +14,7 @@ class Mapping(object):
Mapping and MutableMapping from the collections module, but 2to3
doesn't currently account for this change:
- http://bugs.python.org/issue2876
+ https://bugs.python.org/issue2876
As a workaround for the above issue, use this class as a substitute
for UserDict.DictMixin so that code converted via 2to3 will run.
@@ -140,7 +140,7 @@ class UserDict(MutableMapping):
Use this class as a substitute for UserDict.UserDict so that
code converted via 2to3 will run:
- http://bugs.python.org/issue2876
+ https://bugs.python.org/issue2876
"""
__slots__ = ('data',)