We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27ae4fa commit 02b9237Copy full SHA for 02b9237
src/epydoc/cli.py
@@ -1283,8 +1283,8 @@ def _profile():
1283
# 2005-September/047099.html>)
1284
if (hasattr(Profile, 'dispatch') and
1285
Profile.dispatch['c_exception'] is
1286
- Profile.trace_dispatch_exception.im_func):
1287
- trace_dispatch_return = Profile.trace_dispatch_return.im_func
+ six.get_method_function(Profile.trace_dispatch_exception)):
+ trace_dispatch_return = six.get_method_function(Profile.trace_dispatch_return)
1288
Profile.dispatch['c_exception'] = trace_dispatch_return
1289
try:
1290
prof = Profile()
0 commit comments