##// END OF EJS Templates
Fix race condition in javascript kernel message processing...
Fix race condition in javascript kernel message processing Because the binary messages are now deserialized using the asynchronous FileReader API, we need to have some way to force the messages to still be processed in the order they are received. This patch implements a simple processing queue using promises.

File last commit:

r17765:7c1173bb
r20441:834cd9c4
Show More
__init__.py
15 lines | 334 B | text/x-python | PythonLexer
MinRK
add appnope to external
r13582
try:
from appnope import *
except ImportError:
__version__ = '0.0.5'
import sys
import platform
from distutils.version import LooseVersion as V
if sys.platform != "darwin" or V(platform.mac_ver()[0]) < V("10.9"):
Thomas Kluyver
Fix relative import in appnope...
r17765 from ._dummy import *
MinRK
add appnope to external
r13582 else:
from ._nope import *
del sys, platform, V