Summary: | После пересборки: OSError: [Errno 38] Function not implemented | ||
---|---|---|---|
Product: | Sisyphus | Reporter: | Vitaly Lipatov <lav> |
Component: | python-base | Assignee: | Vladimir D. Seleznev <vseleznv> |
Status: | CLOSED FIXED | QA Contact: | qa-sisyphus |
Severity: | normal | ||
Priority: | P3 | CC: | evg, vseleznv |
Version: | unstable | ||
Hardware: | all | ||
OS: | Linux |
Description
Vitaly Lipatov
2017-04-11 01:18:49 MSK
$ uname -r 4.9.18-std-def-alt1 $ rpm -q glibc glibc-2.25-alt2.x86_64 $ python Python 2.7.11 (default, Apr 7 2017, 11:12:07) [GCC 6.3.1 20170118 (ALT 6.3.1-alt2)] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> from random import Random as _Random >>> $ strace -o /dev/null -e fault=getrandom python Python 2.7.11 (default, Apr 7 2017, 11:12:07) [GCC 6.3.1 20170118 (ALT 6.3.1-alt2)] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> from random import Random as _Random Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/usr/lib64/python2.7/random.py", line 885, in <module> _inst = Random() File "/usr/lib64/python2.7/random.py", line 97, in __init__ self.seed(x) File "/usr/lib64/python2.7/random.py", line 113, in seed a = long(_hexlify(_urandom(2500)), 16) OSError: [Errno 38] Function not implemented >>> |