Skip to content

Instantly share code, notes, and snippets.

@raimon49
Created March 5, 2012 13:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save raimon49/1978293 to your computer and use it in GitHub Desktop.
Save raimon49/1978293 to your computer and use it in GitHub Desktop.
明示的に親クラスの__init__()を呼び出し
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# super 使わない
class Base(object):
def __init__(self):
print('Base')
class Sub(Base):
def __init__(self):
Base.__init__(self)
print('Sub')
if __name__ == '__main__':
Sub()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment