aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/py24compat.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2013-11-24 16:07:54 -0500
committerJason R. Coombs <jaraco@jaraco.com>2013-11-24 16:07:54 -0500
commitba268e837c5fd269c9030c28d85fff6423c1bdec (patch)
tree82477acf1b9cad1bdde7268c2cda5304af8691ef /setuptools/py24compat.py
parent39dd5934be0a44d1f0452975a17784bddb276a82 (diff)
downloadexternal_python_setuptools-ba268e837c5fd269c9030c28d85fff6423c1bdec.tar.gz
external_python_setuptools-ba268e837c5fd269c9030c28d85fff6423c1bdec.tar.bz2
external_python_setuptools-ba268e837c5fd269c9030c28d85fff6423c1bdec.zip
Removing py24compat module
Diffstat (limited to 'setuptools/py24compat.py')
-rw-r--r--setuptools/py24compat.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/setuptools/py24compat.py b/setuptools/py24compat.py
deleted file mode 100644
index 40e9ae0f..00000000
--- a/setuptools/py24compat.py
+++ /dev/null
@@ -1,17 +0,0 @@
-"""
-Forward-compatibility support for Python 2.4 and earlier
-"""
-
-# from jaraco.compat 1.2
-try:
- from functools import wraps
-except ImportError:
- def wraps(func):
- "Just return the function unwrapped"
- return lambda x: x
-
-
-try:
- import hashlib
-except ImportError:
- from setuptools._backport import hashlib