Psyco was failing to call dirstate.__del__ for import
authormpm@selenic.com
Sat, 30 Jul 2005 09:01:59 -0800
changeset 815 5a55e3011772
parent 814 0902ffece4b4
child 816 8674b7803714
child 819 77e121a0d870
Psyco was failing to call dirstate.__del__ for import Remove it.
mercurial/commands.py
--- a/mercurial/commands.py	Sat Jul 30 09:00:14 2005 -0800
+++ b/mercurial/commands.py	Sat Jul 30 09:01:59 2005 -0800
@@ -654,12 +654,6 @@
 
 def import_(ui, repo, patch1, *patches, **opts):
     """import an ordered set of patches"""
-    try:
-        import psyco
-        psyco.full()
-    except ImportError:
-        pass
-
     patches = (patch1,) + patches
 
     d = opts["base"]