Steven D'Aprano <st...@remove-this-cybersource.com.au> writes: > How is this scenario different from an API change where > self.some_attribute gets changed to self.attribute?
That would be a backward incompatible change to a published interface, something that should not be done without a good reason, and which was mostly avoided through the whole Python 2.x series (incompatible changes were saved for Python 3.0). Changing an undocumented and supposedly private interface is something different entirely. -- http://mail.python.org/mailman/listinfo/python-list