[issue35772] test_tarfile fails on ppc64le when using tmpfs filesystem

STINNER Victor report at bugs.python.org
Fri Jan 18 09:42:07 EST 2019


STINNER Victor <vstinner at 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 <report at bugs.python.org>
<https://bugs.python.org/issue35772>
_______________________________________


More information about the Python-bugs-list mailing list