Message158763
> I don't think _DummyThread can override __stop(), because of the name
> mangling of __private methods. However, the hasattr() approach would
> probably work.
Wouldn't a _DummyThread._Thread__stop() method override Thread.__stop()? Like
>>> class A(object):
... def foo(self):
... self.__bar()
... def __bar(self):
... print "original"
...
>>> class B(A):
... def _A__bar(self):
... print "overridden"
...
>>> B().foo()
overridden |
|
Date |
User |
Action |
Args |
2012-04-19 22:08:04 | sbt | set | recipients:
+ sbt, pitrou, neologix, cooyeah, python-dev, Dustin.Kirkland |
2012-04-19 22:08:04 | sbt | set | messageid: <1334873284.67.0.912362582649.issue14308@psf.upfronthosting.co.za> |
2012-04-19 22:08:04 | sbt | link | issue14308 messages |
2012-04-19 22:08:03 | sbt | create | |
|