Add S_IRWXG to Python 2.7's stat.pyi file. (#409)

Fixes #408.
This commit is contained in:
johnklai1
2016-07-27 11:29:12 -07:00
committed by Guido van Rossum
parent b91b932d4f
commit 112a1a17dd

View File

@@ -33,6 +33,7 @@ S_IRWXU = 0
S_IRUSR = 0
S_IWUSR = 0
S_IXUSR = 0
S_IRWXG = 0
S_IRGRP = 0
S_IWGRP = 0
S_IXGRP = 0