changeset 815:5a55e3011772

Psyco was failing to call dirstate.__del__ for import Remove it.
author mpm@selenic.com
date Sat, 30 Jul 2005 09:01:59 -0800
parents 0902ffece4b4
children 8674b7803714 77e121a0d870
files mercurial/commands.py
diffstat 1 files changed, 0 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- 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"]