Mercurial > public > mercurial-scm > hg-stable
comparison mercurial/posix.py @ 7906:c0dc1f15b30d
Add missing imports for posix.py for OS X
These don't seem to do harm on Linux.
author | Rocco Rutte <pdmef@gmx.net> |
---|---|
date | Fri, 27 Mar 2009 17:56:18 +0100 |
parents | e710f0f592b2 |
children | c289c3fc5985 |
comparison
equal
deleted
inserted
replaced
7905:d596b1f2935a | 7906:c0dc1f15b30d |
---|---|
7 the GNU General Public License version 2, incorporated herein by | 7 the GNU General Public License version 2, incorporated herein by |
8 reference. | 8 reference. |
9 """ | 9 """ |
10 | 10 |
11 from i18n import _ | 11 from i18n import _ |
12 import os, sys, osutil, errno, stat, getpass | 12 import os, sys, osutil, errno, stat, getpass, pwd, grp |
13 | 13 |
14 posixfile = file | 14 posixfile = file |
15 nulldev = '/dev/null' | 15 nulldev = '/dev/null' |
16 normpath = os.path.normpath | 16 normpath = os.path.normpath |
17 samestat = os.path.samestat | 17 samestat = os.path.samestat |