1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-27 07:37:33 +00:00
emacs/etc/emacs.py
2011-01-15 15:16:57 -08:00

11 lines
181 B
Python

"""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 *