[pypy-svn] pypy default: fix indentation
gutworth
commits-noreply at bitbucket.org
Mon Jan 24 23:39:41 CET 2011
Author: Benjamin Peterson <benjamin at python.org>
Branch:
Changeset: r41274:98e3586094aa
Date: 2011-01-24 16:40 -0600
http://bitbucket.org/pypy/pypy/changeset/98e3586094aa/
Log: fix indentation
diff --git a/pypy/rpython/module/ll_os.py b/pypy/rpython/module/ll_os.py
--- a/pypy/rpython/module/ll_os.py
+++ b/pypy/rpython/module/ll_os.py
@@ -694,7 +694,7 @@
lltype.free(groups, flavor='raw')
if n >= 0:
return result
- raise OSError(rposix.get_errno(), "os_getgroups failed")
+ raise OSError(rposix.get_errno(), "os_getgroups failed")
return extdef([], [self.GID_T], llimpl=getgroups_llimpl,
export_name="ll_os.ll_getgroups")
More information about the Pypy-commit
mailing list