mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-05-14 01:16:59 +00:00
Removed REVISION, makes no sense.
Import and use python psyco library to speed up if it's installed: it's optional.
This commit is contained in:
parent
e3ddbe751f
commit
0f07e33e1a
3 changed files with 8 additions and 4 deletions
|
|
@ -29,6 +29,13 @@ import sys
|
|||
import time
|
||||
import traceback
|
||||
|
||||
try:
|
||||
import psyco
|
||||
psyco.full()
|
||||
psyco.profile()
|
||||
except ImportError, _:
|
||||
pass
|
||||
|
||||
from lib.controller.controller import start
|
||||
from lib.core.common import banner
|
||||
from lib.core.common import setPaths
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue