diff options
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 * - |