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 732403 - Rename and deprecate pygobject dunder attributes
Rename and deprecate pygobject dunder attributes
Status: RESOLVED OBSOLETE
Product: pygobject
Classification: Bindings
Component: introspection
unspecified
Other Linux
: Normal normal
: ---
Assigned To: Nobody's working on this now (help wanted and appreciated)
Python bindings maintainers
Depends on:
Blocks:
 
 
Reported: 2014-06-29 00:51 UTC by Simon Feltman
Modified: 2018-01-10 20:43 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Simon Feltman 2014-06-29 00:51:25 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.
Comment 1 Simon Feltman 2014-06-29 00:58:11 UTC
(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.
Comment 2 GNOME Infrastructure Team 2018-01-10 20:43:16 UTC
-- 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.