repo.or.cz
/
emacs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* lisp/htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
[emacs.git]
/
etc
/
emacs.py
blob
24004b321fe41880d3f81cbd43667cd026784b0d
1
"""Wrapper for version-specific implementations of python.el helper
2
functions """
3
4
import
sys
5
6
if
sys
.
version_info
[
0
] ==
3
:
7
from
emacs3
import
*
8
else
:
9
from
emacs2
import
*
10