Mercurial > public > mercurial-scm > hg-stable
diff mercurial/windows.py @ 11138:99eee847beaa
acl: grp module is not available on windows
author | Patrick Mezard <pmezard@gmail.com> |
---|---|
date | Mon, 10 May 2010 21:09:48 +0200 |
parents | 18e81d42ee5c |
children | 516b000fbb7e |
line wrap: on
line diff
--- a/mercurial/windows.py Sun May 09 22:51:25 2010 +0200 +++ b/mercurial/windows.py Mon May 10 21:09:48 2010 +0200 @@ -363,6 +363,10 @@ # current line but on the new one. Keep room for it. return 79 +def groupmembers(name): + # Don't support groups on Windows for now + raise KeyError() + try: # override functions with win32 versions if possible from win32 import *