예제 #1
0
파일: fixtures.py 프로젝트: blackelk/hell
 def fn3(*a):
     F()
예제 #2
0
파일: fixtures.py 프로젝트: blackelk/hell
 def fn4(cls):
     F()
예제 #3
0
파일: fixtures.py 프로젝트: blackelk/hell
 def prop(cls):
     F()
예제 #4
0
파일: fixtures.py 프로젝트: blackelk/hell
 def fn2(zzz, aaa):
     F()
예제 #5
0
파일: fixtures.py 프로젝트: blackelk/hell
 def gen2(self):
     F()
     yield 0
예제 #6
0
파일: fixtures.py 프로젝트: blackelk/hell
 def __init__(self, *a):
     F()
예제 #7
0
파일: fixtures.py 프로젝트: blackelk/hell
def fn3():
    F()
예제 #8
0
파일: fixtures.py 프로젝트: blackelk/hell
 def fn7(self):
     F()
예제 #9
0
파일: fixtures.py 프로젝트: blackelk/hell
def fn1(a):
    F()
예제 #10
0
파일: fixtures.py 프로젝트: blackelk/hell
def fn2(k1=1, k2=1):
    F()
예제 #11
0
파일: fixtures.py 프로젝트: blackelk/hell
def fn0():
    F()
예제 #12
0
파일: fixtures.py 프로젝트: blackelk/hell
 def fn3(self):
     F()
예제 #13
0
파일: fixtures.py 프로젝트: blackelk/hell
 def fn2(self):
     F()
예제 #14
0
파일: fixtures.py 프로젝트: blackelk/hell
 def fn5():
     F()
예제 #15
0
파일: fixtures.py 프로젝트: blackelk/hell
def gen1():
    F()
    yield 0
예제 #16
0
파일: fixtures.py 프로젝트: blackelk/hell
 def fn6(self):
     F()
예제 #17
0
파일: fixtures.py 프로젝트: blackelk/hell
 def __get__(self, instance, owner):
     F()
예제 #18
0
파일: fixtures.py 프로젝트: blackelk/hell
 def fn8(self):
     F()
예제 #19
0
파일: fixtures.py 프로젝트: blackelk/hell
 def __set__(self, instance, value):
     F()
예제 #20
0
파일: fixtures.py 프로젝트: blackelk/hell
 def __new__(cls):
     F()
     return object.__new__(cls)
예제 #21
0
파일: fixtures.py 프로젝트: blackelk/hell
 def fn1(self):
     F()
예제 #22
0
파일: fixtures.py 프로젝트: blackelk/hell
 def __add__(cls, other):
     F()
     return Ellipsis
예제 #23
0
파일: fixtures.py 프로젝트: blackelk/hell
def fn1(a):
    F()

def fn2(k1=1, k2=1):
    F()

@decorator
def fn3():
    F()

def gen1():
    F()
    yield 0


la1 = lambda : F()

la2 = lambda x: F()


class Descriptor(object):

    def __get__(self, instance, owner):
        F()

    def __set__(self, instance, value):
        F()


class Class(object):