emacs.py 181 B

1234567891011
  1. """Wrapper for version-specific implementations of python.el helper
  2. functions """
  3. import sys
  4. if sys.version_info[0] == 3:
  5. from emacs3 import *
  6. else:
  7. from emacs2 import *