MCPcopy Index your code
hub / github.com/python/cpython / stdout

Function stdout

Platforms/emscripten/web_example/python.worker.mjs:40–49  ·  view source on GitHub ↗
(charCode)

Source from the content-addressed store, hash-verified

38}
39
40const stdout = (charCode) => {
41 if (charCode) {
42 postMessage({
43 type: "stdout",
44 stdout: charCode,
45 });
46 } else {
47 console.log(typeof charCode, charCode);
48 }
49};
50
51const stderr = (charCode) => {
52 if (charCode) {

Callers

nothing calls this directly

Calls 1

logMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…