From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?ISO-8859-1?Q?Andreas_R=F6hler?= Subject: Re: BUG copyright sign Date: Wed, 27 Feb 2013 09:53:06 +0100 Message-ID: <512DC972.6020009@easy-emacs.de> References: <512DC1D1.1080005@easy-emacs.de> <87zjyqupk1.fsf@bzg.ath.cx> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([208.118.235.92]:55162) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UAckh-0000BT-KW for emacs-orgmode@gnu.org; Wed, 27 Feb 2013 03:52:40 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UAckg-0006RJ-Bk for emacs-orgmode@gnu.org; Wed, 27 Feb 2013 03:52:39 -0500 Received: from moutng.kundenserver.de ([212.227.17.10]:56170) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UAckg-0006R5-2h for emacs-orgmode@gnu.org; Wed, 27 Feb 2013 03:52:38 -0500 In-Reply-To: <87zjyqupk1.fsf@bzg.ath.cx> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Bastien Cc: emacs-orgmode Am 27.02.2013 09:30, schrieb Bastien: > Andreas Röhler writes: > >> When evaluating the source examples attached, it fails sending >> >> Traceback (most recent call last): >> File "", line 1, in >> UnicodeEncodeError: 'ascii' codec can't encode character u'\xa9' in position 0: ordinal not in range(128) > > This is a Python error, not an Org error. > > I guess you are using Python 2.x? > > The way Python handles encoding changed in Python 3.0. > Forms work from all Python shells > python Python 2.7.3 (default, Apr 14 2012, 08:58:41) [GCC] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> print(u'\xA9') © >>> quit() > python3 Python 3.3.0 (default, Oct 01 2012, 09:13:30) [GCC] on linux Type "help", "copyright", "credits" or "license" for more information. >>> print(u'\xA9') © >>> print(u'\u00A9') © >>> AFAIS bug is caused by calling shell-command-on-region