question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

No method found matching xxxx

See original GitHub issue

I get the following printouts on my terminal when I start Ginga:

No method found matching 'gs_swipe'
No method found matching 'ms_draw'
No method found matching 'kp_poly_add'
No method found matching 'kp_edit_del'
No method found matching 'ms_cursor'
No method found matching 'ms_none'
No method found matching 'kp_poly_del'
No method found matching 'ms_wheel'
No method found matching 'gs_tap'

It is emitted by ImageViewBindings.setup_settings_events() method in Bindings.py, in the following logic block:

            # Register for this symbolic event if we have a handler for it
            try:
                cb_method = getattr(self, name)

            except AttributeError:
                self.logger.warning("No method found matching '%s'" % (name))
                cb_method = None

And then farther down the codes, I see one of the offending callback name is explicitly commented out:

    ## def ms_draw(self, viewer, event, data_x, data_y):
    ##     return False

So, I gather there are no methods defined for the callbacks in the message but they are done on purpose. And there is nothing a user can do about it, so why emit such a warning?

Issue Analytics

  • State:closed
  • Created 7 years ago
  • Comments:6 (4 by maintainers)

github_iconTop GitHub Comments

1reaction
ejeschkecommented, Jul 29, 2016

p.s. Does vacation mean you walk 10 feet down to the beautiful Hawaiian beach? No that’s just called “after work”

0reactions
pllimcommented, Aug 9, 2016

Yes. Thanks!

Read more comments on GitHub >

github_iconTop Results From Across the Web

GetConnection returns “No method found matching route ...
I created a WebSocket API and integrated a Lambda Function with the '$connect' method, which printed the connectionId. I obtained connectionId ...
Read more >
Can not use GET and POST function to AWS API gateway with ...
When I test the API in API gateway, it works fine. ... The error message is: { "message": "No method found matching route...
Read more >
MethodError: no method matching, but the method exists
I'm getting the following error: ERROR: MethodError: no method matching choose(::Main.Sim.ModelBasedAgent, ::Int64) Closest candidates are: ...
Read more >
macOS – SSH Error 'No Matching Exchange Method Found'
Mac SSH error Problem seen after upgrading macOSX to Sierra, where Open SSH Version 7 stops you communicating with devices using RSA SHA1...
Read more >
Unable to negotiate with x.x.x.x port ... - Wicked Network, Dude
I setup an ASA recently and ran into an issue where I couldn't SSH to the unit from a Mac device. Key pairs...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found