Skip to content

Instantly share code, notes, and snippets.

@djs
Created October 23, 2012 03:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save djs/3936508 to your computer and use it in GitHub Desktop.
Save djs/3936508 to your computer and use it in GitHub Desktop.
test case to break jedi-vim parameter popup
class Foo(object):
def __init__(self):
pass
def bar(self, baz, qux):
return baz + qux
def main():
x = Foo()
x.bar(1, # press ctrl + C immediately after the comma here
if __name__ == '__main__':
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment