third_party.pylibs.pylint.src/test/input/func_noerror_e1101_13784.py
root 4becf6f9e5 forget the past.
forget the past.
2006-04-26 10:48:09 +00:00

16 lines
306 B
Python

"""cf #13784
"""
__revision__ = None
def no_conjugate_member(magic_flag):
"""should not raise E1101 on something.conjugate"""
if magic_flag:
something = 1.0
else:
something = 1.0j
if isinstance(something, float):
return something
return something.conjugate()