(functions, cls, obj, init, docrevise)
| 4108 | """ |
| 4109 | |
| 4110 | def _make_global_funcs(functions, cls, obj, init, docrevise): |
| 4111 | for methodname in functions: |
| 4112 | method = getattr(cls, methodname) |
| 4113 | pl1, pl2 = getmethparlist(method) |
| 4114 | if pl1 == "": |
| 4115 | print(">>>>>>", pl1, pl2) |
| 4116 | continue |
| 4117 | defstr = __func_body.format(obj=obj, init=init, name=methodname, |
| 4118 | paramslist=pl1, argslist=pl2) |
| 4119 | exec(defstr, globals()) |
| 4120 | globals()[methodname].__doc__ = docrevise(method.__doc__) |
| 4121 | |
| 4122 | _make_global_funcs(_tg_screen_functions, _Screen, |
| 4123 | 'Turtle._screen', 'Screen()', _screen_docrevise) |
no test coverage detected
searching dependent graphs…