[Libreoffice-commits] core.git: pyuno/source

David Ostrovsky (via logerrit) logerrit at kemper.freedesktop.org
Tue Jan 5 11:18:53 UTC 2021


 pyuno/source/loader/pyuno_loader.cxx |    2 ++
 1 file changed, 2 insertions(+)

New commits:
commit c099288c232c864583b9a263069390a75bf43524
Author:     David Ostrovsky <david at ostrovsky.org>
AuthorDate: Mon Dec 21 07:56:11 2020 +0100
Commit:     Michael Stahl <michael.stahl at allotropia.de>
CommitDate: Tue Jan 5 12:18:11 2021 +0100

    tdf#138987 pyuno: PyEval_InitThreads is a no-op in Python 3.9
    
    Change-Id: I220eecfa6aaf4d5cb12e3b4eacadf25843b41452
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108403
    Tested-by: Jenkins
    Reviewed-by: Michael Stahl <michael.stahl at allotropia.de>

diff --git a/pyuno/source/loader/pyuno_loader.cxx b/pyuno/source/loader/pyuno_loader.cxx
index 3a7bfd5cf45f..0db6e637a2a7 100644
--- a/pyuno/source/loader/pyuno_loader.cxx
+++ b/pyuno/source/loader/pyuno_loader.cxx
@@ -223,7 +223,9 @@ void pythonInit() {
 
     // initialize python
     Py_Initialize();
+#if PY_VERSION_HEX < 0x03090000
     PyEval_InitThreads();
+#endif
 
     PyThreadState *tstate = PyThreadState_Get();
     PyEval_ReleaseThread( tstate );


More information about the Libreoffice-commits mailing list