remove psyco as speed is not an issue anymore but high mem usage is. fixes #1666
This commit is contained in:
parent
3d61688111
commit
f95a7c5d3e
|
@ -1712,12 +1712,6 @@ def wait_migration(migration):
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
signal.signal(signal.SIGINT, signal.SIG_DFL) # ^C exits the application
|
signal.signal(signal.SIGINT, signal.SIG_DFL) # ^C exits the application
|
||||||
|
|
||||||
try: # Import Psyco if available
|
|
||||||
import psyco
|
|
||||||
psyco.full()
|
|
||||||
except ImportError:
|
|
||||||
sys.exc_clear()
|
|
||||||
|
|
||||||
if os.name != 'nt':
|
if os.name != 'nt':
|
||||||
# Session Management support
|
# Session Management support
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in New Issue