view etc/emacs.py @ 84871:534e99349c41

(view-emacs-news): Use `mapc' rather than `mapcar'.
author Juanma Barranquero <lekktu@gmail.com>
date Tue, 25 Sep 2007 11:07:06 +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 *