We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bfeff43 commit 2e1d754Copy full SHA for 2e1d754
esm/exports.js
@@ -1,7 +1,11 @@
1
// this file simply exports enough stuff to allow
2
// 3rd party libraries, including PyScript, to work
3
import { buffered } from './interpreter/_io.js';
4
-import { loadProgress } from './interpreter/_python.js';
+import { loadProgress as lP } from './interpreter/_python.js';
5
+import { registry } from './interpreters.js';
6
+
7
+const loadProgress = (type, ...rest) => lP(registry.get(type), ...rest);
8
9
export { buffered, loadProgress };
10
export * from './index.js';
11
export * from './script-handler.js';
0 commit comments