Lines Matching full:none
37 def __init__(self, locals=None):
43 "__doc__" set to None.
46 if locals is None:
47 locals = {"__name__": "__console__", "__doc__": None}
63 compile_command() returned None. Nothing happens.
82 if code is None:
112 def showsyntaxerror(self, filename=None):
161 tblist = tb = None
182 def __init__(self, locals=None, filename="<console>"):
200 def interact(self, banner=None):
220 if banner is None:
235 # Can be None if sys.stdin was redefined
236 encoding = getattr(sys.stdin, "encoding", None)
284 def interact(banner=None, readfunc=None, local=None):
291 Arguments (all optional, all default to None):
294 readfunc -- if not None, replaces InteractiveConsole.raw_input()
299 if readfunc is not None: