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
The issue has been closed, but the bug is still not resolved: microsoft/vscode-python#3236 microsoft/vscode-python#7787
python.languageServer
The debugger shows the dict element in the right order.
The debugger shows the dict elements in a wrong order.
Debug the code by inserting a breakpoint at the print statement:
atoms = {"H": 0, "He": 1, "Li": 2, "Be": 3} print(atoms)
The debugger will show an alphabetic order. The function print produces the right result though.
The text was updated successfully, but these errors were encountered:
Note: I'm working on a fix for this.
Sorry, something went wrong.
On Python 3.6 dicts retain insertion order, so, keys are no longer so…
588a3cd
…rted in such cases when printing. Fixes microsoft#566
0dd74a7
Any information on when and how it will be included in the new version?
No branches or pull requests
The issue has been closed, but the bug is still not resolved:
microsoft/vscode-python#3236
microsoft/vscode-python#7787
Environment data
python.languageServer
setting: pylance v2021.3.2Expected behaviour
The debugger shows the dict element in the right order.
Actual behaviour
The debugger shows the dict elements in a wrong order.
Steps to reproduce:
Debug the code by inserting a breakpoint at the print statement:
The debugger will show an alphabetic order. The function print produces the right result though.
The text was updated successfully, but these errors were encountered: