6 lines
161 B
Python
6 lines
161 B
Python
VERSION = (4, 1, 0)
|
|
__version__ = '.'.join(map(str, VERSION))
|
|
|
|
ALL = (None,) # Sentinel value for all HTTP methods.
|
|
UNSAFE = ['DELETE', 'PATCH', 'POST', 'PUT']
|