view etc/emacs.py @ 112448:9e4388bac77b

* etc/images/README: Add 2011 to copyright years for (un)checked.xpm.
author Glenn Morris <rgm@gnu.org>
date Sun, 23 Jan 2011 17:30:35 -0800
parents ef719132ddfa
children
line wrap: on
line source

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