Mercurial > public > mercurial-scm > hg-stable
diff mercurial/commands.py @ 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 | eef752151556 89985a1b3427 |
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"]