diff options
author | Glenn Morris <rgm@gnu.org> | 2012-06-27 23:58:39 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2012-06-27 23:58:39 -0700 |
commit | 9ab89959267fed796a0d5f548c976bb8fb45f1b9 (patch) | |
tree | 396fe5eb191950f7fa51a2710752fac5c98d6195 /etc/emacs.py | |
parent | 15458df459c03803990c8e0752bbdda6f8a173d6 (diff) | |
download | emacs-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.py | 10 |
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 * - |