We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
From @ajmichaels on September 19, 2017 8:49
VS Code version: 1.6.1 Python Extension version: 0.7.0 Python Version: 3.6.2 OS and version: OSX 10.11.6
Go to definition doesn't work when a function's default arguments includes one or more numbers with underscores
A number having underscores should not affect go to definition.
Copied from original issue: DonJayamanne/pythonVSCode#1220
The text was updated successfully, but these errors were encountered:
I can verify this is a problem:
def foo1(a=1000000): pass def foo2(a=1_000_000): pass def bar(): foo1() foo2()
You can go to definition for foo1 but not foo2.
foo1
foo2
Sorry, something went wrong.
6015468
@MikhailArkhipov Go to def doesn't work for foo2
This was fixed as part of our Jedi 0.12.0 upgrade.
News entry for #180
8d88bb2
MikhailArkhipov
No branches or pull requests
From @ajmichaels on September 19, 2017 8:49
Environment data
VS Code version: 1.6.1
Python Extension version: 0.7.0
Python Version: 3.6.2
OS and version: OSX 10.11.6
Actual behavior
Go to definition doesn't work when a function's default arguments includes one or more numbers with underscores
Expected behavior
A number having underscores should not affect go to definition.
Copied from original issue: DonJayamanne/pythonVSCode#1220
The text was updated successfully, but these errors were encountered: