4816bb4f43
* Fix boilerplate in hacking dir. * Fix boilerplate in docs dir. * Fix boilerplate in integration tests. * Fix boilerplate in examples.
15 lines
249 B
Python
15 lines
249 B
Python
#!/usr/bin/env python
|
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
__metaclass__ = type
|
|
|
|
import grp
|
|
|
|
gids = [g.gr_gid for g in grp.getgrall()]
|
|
|
|
i = 0
|
|
while True:
|
|
if i not in gids:
|
|
print(i)
|
|
break
|
|
i += 1
|