mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-21 17:16:35 +03:00
9 lines
156 B
Python
9 lines
156 B
Python
#!/usr/bin/env python
|
|
|
|
import sys
|
|
|
|
if sys.version_info[:2] >= (2, 7):
|
|
from collections import OrderedDict
|
|
else:
|
|
from ordereddict import OrderedDict
|