blob: 24004b321fe41880d3f81cbd43667cd026784b0d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
"""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 *
|