Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/wapython
Path: blob/main/python/py-pip/src/patches/02-pip-no-auto-refresh-progress.patch
1067 views
1
--- native/src/pip/_vendor/rich/live.py 2022-11-30 22:08:59
2
+++ wasm/src/pip/_vendor/rich/live.py 2022-11-30 22:11:29
3
@@ -127,7 +127,8 @@
4
# let this be displayed in the terminal).
5
self.stop()
6
raise
7
- if self.auto_refresh:
8
+ # COWASM: We hard disable this since threads are not supported yet and it used pthreads.
9
+ if False and self.auto_refresh:
10
self._refresh_thread = _RefreshThread(self, self.refresh_per_second)
11
self._refresh_thread.start()
12
13
14