mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-06 16:32:23 +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
|