This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients fweimer, lars.gustaebel, vstinner
Date 2019-01-18.14:42:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1547822527.13.0.172311333175.issue35772@roundup.psfhosted.org>
In-reply-to
Content
Ah yes, I confirm that ppc64le uses 64 KiB page size:

# python3
Python 3.6.8 (default, Jan 11 2019, 01:44:37) 
[GCC 8.2.1 20180905 (Red Hat 8.2.1-3)] on linux
>>> import resource
>>> resource.getpagesize()
65536

whereas my x86_64 laptop uses 4 KiB page size:

$ python3
Python 3.7.2 (default, Jan  3 2019, 09:14:01) 
[GCC 8.2.1 20181215 (Red Hat 8.2.1-6)] on linux
>>> import resource
>>> resource.getpagesize()
4096
History
Date User Action Args
2019-01-18 14:42:09vstinnersetrecipients: + vstinner, lars.gustaebel, fweimer
2019-01-18 14:42:07vstinnersetmessageid: <1547822527.13.0.172311333175.issue35772@roundup.psfhosted.org>
2019-01-18 14:42:07vstinnerlinkissue35772 messages
2019-01-18 14:42:07vstinnercreate