summaryrefslogtreecommitdiff
path: root/etc/emacs.py
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2012-06-27 23:58:39 -0700
committerGlenn Morris <rgm@gnu.org>2012-06-27 23:58:39 -0700
commit9ab89959267fed796a0d5f548c976bb8fb45f1b9 (patch)
tree396fe5eb191950f7fa51a2710752fac5c98d6195 /etc/emacs.py
parent15458df459c03803990c8e0752bbdda6f8a173d6 (diff)
downloademacs-9ab89959267fed796a0d5f548c976bb8fb45f1b9.tar.gz
emacs-9ab89959267fed796a0d5f548c976bb8fb45f1b9.tar.bz2
emacs-9ab89959267fed796a0d5f548c976bb8fb45f1b9.zip
* emacs.py, emacs2.py, emacs3.py: Remove files.
AFAICS, the new python.el does not use these files.
Diffstat (limited to 'etc/emacs.py')
-rw-r--r--etc/emacs.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/etc/emacs.py b/etc/emacs.py
deleted file mode 100644
index 24004b321fe..00000000000
--- a/etc/emacs.py
+++ /dev/null
@@ -1,10 +0,0 @@
-"""Wrapper for version-specific implementations of python.el helper
-functions """
-
-import sys
-
-if sys.version_info[0] == 3:
- from emacs3 import *
-else:
- from emacs2 import *
-