Changeset 4220 for trunk/etc/emacs.py
- Timestamp:
- 04/04/08 22:04:40 (8 months ago)
- Files:
-
- trunk/etc/emacs.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/etc/emacs.py
r4200 r4220 1 1 """Definitions used by commands sent to inferior Python in python.el.""" 2 2 3 # Copyright (C) 2004, 2005, 2006, 2007 Free Software Foundation, Inc.3 # Copyright (C) 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. 4 4 # Author: Dave Love <fx@gnu.org> 5 5 … … 8 8 # GNU Emacs is free software; you can redistribute it and/or modify 9 9 # it under the terms of the GNU General Public License as published by 10 # the Free Software Foundation; either version 2, or (at your option)10 # the Free Software Foundation; either version 3, or (at your option) 11 11 # any later version. 12 12 … … 177 177 names.union_update (class_members (object)) 178 178 except: names = all_names (dict) 179 except: return [] 179 except: 180 print '_emacs_out ()' 181 return [] 180 182 l = len(name) 181 183 print '_emacs_out (',
