Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions .github/test_plan.md
Original file line number Diff line number Diff line change
Expand Up @@ -224,14 +224,6 @@ def foo():pass
- [ ] yapf
- [ ] `"editor.formatOnType": true` works and has expected results

#### [Refactoring](https://code.visualstudio.com/docs/python/editing#_refactoring)

- [ ] [`Extract Variable`](https://code.visualstudio.com/docs/python/editing#_extract-variable) works
- [ ] You are prompted to install `rope` if it is not already available
- [ ] [`Extract method`](https://code.visualstudio.com/docs/python/editing#_extract-method) works
- [ ] You are prompted to install `rope` if it is not already available
- [ ] [`Sort Imports`](https://code.visualstudio.com/docs/python/editing#_sort-imports) works

### [Debugging](https://code.visualstudio.com/docs/python/debugging)

- [ ] [Configurations](https://code.visualstudio.com/docs/python/debugging#_debugging-specific-app-types) work (see [`package.json`](https://github.com/Microsoft/vscode-python/blob/main/package.json) and the `"configurationSnippets"` section for all of the possible configurations)
Expand Down
1 change: 0 additions & 1 deletion build/conda-functional-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ pycodestyle
pydocstyle
nose
pytest==4.6.9 # Last version of pytest with Python 2.7 support
rope
fastapi ; python_version>='3.6'
uvicorn ; python_version>='3.6'
flask
Expand Down
1 change: 0 additions & 1 deletion build/test-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ pydocstyle
prospector ; python_version > '2.7'
nose
pytest<6 ; python_version > '2.7' # Tests currently fail against pytest 6.
rope
flask
fastapi ; python_version > '2.7'
uvicorn ; python_version > '2.7'
Expand Down
22 changes: 0 additions & 22 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -219,16 +219,6 @@
"title": "%python.command.python.resetInterpreterSecurityStorage.title%",
"category": "Python"
},
{
"command": "python.refactorExtractVariable",
"title": "%python.command.python.refactorExtractVariable.title%",
"category": "Python Refactor"
},
{
"command": "python.refactorExtractMethod",
"title": "%python.command.python.refactorExtractMethod.title%",
"category": "Python Refactor"
},
{
"command": "python.viewTestOutput",
"title": "%python.command.python.viewTestOutput.title%",
Expand Down Expand Up @@ -372,18 +362,6 @@
],
"menus": {
"editor/context": [
{
"command": "python.refactorExtractVariable",
"title": "Refactor: Extract Variable",
"group": "Refactor",
"when": "editorHasSelection && editorLangId == python && !notebookEditorFocused"
},
{
"command": "python.refactorExtractMethod",
"title": "Refactor: Extract Method",
"group": "Refactor",
"when": "editorHasSelection && editorLangId == python && !notebookEditorFocused"
},
{
"command": "python.sortImports",
"title": "Refactor: Sort Imports",
Expand Down
2 changes: 0 additions & 2 deletions package.nls.de.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@
"python.command.python.debugtests.title": "Alle Unittests debuggen",
"python.command.python.execInTerminal.title": "Python-Datei im Terminal ausführen",
"python.command.python.setInterpreter.title": "Interpreter auswählen",
"python.command.python.refactorExtractVariable.title": "Variable extrahieren",
"python.command.python.refactorExtractMethod.title": "Methode extrahieren",
"python.command.python.viewTestOutput.title": "Unittest-Ausgabe anzeigen",
"python.command.python.selectAndRunTestMethod.title": "Unittest-Methode ausführen ...",
"python.command.python.selectAndDebugTestMethod.title": "Unittest-Debug-Methode ausführen ...",
Expand Down
2 changes: 0 additions & 2 deletions package.nls.es.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@
"python.command.python.debugtests.title": "Depurar todas las pruebas unitarias",
"python.command.python.execInTerminal.title": "Ejecutar archivo Python en la terminal",
"python.command.python.setInterpreter.title": "Seleccionar intérprete",
"python.command.python.refactorExtractVariable.title": "Extraer variable",
"python.command.python.refactorExtractMethod.title": "Extraer método",
"python.command.python.viewTestOutput.title": "Mostrar resultados de la prueba unitaria",
"python.command.python.selectAndRunTestMethod.title": "Método de ejecución de pruebas unitarias ...",
"python.command.python.selectAndDebugTestMethod.title": "Método de depuración de pruebas unitarias ...",
Expand Down
2 changes: 0 additions & 2 deletions package.nls.fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@
"python.command.python.debugtests.title": "Déboguer tous les tests unitaires",
"python.command.python.execInTerminal.title": "Exécuter le script Python dans un terminal",
"python.command.python.setInterpreter.title": "Sélectionner l'interpreteur",
"python.command.python.refactorExtractVariable.title": "Extraire la variable",
"python.command.python.refactorExtractMethod.title": "Extraire la méthode",
"python.command.python.viewTestOutput.title": "Afficher la sortie des tests unitaires",
"python.command.python.selectAndRunTestMethod.title": "Exécuter la méthode de test unitaire ...",
"python.command.python.selectAndDebugTestMethod.title": "Déboguer la méthode de test unitaire ...",
Expand Down
2 changes: 0 additions & 2 deletions package.nls.it.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@
"python.command.python.debugtests.title": "Esegui debug di tutti i test",
"python.command.python.execInTerminal.title": "Esegui file Python nel terminale",
"python.command.python.setInterpreter.title": "Seleziona interprete",
"python.command.python.refactorExtractVariable.title": "Estrai variable",
"python.command.python.refactorExtractMethod.title": "Estrai metodo",
"python.command.python.viewTestOutput.title": "Mostra output dei test",
"python.command.python.selectAndRunTestMethod.title": "Esegui metodo di test ...",
"python.command.python.selectAndDebugTestMethod.title": "Esegui debug del metodo di test ...",
Expand Down
2 changes: 0 additions & 2 deletions package.nls.ja.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
"python.command.python.debugtests.title": "すべての単体テストをデバッグ",
"python.command.python.execInTerminal.title": "ターミナルで Python ファイルを実行",
"python.command.python.setInterpreter.title": "インタープリターを選択",
"python.command.python.refactorExtractVariable.title": "変数を抽出",
"python.command.python.refactorExtractMethod.title": "メソッドを抽出",
"python.command.python.viewTestOutput.title": "単体テストの出力を表示",
"python.command.python.selectAndRunTestMethod.title": "単体テストメソッドを実行...",
"python.command.python.selectAndDebugTestMethod.title": "単体テストメソッドをデバッグ...",
Expand Down
2 changes: 0 additions & 2 deletions package.nls.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@
"python.command.python.switchToWeeklyChannel.title": "Switch to Insiders Weekly Channel",
"python.command.python.clearWorkspaceInterpreter.title": "Clear Workspace Interpreter Setting",
"python.command.python.resetInterpreterSecurityStorage.title": "Reset Stored Info for Untrusted Interpreters",
"python.command.python.refactorExtractVariable.title": "Extract Variable",
"python.command.python.refactorExtractMethod.title": "Extract Method",
"python.command.python.viewOutput.title": "Show Output",
"python.command.python.viewTestOutput.title": "Show Test Output",
"python.command.python.viewLanguageServerOutput.title": "Show Language Server Output",
Expand Down
2 changes: 0 additions & 2 deletions package.nls.ko-kr.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
"python.command.python.debugtests.title": "모든 단위 테스트 디버그",
"python.command.python.execInTerminal.title": "터미널에서 Python 파일 실행",
"python.command.python.setInterpreter.title": "인터프리터 선택",
"python.command.python.refactorExtractVariable.title": "변수 추출",
"python.command.python.refactorExtractMethod.title": "메서드 추출",
"python.command.python.viewTestOutput.title": "단위 테스트 결과 보기",
"python.command.python.selectAndRunTestMethod.title": "단위 테스트 메서드 실행 ...",
"python.command.python.selectAndDebugTestMethod.title": "단위 테스트 메서드 디버그 ...",
Expand Down
2 changes: 0 additions & 2 deletions package.nls.nl.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@
"python.command.python.debugtests.title": "Alle unittests debuggen",
"python.command.python.execInTerminal.title": "Python-bestand in terminal uitvoeren",
"python.command.python.setInterpreter.title": "Interpreter selecteren",
"python.command.python.refactorExtractVariable.title": "Variabelen selecteren",
"python.command.python.refactorExtractMethod.title": "Methode selecteren",
"python.command.python.viewTestOutput.title": "Unittest-resultaat laten zien",
"python.command.python.selectAndRunTestMethod.title": "Unittest-methode uitvoeren ...",
"python.command.python.selectAndDebugTestMethod.title": "Unittest-methode debuggen ...",
Expand Down
2 changes: 0 additions & 2 deletions package.nls.pl.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@
"python.command.python.debugtests.title": "Debuguj wszystkie testy jednostkowe",
"python.command.python.execInTerminal.title": "Uruchom plik pythonowy w terminalu",
"python.command.python.setInterpreter.title": "Wybierz wersję interpretera",
"python.command.python.refactorExtractVariable.title": "Wyodrębnij zmienną",
"python.command.python.refactorExtractMethod.title": "Wyodrębnij metodę",
"python.command.python.viewOutput.title": "Pokaż wyniki",
"python.command.python.viewTestOutput.title": "Pokaż wyniki testów jednostkowych",
"python.command.python.selectAndRunTestMethod.title": "Uruchom metodę testów jednostkowych ...",
Expand Down
2 changes: 0 additions & 2 deletions package.nls.pt-br.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@
"python.command.python.debugtests.title": "Depurar Todos os Testes Unitários",
"python.command.python.execInTerminal.title": "Executar Arquivo no Terminal",
"python.command.python.setInterpreter.title": "Selecionar Interpretador",
"python.command.python.refactorExtractVariable.title": "Extrair Variável",
"python.command.python.refactorExtractMethod.title": "Extrair Método",
"python.command.python.viewTestOutput.title": "Exibir Resultados dos Testes Unitários",
"python.command.python.selectAndRunTestMethod.title": "Executar Testes Unitários do Método ...",
"python.command.python.selectAndDebugTestMethod.title": "Depurar Testes Unitários do Método ...",
Expand Down
2 changes: 0 additions & 2 deletions package.nls.ru.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
"python.command.python.debugtests.title": "Запустить все тесты под отладчиком",
"python.command.python.execInTerminal.title": "Выполнить файл в консоли",
"python.command.python.setInterpreter.title": "Выбрать интерпретатор",
"python.command.python.refactorExtractVariable.title": "Извлечь в переменную",
"python.command.python.refactorExtractMethod.title": "Извлечь в метод",
"python.command.python.viewTestOutput.title": "Показать вывод теста",
"python.command.python.selectAndRunTestMethod.title": "Запусть тестовый метод...",
"python.command.python.selectAndDebugTestMethod.title": "Отладить тестовый метод...",
Expand Down
2 changes: 0 additions & 2 deletions package.nls.tr.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@
"python.command.python.debugtests.title": "Testleri Debug Et",
"python.command.python.execInTerminal.title": "Terminalde Çalıştır",
"python.command.python.setInterpreter.title": "Bir Interpreter Seçin",
"python.command.python.refactorExtractVariable.title": "Değişken Çıkar",
"python.command.python.refactorExtractMethod.title": "Metot Çıkar",
"python.command.python.viewTestOutput.title": "Test Çıktısını Görüntüle",
"python.command.python.selectAndRunTestMethod.title": "Test Metodu Çalıştır",
"python.command.python.selectAndDebugTestMethod.title": "Test Metodu Debug Et",
Expand Down
2 changes: 0 additions & 2 deletions package.nls.zh-cn.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@
"python.command.python.switchToWeeklyChannel.title": "切换到每周预览版本",
"python.command.python.clearWorkspaceInterpreter.title": "清除工作区解释器设置",
"python.command.python.resetInterpreterSecurityStorage.title": "重置已存储的未受信任解释器的信息",
"python.command.python.refactorExtractVariable.title": "提取变量",
"python.command.python.refactorExtractMethod.title": "提取方法",
"python.command.python.viewOutput.title": "显示输出",
"python.command.python.viewTestOutput.title": "显示单元测试输出",
"python.command.python.viewLanguageServerOutput.title": "显示语言服务器输出",
Expand Down
2 changes: 0 additions & 2 deletions package.nls.zh-tw.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@
"python.command.python.debugtests.title": "偵錯所有單元測試",
"python.command.python.execInTerminal.title": "在終端機中執行 Python 檔案",
"python.command.python.setInterpreter.title": "選擇直譯器",
"python.command.python.refactorExtractVariable.title": "提取變數",
"python.command.python.refactorExtractMethod.title": "提取方法",
"python.command.python.viewTestOutput.title": "顯示單元測試輸出",
"python.command.python.selectAndRunTestMethod.title": "執行單元測試方法…",
"python.command.python.selectAndDebugTestMethod.title": "偵錯單元測試方法…",
Expand Down
Loading