Peter Šurda
36c2a80060
- kivy mock now uses a mock multiqueue, as the existing code didn't handle all problems. For example, trying to load OpenSSL currently crashes on my M1 Mac, so I can't even add an exception handler to fall back. With this patch, the kivy_mock simply forces a fallback to Queue
8 lines
99 B
Python
8 lines
99 B
Python
"""
|
|
Mock MultiQueue (just normal Queue)
|
|
"""
|
|
|
|
from six.moves import queue
|
|
|
|
MultiQueue = queue.Queue
|