summaryrefslogtreecommitdiff
path: root/rdflib/compat.py
diff options
context:
space:
mode:
Diffstat (limited to 'rdflib/compat.py')
-rw-r--r--rdflib/compat.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/rdflib/compat.py b/rdflib/compat.py
index cba3a569..1cc4adac 100644
--- a/rdflib/compat.py
+++ b/rdflib/compat.py
@@ -97,10 +97,3 @@ def decodeUnicodeEscape(escaped: str) -> str:
# Most of times, there are no backslashes in strings.
return escaped
return _turtle_escape_pattern.sub(_turtle_escape_subber, escaped)
-
-
-# Migration to abc in Python 3.8
-try:
- from collections.abc import Mapping, MutableMapping
-except:
- from collections import Mapping, MutableMapping