Mercurial > hg > mercurial-source
diff mercurial/windows.py @ 11136:99eee847beaa
acl: grp module is not available on windows
author | Patrick Mezard <pmezard@gmail.com> |
---|---|
date | Mon, 10 May 2010 21:09:48 +0200 (2010-05-10) |
parents | 18e81d42ee5c |
children | 516b000fbb7e |
line wrap: on
line diff
--- a/mercurial/windows.py +++ b/mercurial/windows.py @@ -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 *