blob: ffdceda64a19d23162aaf13af3d72746a6738e9d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
--- BitTorrent/makemetafile.py.orig Sat Mar 12 09:58:42 2005
+++ BitTorrent/makemetafile.py Sat Mar 12 09:59:06 2005
@@ -12,6 +12,15 @@
# Written by Bram Cohen
+from BitTorrent import PSYCO
+if PSYCO.psyco:
+ try:
+ import psyco
+ assert psyco.__version__ >= 0x010300f0
+ psyco.full()
+ except:
+ pass
+
from __future__ import division
import os
|