diff options
Diffstat (limited to 'libbe/editor.py')
-rw-r--r-- | libbe/editor.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libbe/editor.py b/libbe/editor.py index 8f2bdbf..ec41006 100644 --- a/libbe/editor.py +++ b/libbe/editor.py @@ -15,6 +15,11 @@ # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +""" +Define editor_string(), a function that invokes an editor to accept +user-produced text as a string. +""" + import codecs import locale import os @@ -22,6 +27,7 @@ import sys import tempfile import doctest + default_encoding = sys.getfilesystemencoding() or locale.getpreferredencoding() comment_marker = u"== Anything below this line will be ignored\n" |