10 lines
156 B
Python
10 lines
156 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
|
|
class MarkedForDeprecationWarning(DeprecationWarning):
|
|
pass
|
|
|
|
|
|
class RemovedInNextVersionWarning(DeprecationWarning):
|
|
pass
|