Files
codeql/python/ql/src/Functions/NonSelf.py
2018-11-19 15:10:42 +00:00

9 lines
247 B
Python

class Point:
def __init__(val, x, y): # first argument is mis-named 'val'
val._x = x
val._y = y
class Point2:
def __init__(self, x, y): # first argument is correctly named 'self'
self._x = x
self._y = y