Misc cleanup for doc/*/Makefiles.
[bpt/emacs.git] / etc / emacs.py
1 """Wrapper for version-specific implementations of python.el helper
2 functions """
3
4 import sys
5
6 if sys.version_info[0] == 3:
7 from emacs3 import *
8 else:
9 from emacs2 import *
10
11 # arch-tag: 894b5227-638f-45fd-8567-0417d5c35900