We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a51270 commit c1eb832Copy full SHA for c1eb832
1 file changed
wolframclient/utils/lock.py
@@ -1,5 +1,7 @@
1
from __future__ import absolute_import, print_function, unicode_literals
2
3
+import warnings
4
+
5
try:
6
import multithreading
7
@@ -18,4 +20,5 @@ def Lock():
18
20
19
21
@contextmanager
22
def Lock():
23
+ warnings.warn("Lock is not implemented in the current interpreter.", RuntimeWarning)
24
yield
0 commit comments