GNOME Bugzilla – Bug 771862
AttrWeight and AttrStyle not available from introspection
Last modified: 2018-05-22 13:19:35 UTC
Those two attributes are not available in Python binding. So it is not possible to create a AttrList that contains weight and style values.
With issue #766452, it will be possible to create an AttrList using the attr_weight_new and attr_style_new. But I think it will be better if the same methods as pygtk binding were providing as Pango.AttrWeight. def AttrWeight(weight, start_index, end_index): attr = Pango.new_weight_new(weight) attr.start_index = start_index attr.end_index = end_index return attr
-- GitLab Migration Automatic Message -- This bug has been migrated to GNOME's GitLab instance and has been closed from further activity. You can subscribe and participate further through the new bug through this link to our GitLab instance: https://gitlab.gnome.org/GNOME/pango/issues/262.