Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.programming > #249
| From | chad <cdalten@gmail.com> |
|---|---|
| Newsgroups | comp.lang.python, comp.programming |
| Subject | A question about Python Classes |
| Date | 2011-04-21 08:43 -0700 |
| Organization | http://groups.google.com |
| Message-ID | <2219ee53-e8aa-4ac4-839f-014c3d1b1914@a19g2000prj.googlegroups.com> (permalink) |
Cross-posted to 2 groups.
Let's say I have the following....
class BaseHandler:
def foo(self):
print "Hello"
class HomeHandler(BaseHandler):
pass
Then I do the following...
test = HomeHandler()
test.foo()
How can HomeHandler call foo() when I never created an instance of
BaseHandler?
Chad
Back to comp.programming | Previous | Next — Next in thread | Find similar
A question about Python Classes chad <cdalten@gmail.com> - 2011-04-21 08:43 -0700 Re: A question about Python Classes "Pascal J. Bourguignon" <pjb@informatimago.com> - 2011-04-21 19:12 +0200
csiph-web