After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 558149 - missing utf-8 input decoding in the Python Console plugin
missing utf-8 input decoding in the Python Console plugin
Status: RESOLVED FIXED
Product: gedit-plugins
Classification: Other
Component: General
2.22.x
Other All
: Normal minor
: ---
Assigned To: Gedit maintainers
Gedit maintainers
Depends on:
Blocks:
 
 
Reported: 2008-10-27 18:42 UTC by Jean Christophe André
Modified: 2019-03-23 20:46 UTC
See Also:
GNOME target: ---
GNOME version: 2.21/2.22



Description Jean Christophe André 2008-10-27 18:42:00 UTC
Add automatic utf-8 decoding for strings typed into the Python Console.

Other information:
When inputing some utf-8 encoded text, it's evaluated as a byte string instead, meaning it's not decoded as it should and as it effectively is in an external "python" or "ipython" ran into a gnome-terminal.

Here is some example to reproduce and understand the bug:

1/ in a gedit Python Console:

  >>> ch = u"Stéphanie"
  >>> ch
  u'St\xc3\xa9phanie'
  >>> print ch[2]
  Ã

2/ in a "python" command run in a terminal:

  >>> ch = u"Stéphanie"
  >>> ch
  u'St\xe9phanie'
  >>> print ch[2]
  é

We could explicitly ask for input decoding using """ch = 'Stéphanie'.decode('utf-8')""" and that works, of course, but I think it should be managed at the gedit plugin level instead, since the whole Gnome environment is using Unicode and the plugin should be aware of that.

Now, about some solution, here is what I did to correct this problem, but I'm not (yet ;-) ) a Python expert, so...

sudo sed -i -e '/get_text(inp, cur)$/s/$/.decode('utf-8')/' /usr/lib/gedit-2/plugins/pythonconsole/console.py
sudo python2.5 /usr/lib/python2.5/py_compile.py /usr/lib/gedit-2/plugins/pythonconsole/console.py

Explanation: add explicit 'utf-8' decoding anywhere the code get the text input from the Python Console interface.
Comment 1 Paolo Borelli 2008-11-01 15:32:01 UTC
Thank you for the report, we added the .decode("utf8") just before evaluating the command.

The bug should be fixed in the next version of gedit.