Skip to content

Commit 0bd807d

Browse files
committed
posix stat_result fix __module__ builtin
1 parent 6b030ae commit 0bd807d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

graalpython/lib-graalpython/posix.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@
4747
])
4848
stat_result.__qualname__ = 'stat_result'
4949
stat_result.__name__ = 'stat_result'
50+
stat_result.__module__ = 'os'
5051
stat_result.st_atime_ns = property(lambda s: int(s.st_atime * 1000))
5152
stat_result.st_mtime_ns = property(lambda s: int(s.st_mtime * 1000))
5253

0 commit comments

Comments
 (0)