You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Avoid returning object.__init__ docstring with Jython and IronPython.
`inspect.isroutine(object().__init__)` returns True with Jython and
IronPython. Luckily we can easily use `inspect.isfunction(...) or
inspect.ismethod(...)` instead.
Fixes#13.
0 commit comments