STINNER Victor <vstin...@redhat.com> added the comment:
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 ---------- _______________________________________ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue35772> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com