Created
October 23, 2012 03:49
-
-
Save djs/3936508 to your computer and use it in GitHub Desktop.
test case to break jedi-vim parameter popup
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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