Home | History | Annotate | Download | only in idlelib

Lines Matching full:none

25     def __init__(self, editwin=None):
26 if editwin is None: # subprocess and test
27 self.editwin = None
31 self.calltip = None
35 self._make_calltip_window = None
41 def _remove_calltip_window(self, event=None):
44 self.calltip = None
100 rpcclt = None
120 return None
124 # constructor (ie, __init__() ) or None if we can't find one.
130 if rc is not None: return rc
131 return None
137 if ob is not None and hasattr(ob, '__call__'):
142 if fob is None:
143 fob = lambda: None
186 def t2(a, b=None): "(a, b=None)"
190 def t6(a, b=None, *args, **kw): "(a, b=None, ..., ***)"
194 "(ai=None, ...)"
195 def __init__(self, ai=None, *b): "(ai=None, ...)"
197 def t2(self, ai, b=None): "(ai, b=None)"
201 def t6(self, ai, b=None, *args, **kw): "(ai, b=None, ..., ***)"