/usr/share/doc/pymacs/contrib/Giorgi/menudemo.py is in pymacs 0.25-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | # -*- coding: utf-8 -*-
import sys
import os.path
import string
from Pymacs import lisp
sys.path.append(".")
interactions = {}
def testVectors():
# Test vectors
# Returns something like ["a" "b"] which is a emacs lisp vector
return ("a", "b")
def installPymacsMenu():
pass
interactions[testVectors]=''
interactions[installPymacsMenu]=''
|