Message339502
| Author | zwol |
|---|---|
| Recipients | Barry Davis, ionelmc, neologix, nikicat, pitrou, vstinner, zwol |
| Date | 2019-04-05.14:22:06 |
| SpamBayes Score | -1.0 |
| Marked as misclassified | Yes |
| Message-id | <1554474126.61.0.633595085267.issue18748@roundup.psfhosted.org> |
| In-reply-to |
| Content | |
|---|---|
I have observed this problem in a production application using Python 3.5 and 3.6 (system-packaged interpreters from Ubuntu) and I would like to mention that this is an effective workaround:
```
import ctypes
libgcc_s = ctypes.CDLL("libgcc_s.so.1")
```
provided you do it before creating any threads, and the variable `libgcc_s` remains live until after all threads are terminated. |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2019-04-05 14:22:06 | zwol | set | recipients: + zwol, pitrou, vstinner, ionelmc, neologix, nikicat, Barry Davis |
| 2019-04-05 14:22:06 | zwol | set | messageid: <1554474126.61.0.633595085267.issue18748@roundup.psfhosted.org> |
| 2019-04-05 14:22:06 | zwol | link | issue18748 messages |
| 2019-04-05 14:22:06 | zwol | create | |