Merge from emacs-24; up to 2012-04-25T15:23:19Z!sdl.web@gmail.com
[emacs.git] / etc / emacs.py
blob24004b321fe41880d3f81cbd43667cd026784b0d
1 """Wrapper for version-specific implementations of python.el helper
2 functions """
4 import sys
6 if sys.version_info[0] == 3:
7 from emacs3 import *
8 else:
9 from emacs2 import *