Fix french translation of TUTORIAL.
[bpt/emacs.git] / etc / emacs.py
CommitLineData
c3f01f42
GM
1"""Wrapper for version-specific implementations of python.el helper
2functions """
11b50d1d 3
c3f01f42 4import sys
11b50d1d 5
c3f01f42
GM
6if sys.version_info[0] == 3:
7 from emacs3 import *
8else:
9 from emacs2 import *
7a12ad59 10