view etc/emacs.py @ 112282:bcf4b132f3d5

* lisp/info-xref.el (info-xref-docstrings): Replace cl function.
author Glenn Morris <rgm@gnu.org>
date Sat, 15 Jan 2011 18:01:34 -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 *