* customize.texi (Composite Types): Move alist/plist from Simple Types (Bug#7545).
[emacs.git] / etc / emacs.py
blob964c1f17f407b1352810695441e88f4d0f92cc0e
1 """Wrapper for version-specific implementations of python.el helper
2 functions """
4 import sys
6 if sys.version_info[0] == 3:
7 from emacs3 import *
8 else:
9 from emacs2 import *
11 # arch-tag: 894b5227-638f-45fd-8567-0417d5c35900