mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-07 08:52:20 +01:00
8 lines
156 B
Python
8 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
|