diff options
Diffstat (limited to 'net-p2p/deluge/files/extra-psyco-patch-deluge__main.py')
-rw-r--r-- | net-p2p/deluge/files/extra-psyco-patch-deluge__main.py | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/net-p2p/deluge/files/extra-psyco-patch-deluge__main.py b/net-p2p/deluge/files/extra-psyco-patch-deluge__main.py deleted file mode 100644 index 9083ba71af4a..000000000000 --- a/net-p2p/deluge/files/extra-psyco-patch-deluge__main.py +++ /dev/null @@ -1,16 +0,0 @@ ---- deluge/main.py.orig 2010-02-17 01:16:05.000000000 -0200 -+++ deluge/main.py 2010-02-17 01:16:40.000000000 -0200 -@@ -33,6 +33,13 @@ - # - # - -+try: -+ import psyco -+ import re -+ psyco.cannotcompile(re.compile) -+ psyco.profile() -+except ImportError: -+ pass - - # The main starting point for the program. This function is called when the - # user runs the command 'deluge'. |