aboutsummaryrefslogtreecommitdiff
path: root/net-p2p/py-bittorrent/files/extra-psyco-patch-BitTorrent::launchmanycore.py
diff options
context:
space:
mode:
Diffstat (limited to 'net-p2p/py-bittorrent/files/extra-psyco-patch-BitTorrent::launchmanycore.py')
-rw-r--r--net-p2p/py-bittorrent/files/extra-psyco-patch-BitTorrent::launchmanycore.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/net-p2p/py-bittorrent/files/extra-psyco-patch-BitTorrent::launchmanycore.py b/net-p2p/py-bittorrent/files/extra-psyco-patch-BitTorrent::launchmanycore.py
deleted file mode 100644
index 5bea92e76323..000000000000
--- a/net-p2p/py-bittorrent/files/extra-psyco-patch-BitTorrent::launchmanycore.py
+++ /dev/null
@@ -1,18 +0,0 @@
---- BitTorrent/launchmanycore.py.orig Sat Mar 12 10:00:19 2005
-+++ BitTorrent/launchmanycore.py Sat Mar 12 10:00:40 2005
-@@ -13,6 +13,15 @@
- # Original version written by John Hoffman, heavily modified for different
- # multitorrent architecture by Uoti Urpala (over 40% shorter than original)
-
-+from BitTorrent import PSYCO
-+if PSYCO.psyco:
-+ try:
-+ import psyco
-+ assert psyco.__version__ >= 0x010300f0
-+ psyco.full()
-+ except:
-+ pass
-+
- import os
- from cStringIO import StringIO
- from traceback import print_exc