MCPcopy Create free account
hub / github.com/fabioz/PyDev.Debugger / write

Method write

_pydevd_bundle/pydevconsole_code.py:394–401  ·  view source on GitHub ↗

Write a string. The base implementation writes to sys.stderr; a subclass may replace this with a different implementation.

(self, data)

Source from the content-addressed store, hash-verified

392 last_tb = ei = None
393
394 def write(self, data):
395 """Write a string.
396
397 The base implementation writes to sys.stderr; a subclass may
398 replace this with a different implementation.
399
400 """
401 sys.stderr.write(data)
402
403
404class InteractiveConsole(InteractiveInterpreter):

Callers 3

showsyntaxerrorMethod · 0.95
showtracebackMethod · 0.95
interactMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected