[Bug 1088033] RFE: Text Figures for Liberation Fonts
https://bugzilla.redhat.com/show_bug.cgi?id=1088033 --- Comment #18 from Jens Petersen --- To clarify my last comment: I don't think we should change the style of the font for digits like this. -- You are receiving this mail because: You are on the CC list for the bug. ___ fonts-bugs mailing list -- fonts-bugs@lists.fedoraproject.org To unsubscribe send an email to fonts-bugs-le...@lists.fedoraproject.org Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/fonts-bugs@lists.fedoraproject.org/message/BGCC2WPFIFZS52VZSLWRRY7CZZFGA3PZ/
[Bug 1595421] fontforge on Python 3.7: Fatal Python error: _Py_InitializeCore: main interpreter already initialized
https://bugzilla.redhat.com/show_bug.cgi?id=1595421 Miro HronĨok changed: What|Removed |Added Assignee|mhron...@redhat.com |vstin...@redhat.com -- You are receiving this mail because: You are on the CC list for the bug. ___ fonts-bugs mailing list -- fonts-bugs@lists.fedoraproject.org To unsubscribe send an email to fonts-bugs-le...@lists.fedoraproject.org Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/fonts-bugs@lists.fedoraproject.org/message/5ZCRCJBZVOIFTGTWFGW5SEBTSCOAPOHO/
[Bug 1595421] fontforge on Python 3.7: Fatal Python error: _Py_InitializeCore: main interpreter already initialized
https://bugzilla.redhat.com/show_bug.cgi?id=1595421 --- Comment #20 from Victor Stinner --- I looked one more time to the issue: * fontforge code is fine: it calls Py_Initialize() before using the Python C API to initialize its Python namespace (modules, functions, types, etc.), and later it calls Py_Main(). * Python 3.7.0 is wrong: it fails with a fatal erro when Py_Main() is called if Py_Initialize() has been called previously. It is a regression since it worked fine in Python 3.6. * My PR https://github.com/python/cpython/pull/8043 works again the simplest test: "fontforge -script hello.py" where hello.py is just "print('Hello World!')" * This PR is not enough according to Miro, since fontforge requires sys.argv to be set, whereas sys.argv is no longer set when Py_Main() is after Py_Initialize(): https://github.com/python/cpython/pull/8043#issuecomment-401731992 -- You are receiving this mail because: You are on the CC list for the bug. ___ fonts-bugs mailing list -- fonts-bugs@lists.fedoraproject.org To unsubscribe send an email to fonts-bugs-le...@lists.fedoraproject.org Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/fonts-bugs@lists.fedoraproject.org/message/4G3K655UCZGRGEMZAAI4VNTOEVGJXPNQ/