view etc/emacs.py @ 84826:895fcfe0a14e

New file.
author Glenn Morris <rgm@gnu.org>
date Mon, 24 Sep 2007 00:41:39 +0000
parents 9b1c9000269c
children 69c173eabff4
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 *