You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This VmomiSupport.py#L179 is considered extremely bad form in the Python community. Extension of core types ties the code to interpreter internals that may not be intended for exposure. This is akin to using a hidden API and should be avoided or at least isolated so that potential damage is easier to control.
Rewrite the code so that the class Link is not needed anymore or so that Link can operate without directly extending a core type.
The text was updated successfully, but these errors were encountered:
This VmomiSupport.py#L179 is considered extremely bad form in the Python community. Extension of core types ties the code to interpreter internals that may not be intended for exposure. This is akin to using a hidden API and should be avoided or at least isolated so that potential damage is easier to control.
Rewrite the code so that the class Link is not needed anymore or so that Link can operate without directly extending a core type.
The text was updated successfully, but these errors were encountered: