mirror of
https://github.com/github/codeql.git
synced 2026-05-05 05:35:13 +02:00
Initial commit of Python queries and QL libraries.
This commit is contained in:
committed by
Mark Shannon
parent
90c75cd362
commit
5f58824d1b
15
python/ql/src/Functions/IncorrectRaiseInSpecialMethod2.py
Normal file
15
python/ql/src/Functions/IncorrectRaiseInSpecialMethod2.py
Normal file
@@ -0,0 +1,15 @@
|
||||
|
||||
#Abstract base class, but don't declare it.
|
||||
class ImplicitAbstractClass(object):
|
||||
|
||||
def __add__(self, other):
|
||||
raise NotImplementedError()
|
||||
|
||||
#Make abstractness explicit.
|
||||
class ExplicitAbstractClass:
|
||||
__metaclass__ = ABCMeta
|
||||
|
||||
@abstractmethod
|
||||
def __add__(self, other):
|
||||
raise NotImplementedError()
|
||||
|
||||
Reference in New Issue
Block a user