annotate etc/emacs.py @ 80816:0c78c31d53d0

Restore file pending consideration of python.el legal status.
author Glenn Morris <rgm@gnu.org>
date Sat, 28 Apr 2007 19:51:24 +0000
parents
children 713172dcf518
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
80816
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1 """Definitions used by commands sent to inferior Python in python.el."""
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
3 # Copyright (C) 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
4 # Author: Dave Love <fx@gnu.org>
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
5
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
6 # This file is part of GNU Emacs.
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
7
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
8 # GNU Emacs is free software; you can redistribute it and/or modify
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
9 # it under the terms of the GNU General Public License as published by
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
10 # the Free Software Foundation; either version 2, or (at your option)
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
11 # any later version.
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
12
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
13 # GNU Emacs is distributed in the hope that it will be useful,
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
16 # GNU General Public License for more details.
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
17
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
18 # You should have received a copy of the GNU General Public License
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
19 # along with GNU Emacs; see the file COPYING. If not, write to the
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
20 # Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
21 # Boston, MA 02110-1301, USA.
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
22
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
23 import os, sys, traceback, inspect, __main__
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
24 from sets import Set
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
25
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
26 __all__ = ["eexecfile", "eargs", "complete", "ehelp", "eimport", "modpath"]
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
27
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
28 def format_exception (filename, should_remove_self):
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
29 type, value, tb = sys.exc_info ()
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
30 sys.last_type = type
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
31 sys.last_value = value
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
32 sys.last_traceback = tb
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
33 if type is SyntaxError:
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
34 try: # parse the error message
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
35 msg, (dummy_filename, lineno, offset, line) = value
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
36 except:
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
37 pass # Not the format we expect; leave it alone
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
38 else:
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
39 # Stuff in the right filename
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
40 value = SyntaxError(msg, (filename, lineno, offset, line))
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
41 sys.last_value = value
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
42 res = traceback.format_exception_only (type, value)
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
43 # There are some compilation errors which do not provide traceback so we
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
44 # should not massage it.
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
45 if should_remove_self:
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
46 tblist = traceback.extract_tb (tb)
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
47 del tblist[:1]
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
48 res = traceback.format_list (tblist)
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
49 if res:
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
50 res.insert(0, "Traceback (most recent call last):\n")
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
51 res[len(res):] = traceback.format_exception_only (type, value)
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
52 # traceback.print_exception(type, value, tb)
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
53 for line in res: print line,
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
54
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
55 def eexecfile (file):
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
56 """Execute FILE and then remove it.
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
57 Execute the file within the __main__ namespace.
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
58 If we get an exception, print a traceback with the top frame
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
59 (ourselves) excluded."""
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
60 # We cannot use real execfile since it has a bug where the file stays
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
61 # locked forever (under w32) if SyntaxError occurs.
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
62 # --- code based on code.py and PyShell.py.
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
63 try:
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
64 try:
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
65 source = open (file, "r").read()
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
66 code = compile (source, file, "exec")
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
67 # Other exceptions (shouldn't be any...) will (correctly) fall
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
68 # through to "final".
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
69 except (OverflowError, SyntaxError, ValueError):
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
70 # FIXME: When can compile() raise anything else than
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
71 # SyntaxError ????
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
72 format_exception (file, False)
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
73 return
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
74 try:
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
75 exec code in __main__.__dict__
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
76 except:
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
77 format_exception (file, True)
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
78 finally:
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
79 os.remove (file)
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
80
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
81 def eargs (name, imports):
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
82 "Get arglist of NAME for Eldoc &c."
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
83 try:
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
84 if imports: exec imports
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
85 parts = name.split ('.')
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
86 if len (parts) > 1:
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
87 exec 'import ' + parts[0] # might fail
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
88 func = eval (name)
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
89 if inspect.isbuiltin (func) or type(func) is type:
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
90 doc = func.__doc__
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
91 if doc.find (' ->') != -1:
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
92 print '_emacs_out', doc.split (' ->')[0]
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
93 else:
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
94 print '_emacs_out', doc.split ('\n')[0]
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
95 return
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
96 if inspect.ismethod (func):
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
97 func = func.im_func
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
98 if not inspect.isfunction (func):
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
99 print '_emacs_out '
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
100 return
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
101 (args, varargs, varkw, defaults) = inspect.getargspec (func)
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
102 # No space between name and arglist for consistency with builtins.
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
103 print '_emacs_out', \
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
104 func.__name__ + inspect.formatargspec (args, varargs, varkw,
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
105 defaults)
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
106 except:
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
107 print "_emacs_out "
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
108
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
109 def all_names (object):
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
110 """Return (an approximation to) a list of all possible attribute
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
111 names reachable via the attributes of OBJECT, i.e. roughly the
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
112 leaves of the dictionary tree under it."""
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
113
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
114 def do_object (object, names):
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
115 if inspect.ismodule (object):
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
116 do_module (object, names)
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
117 elif inspect.isclass (object):
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
118 do_class (object, names)
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
119 # Might have an object without its class in scope.
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
120 elif hasattr (object, '__class__'):
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
121 names.add ('__class__')
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
122 do_class (object.__class__, names)
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
123 # Probably not a good idea to try to enumerate arbitrary
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
124 # dictionaries...
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
125 return names
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
126
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
127 def do_module (module, names):
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
128 if hasattr (module, '__all__'): # limited export list
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
129 names.union_update (module.__all__)
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
130 for i in module.__all__:
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
131 do_object (getattr (module, i), names)
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
132 else: # use all names
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
133 names.union_update (dir (module))
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
134 for i in dir (module):
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
135 do_object (getattr (module, i), names)
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
136 return names
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
137
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
138 def do_class (object, names):
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
139 ns = dir (object)
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
140 names.union_update (ns)
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
141 if hasattr (object, '__bases__'): # superclasses
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
142 for i in object.__bases__: do_object (i, names)
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
143 return names
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
144
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
145 return do_object (object, Set ([]))
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
146
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
147 def complete (name, imports):
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
148 """Complete TEXT in NAMESPACE and print a Lisp list of completions.
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
149 Exec IMPORTS first."""
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
150 import __main__, keyword
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
151
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
152 def class_members(object):
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
153 names = dir (object)
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
154 if hasattr (object, '__bases__'):
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
155 for super in object.__bases__:
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
156 names = class_members (super)
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
157 return names
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
158
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
159 names = Set ([])
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
160 base = None
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
161 try:
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
162 dict = __main__.__dict__.copy()
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
163 if imports: exec imports in dict
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
164 l = len (name)
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
165 if not "." in name:
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
166 for list in [dir (__builtins__), keyword.kwlist, dict.keys()]:
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
167 for elt in list:
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
168 if elt[:l] == name: names.add(elt)
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
169 else:
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
170 base = name[:name.rfind ('.')]
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
171 name = name[name.rfind('.')+1:]
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
172 try:
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
173 object = eval (base, dict)
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
174 names = Set (dir (object))
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
175 if hasattr (object, '__class__'):
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
176 names.add('__class__')
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
177 names.union_update (class_members (object))
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
178 except: names = all_names (dict)
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
179 except: return []
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
180 l = len(name)
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
181 print '_emacs_out (',
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
182 for n in names:
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
183 if name == n[:l]:
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
184 if base: print '"%s.%s"' % (base, n),
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
185 else: print '"%s"' % n,
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
186 print ')'
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
187
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
188 def ehelp (name, imports):
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
189 """Get help on string NAME.
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
190 First try to eval name for, e.g. user definitions where we need
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
191 the object. Otherwise try the string form."""
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
192 locls = {}
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
193 if imports:
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
194 try: exec imports in locls
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
195 except: pass
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
196 try: help (eval (name, globals(), locls))
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
197 except: help (name)
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
198
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
199 def eimport (mod, dir):
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
200 """Import module MOD with directory DIR at the head of the search path.
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
201 NB doesn't load from DIR if MOD shadows a system module."""
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
202 from __main__ import __dict__
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
203
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
204 path0 = sys.path[0]
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
205 sys.path[0] = dir
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
206 try:
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
207 try:
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
208 if __dict__.has_key(mod) and inspect.ismodule (__dict__[mod]):
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
209 reload (__dict__[mod])
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
210 else:
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
211 __dict__[mod] = __import__ (mod)
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
212 except:
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
213 (type, value, tb) = sys.exc_info ()
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
214 print "Traceback (most recent call last):"
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
215 traceback.print_exception (type, value, tb.tb_next)
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
216 finally:
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
217 sys.path[0] = path0
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
218
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
219 def modpath (module):
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
220 """Return the source file for the given MODULE (or None).
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
221 Assumes that MODULE.py and MODULE.pyc are in the same directory."""
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
222 try:
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
223 path = __import__ (module).__file__
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
224 if path[-4:] == '.pyc' and os.path.exists (path[0:-1]):
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
225 path = path[:-1]
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
226 print "_emacs_out", path
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
227 except:
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
228 print "_emacs_out ()"
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
229
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
230 # print '_emacs_ok' # ready for input and can call continuation
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
231
0c78c31d53d0 Restore file pending consideration of python.el legal status.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
232 # arch-tag: d90408f3-90e2-4de4-99c2-6eb9c7b9ca46