Fix typo in mmap const (#2537)

This commit is contained in:
David Zbarsky
2018-10-22 23:02:05 -04:00
committed by Guido van Rossum
parent a437fcc886
commit 167f72dbac

View File

@@ -11,7 +11,7 @@ ALLOCATIONGRANULARITY = ... # type: int
if sys.platform != 'win32':
MAP_ANON = ... # type: int
MAP_ANONOMYOUS = ... # type: int
MAP_ANONYMOUS = ... # type: int
MAP_DENYWRITE = ... # type: int
MAP_EXECUTABLE = ... # type: int
MAP_PRIVATE = ... # type: int