GNOME Bugzilla – Bug 732403
Rename and deprecate pygobject dunder attributes
Last modified: 2018-01-10 20:43:16 UTC
There are a handful of attributes pygobject exposes using Pythons double underscore followed by double underscore naming convention (__<name>__). This naming scheme is reserved for Python operators and should not be used to avoid potential future clashes with Python. I recall reading in Python docs that this naming scheme should not be used in client code but can't seem to find a reference ATM. I was able to find an article which states the same thing though: http://www.pixelmonkey.org/2013/04/11/python-double-under-double-wonder "Never, ever, invent your own dunders — Python leaves you with a number of clean namespaces (classes, modules, etc.) for your own code. Use them! The core Python team reserved a somewhat ugly namespace for themselves — don’t trample all over their compromise by stealing their names." Here's an initial list: __gtype__ __gtype_name__ __gpointer__ __gproperties__ __gsignals__ __info__ The one that sticks out the most is __info__ as it is such a generic name. Replacing the naming with a single prefixed underscore should be sufficient to avoid clashes with GI library names (which is the purpose of the special naming to begin with): _gtype _gtypename _gpointer _gproperties _gsignals _ginfo Alternatively we could use a single underscore followed by single underscore: _gtype_, _ginfo_, etc... __gproperties__ and __gsignals__ could probably be deprecated completely because we have Property and Signal descriptors which are cleaner anyhow.
(In reply to comment #0) > I recall reading in Python docs that this > naming scheme should not be used in client code but can't seem to find a > reference ATM. Ah, it was in the PEP8 style guide: http://legacy.python.org/dev/peps/pep-0008/#naming-conventions __double_leading_and_trailing_underscore__: "magic" objects or attributes that live in user-controlled namespaces. E.g. __init__, __import__ or __file__. Never invent such names; only use them as documented.
-- 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/pygobject/issues/73.