Mercurial > public > mercurial-scm > hg
comparison 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 |
comparison
equal
deleted
inserted
replaced
814:0902ffece4b4 | 815:5a55e3011772 |
---|---|
652 | 652 |
653 ui.write("%s\n" % ' '.join(output)) | 653 ui.write("%s\n" % ' '.join(output)) |
654 | 654 |
655 def import_(ui, repo, patch1, *patches, **opts): | 655 def import_(ui, repo, patch1, *patches, **opts): |
656 """import an ordered set of patches""" | 656 """import an ordered set of patches""" |
657 try: | |
658 import psyco | |
659 psyco.full() | |
660 except ImportError: | |
661 pass | |
662 | |
663 patches = (patch1,) + patches | 657 patches = (patch1,) + patches |
664 | 658 |
665 d = opts["base"] | 659 d = opts["base"] |
666 strip = opts["strip"] | 660 strip = opts["strip"] |
667 | 661 |