This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author rebelxt
Recipients rebelxt
Date 2016-11-03.15:47:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1478188078.5.0.322982866117.issue28599@psf.upfronthosting.co.za>
In-reply-to
Content
Python 3.5.2 (default, Sep 10 2016, 08:21:44) [GCC 5.4.0 20160609] on linux Mint 18 and Gtk 3.

I run a python3 script that includes these statements:

import gi
gi.require_version('Gtk', '3.0')
from gi.repository import Gtk, GObject
aboutdialog = Gtk.AboutDialog()
aboutdialog.set_name('arbitrary')
aboutdialog.run()
aboutdialog.destroy()

The script name is displayed in the About dialog, while the 'arbitrary' name is ignored. This is inconsistent with python2/gtk2. If the set_name method/function exists, it should do something.

I have no way of testing this on any later version of python.
History
Date User Action Args
2016-11-03 15:47:58rebelxtsetrecipients: + rebelxt
2016-11-03 15:47:58rebelxtsetmessageid: <1478188078.5.0.322982866117.issue28599@psf.upfronthosting.co.za>
2016-11-03 15:47:58rebelxtlinkissue28599 messages
2016-11-03 15:47:58rebelxtcreate