mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 01:26:42 +03:00
9 lines
157 B
Python
9 lines
157 B
Python
#!/usr/bin/env python2
|
|
|
|
import sys
|
|
|
|
if sys.version_info[:2] >= (2, 7):
|
|
from collections import OrderedDict
|
|
else:
|
|
from ordereddict import OrderedDict
|