1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-09 05:01:02 -08:00
emacs/etc/emacs.py
Glenn Morris c3f01f42da Adam Hupp <adam at hupp.org>
Split into emacs2.py and emacs3.py for python 2 and python 3 compatibility.
2007-09-24 00:19:45 +00:00

9 lines
180 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 *