InterviewSolution
Saved Bookmarks
| 1. |
Can I Pass Strings Of Unicode Instance To Gtk Or Do I Need To Convert Them To Utf8? |
|
Answer» No you don't have do MANUALLY CONVERT your STRINGS in UTF8. PyGTK will do this for you. label.set_text(u'abc') So the above is indeed valid and not only to labels but to any widget. No you don't have do manually convert your strings in utf8. PyGTK will do this for you. label.set_text(u'abc') So the above is indeed valid and not only to labels but to any widget. |
|