Skip to content

Instantly share code, notes, and snippets.

@jan-matejka
Created June 30, 2012 20:53
Show Gist options
  • Select an option

  • Save jan-matejka/3025470 to your computer and use it in GitHub Desktop.

Select an option

Save jan-matejka/3025470 to your computer and use it in GitHub Desktop.
__method_argument
#! /usr/bin/env python
# -*- coding: utf-8 -*-
class A:
def __init__(self, __ke=None):
print __ke
class B:
def __init__(self, **kw):
print kw
B(__ke=1)
A(__ke=1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment