mirror of
https://github.com/microsoft/pyright.git
synced 2025-12-23 09:19:29 +00:00
pull-pylance-with-pyright-1.1.407-20251029-180818 (#11072)
Some checks failed
Run mypy_primer on push / Run mypy_primer on push (push) Has been cancelled
Validation / Typecheck (push) Has been cancelled
Validation / Style (push) Has been cancelled
Validation / Test macos-latest (push) Has been cancelled
Validation / Test ubuntu-latest (push) Has been cancelled
Validation / Test windows-latest (push) Has been cancelled
Validation / Build (push) Has been cancelled
Validation / Required (push) Has been cancelled
Some checks failed
Run mypy_primer on push / Run mypy_primer on push (push) Has been cancelled
Validation / Typecheck (push) Has been cancelled
Validation / Style (push) Has been cancelled
Validation / Test macos-latest (push) Has been cancelled
Validation / Test ubuntu-latest (push) Has been cancelled
Validation / Test windows-latest (push) Has been cancelled
Validation / Build (push) Has been cancelled
Validation / Required (push) Has been cancelled
Co-authored-by: Azure Piplines <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
d2a4d57845
commit
906e40aadd
15 changed files with 17 additions and 0 deletions
|
|
@ -414,6 +414,9 @@ export abstract class LanguageServerBase implements LanguageServerInterface, Dis
|
|||
AnalyzerServiceExecutor.runWithOptions(workspace, serverSettings, { typeStubTargetImportName });
|
||||
workspace.searchPathsToWatch = workspace.service.librarySearchUrisToWatch ?? [];
|
||||
}
|
||||
protected get workspaceDiagnosticsReporter() {
|
||||
return this._workspaceDiagnosticsReporter;
|
||||
}
|
||||
|
||||
protected abstract executeCommand(params: ExecuteCommandParams, token: CancellationToken): Promise<any>;
|
||||
|
||||
|
|
|
|||
|
|
@ -824,6 +824,7 @@
|
|||
"typedDictClassNotAllowed": "Třída TypedDict není povolená pro kontroly instancí nebo tříd.",
|
||||
"typedDictClosedExtraNotAllowed": "Do {name} nejde přidat položku.",
|
||||
"typedDictClosedExtraTypeMismatch": "Nelze přidat položku {name} s typem {type}.",
|
||||
"typedDictClosedFieldNotReadOnly": "Cannot add item \"{name}\" because it must be ReadOnly",
|
||||
"typedDictClosedFieldNotRequired": "Nelze přidat položku {name}, protože musí být NotRequired.",
|
||||
"typedDictExtraFieldNotAllowed": "{name} není k dispozici v {type}",
|
||||
"typedDictExtraFieldTypeMismatch": "Typ {name} není kompatibilní s typem „extra_items“ v typu {type}.",
|
||||
|
|
|
|||
|
|
@ -824,6 +824,7 @@
|
|||
"typedDictClassNotAllowed": "Die TypedDict-Klasse ist für Instanz- oder Klassenüberprüfungen nicht zulässig.",
|
||||
"typedDictClosedExtraNotAllowed": "Das Element „{name}“ kann nicht hinzugefügt werden.",
|
||||
"typedDictClosedExtraTypeMismatch": "Das Element „{name}“ mit dem Typ „{type}“ kann nicht hinzugefügt werden.",
|
||||
"typedDictClosedFieldNotReadOnly": "Cannot add item \"{name}\" because it must be ReadOnly",
|
||||
"typedDictClosedFieldNotRequired": "Das Element „{name}“ kann nicht hinzugefügt werden, da es „NotRequired“ sein muss.",
|
||||
"typedDictExtraFieldNotAllowed": "„{name}“ ist in „{type}“ nicht vorhanden.",
|
||||
"typedDictExtraFieldTypeMismatch": "Der Typ von „{name}“ ist nicht mit dem Typ „extra_items“ in „{type}“ kompatibel.",
|
||||
|
|
|
|||
|
|
@ -824,6 +824,7 @@
|
|||
"typedDictClassNotAllowed": "No se permite la clase TypedDict para comprobaciones de instancia o clase",
|
||||
"typedDictClosedExtraNotAllowed": "No se puede agregar el elemento \"{name}\"",
|
||||
"typedDictClosedExtraTypeMismatch": "No se puede agregar el elemento \"{name}\" con el tipo \"{type}\"",
|
||||
"typedDictClosedFieldNotReadOnly": "Cannot add item \"{name}\" because it must be ReadOnly",
|
||||
"typedDictClosedFieldNotRequired": "No se puede agregar el elemento \"{name}\" porque debe ser NotRequired.",
|
||||
"typedDictExtraFieldNotAllowed": "\"{name}\" no está presente en \"{type}\"",
|
||||
"typedDictExtraFieldTypeMismatch": "El tipo de \"{name}\" no es compatible con el tipo de \"extra_items\" en \"{type}\"",
|
||||
|
|
|
|||
|
|
@ -824,6 +824,7 @@
|
|||
"typedDictClassNotAllowed": "Classe TypedDict non autorisée pour les vérifications d’instance ou de classe",
|
||||
"typedDictClosedExtraNotAllowed": "Impossible d’ajouter l’élément « {name} »",
|
||||
"typedDictClosedExtraTypeMismatch": "Impossible d’ajouter l’élément « {name} » avec le type « {type} »",
|
||||
"typedDictClosedFieldNotReadOnly": "Cannot add item \"{name}\" because it must be ReadOnly",
|
||||
"typedDictClosedFieldNotRequired": "Impossible d’ajouter l’élément « {name} », car il doit être NotRequired",
|
||||
"typedDictExtraFieldNotAllowed": "« {name} » n’est pas présent dans « {type} »",
|
||||
"typedDictExtraFieldTypeMismatch": "Le type de « {name} » est incompatible avec le type « extra_items » dans « {type} »",
|
||||
|
|
|
|||
|
|
@ -824,6 +824,7 @@
|
|||
"typedDictClassNotAllowed": "Classe TypedDict non consentita per i controlli di istanze o classi",
|
||||
"typedDictClosedExtraNotAllowed": "Non è possibile aggiungere l'elemento \"{name}\"",
|
||||
"typedDictClosedExtraTypeMismatch": "Non è possibile aggiungere l'elemento \"{name}\" con tipo \"{type}\"",
|
||||
"typedDictClosedFieldNotReadOnly": "Cannot add item \"{name}\" because it must be ReadOnly",
|
||||
"typedDictClosedFieldNotRequired": "Non è possibile aggiungere l'elemento \"{name}\" perché deve essere NotRequired",
|
||||
"typedDictExtraFieldNotAllowed": "\"{name}\" non è presente in \"{type}\"",
|
||||
"typedDictExtraFieldTypeMismatch": "Il tipo di \"{name}\" non è compatibile con il tipo \"\"extra_items\" in \"{type}\"",
|
||||
|
|
|
|||
|
|
@ -824,6 +824,7 @@
|
|||
"typedDictClassNotAllowed": "TypedDict クラスはインスタンスまたはクラスのチェックには使用できません",
|
||||
"typedDictClosedExtraNotAllowed": "アイテム \"{name}\" を追加できません",
|
||||
"typedDictClosedExtraTypeMismatch": "型 \"{type}\" のアイテム \"{name}\" を追加できません",
|
||||
"typedDictClosedFieldNotReadOnly": "Cannot add item \"{name}\" because it must be ReadOnly",
|
||||
"typedDictClosedFieldNotRequired": "アイテム \"{name}\" を追加できません。これは NotRequired である必要があるためです。",
|
||||
"typedDictExtraFieldNotAllowed": "\"{name}\" は \"{type}\" に存在しません",
|
||||
"typedDictExtraFieldTypeMismatch": "\"{name}\" の型は、\"{type}\" の \"extra_items\" 型と互換性がありません",
|
||||
|
|
|
|||
|
|
@ -824,6 +824,7 @@
|
|||
"typedDictClassNotAllowed": "인스턴스 또는 클래스 검사에 TypedDict 클래스를 사용할 수 없습니다.",
|
||||
"typedDictClosedExtraNotAllowed": "항목 \"{name}\"을(를) 추가할 수 없음",
|
||||
"typedDictClosedExtraTypeMismatch": "형식이 \"{type}\"인 항목 \"{name}\"을(를) 추가할 수 없음",
|
||||
"typedDictClosedFieldNotReadOnly": "Cannot add item \"{name}\" because it must be ReadOnly",
|
||||
"typedDictClosedFieldNotRequired": "\"{name}\" 항목은 NotRequired여야 하므로 추가할 수 없습니다.",
|
||||
"typedDictExtraFieldNotAllowed": "\"{name}\"이(가) \"{type}\"에 없음",
|
||||
"typedDictExtraFieldTypeMismatch": "\"{name}\" 형식은 \"{type}\"의 \"extra_items\" 형식과 호환되지 않습니다.",
|
||||
|
|
|
|||
|
|
@ -824,6 +824,7 @@
|
|||
"typedDictClassNotAllowed": "Klasa TypedDict nie jest dozwolona na potrzeby sprawdzania wystąpienia lub klasy",
|
||||
"typedDictClosedExtraNotAllowed": "Nie można dodać elementu \"{name}\"",
|
||||
"typedDictClosedExtraTypeMismatch": "Nie można dodać elementu \"{name}\" z typem „{type}”",
|
||||
"typedDictClosedFieldNotReadOnly": "Cannot add item \"{name}\" because it must be ReadOnly",
|
||||
"typedDictClosedFieldNotRequired": "Nie można dodać elementu \"{name}\", ponieważ musi on mieć wartość NotRequired",
|
||||
"typedDictExtraFieldNotAllowed": "Element „{name}” nie jest obecny w typie „{type}”",
|
||||
"typedDictExtraFieldTypeMismatch": "Typ „{name}” jest niezgodny z typem „extra_items” w typie „{type}”",
|
||||
|
|
|
|||
|
|
@ -824,6 +824,7 @@
|
|||
"typedDictClassNotAllowed": "A classe TypedDict não é permitida para verificações de instância ou classe",
|
||||
"typedDictClosedExtraNotAllowed": "Não é possível adicionar o item \"{name}\"",
|
||||
"typedDictClosedExtraTypeMismatch": "Não é possível adicionar o item \"{name}\" com o tipo \"{type}\"",
|
||||
"typedDictClosedFieldNotReadOnly": "Cannot add item \"{name}\" because it must be ReadOnly",
|
||||
"typedDictClosedFieldNotRequired": "Não é possível adicionar o item \"{name}\" porque ele deve ser NotRequired",
|
||||
"typedDictExtraFieldNotAllowed": "\"{name}\" não está presente em \"{type}\"",
|
||||
"typedDictExtraFieldTypeMismatch": "Tipo de \"{name}\" é incompatível com tipo de \"extra_items\" em \"{type}\"",
|
||||
|
|
|
|||
|
|
@ -824,6 +824,7 @@
|
|||
"typedDictClassNotAllowed": "[Vgl7x][นั้TypedDict çlæss ñøt ælløwëð før ïñstæñçë ør çlæss çhëçksẤğ倪İЂҰक्र्तिृまẤğ倪İЂҰक्นั้ढूँ]",
|
||||
"typedDictClosedExtraNotAllowed": "[zT7Rm][นั้Çæññøt æðð ïtëm \"{ñæmë}\"Ấğ倪İЂҰक्र्นั้ढूँ]",
|
||||
"typedDictClosedExtraTypeMismatch": "[blC1e][นั้Çæññøt æðð ïtëm \"{ñæmë}\" wïth tÿpë \"{tÿpë}\"Ấğ倪İЂҰक्र्तिृまẤğ倪นั้ढूँ]",
|
||||
"typedDictClosedFieldNotReadOnly": "[45ICT][นั้Çæññøt æðð ïtëm \"{ñæmë}\" þëçæµsë ït mµst þë ReadOnlyẤğ倪İЂҰक्र्तिृまẤğ倪İЂҰक्นั้ढूँ]",
|
||||
"typedDictClosedFieldNotRequired": "[6rtDR][นั้Çæññøt æðð ïtëm \"{ñæmë}\" þëçæµsë ït mµst þë NotRequiredẤğ倪İЂҰक्र्तिृまẤğ倪İЂҰक्นั้ढूँ]",
|
||||
"typedDictExtraFieldNotAllowed": "[kFDh9][นั้\"{ñæmë}\" ïs ñøt prësëñt ïñ \"{tÿpë}\"Ấğ倪İЂҰक्र्तिृまนั้ढूँ]",
|
||||
"typedDictExtraFieldTypeMismatch": "[DnAhM][นั้Tÿpë øf \"{ñæmë}\" ïs ïñçømpætïþlë wïth tÿpë øf \"extra_items\" ïñ \"{tÿpë}\"Ấğ倪İЂҰक्र्तिृまẤğ倪İЂҰक्र्तिृまนั้ढूँ]",
|
||||
|
|
|
|||
|
|
@ -824,6 +824,7 @@
|
|||
"typedDictClassNotAllowed": "Класс TypedDict не допускается для проверок экземпляров или классов",
|
||||
"typedDictClosedExtraNotAllowed": "Не удается добавить элемент \"{name}\"",
|
||||
"typedDictClosedExtraTypeMismatch": "Не удается добавить элемент \"{name}\" типа \"{type}\"",
|
||||
"typedDictClosedFieldNotReadOnly": "Cannot add item \"{name}\" because it must be ReadOnly",
|
||||
"typedDictClosedFieldNotRequired": "Не удается добавить элемент \"{name}\", так как он должен быть помечен как NotRequired",
|
||||
"typedDictExtraFieldNotAllowed": "Элемент \"{name}\" отсутствует в типе \"{type}\"",
|
||||
"typedDictExtraFieldTypeMismatch": "Тип \"{name}\" несовместим с типом \"extra_items\" в \"{type}\"",
|
||||
|
|
|
|||
|
|
@ -824,6 +824,7 @@
|
|||
"typedDictClassNotAllowed": "Örnek veya sınıf denetimleri için TypedDict sınıfına izin verilmiyor",
|
||||
"typedDictClosedExtraNotAllowed": "\"{name}\" öğesi eklenemiyor",
|
||||
"typedDictClosedExtraTypeMismatch": "\"{type}\" türündeki \"{name}\" öğesi eklenemiyor",
|
||||
"typedDictClosedFieldNotReadOnly": "Cannot add item \"{name}\" because it must be ReadOnly",
|
||||
"typedDictClosedFieldNotRequired": "NotRequired olması gerektiğinden \"{name}\" öğesi eklenemiyor",
|
||||
"typedDictExtraFieldNotAllowed": "\"{name}\" öğesi \"{type}\" türünde mevcut değil",
|
||||
"typedDictExtraFieldTypeMismatch": "\"{name}\" türü, \"{type}\" altındaki \"extra_items\" türüyle uyumlu değil",
|
||||
|
|
|
|||
|
|
@ -824,6 +824,7 @@
|
|||
"typedDictClassNotAllowed": "不允许对实例或类检查使用 TypedDict 类",
|
||||
"typedDictClosedExtraNotAllowed": "无法添加项“{name}”",
|
||||
"typedDictClosedExtraTypeMismatch": "无法添加类型为“{type}”的项“{name}”",
|
||||
"typedDictClosedFieldNotReadOnly": "Cannot add item \"{name}\" because it must be ReadOnly",
|
||||
"typedDictClosedFieldNotRequired": "无法添加项“{name}”,因为它必须是 NotRequired",
|
||||
"typedDictExtraFieldNotAllowed": "“{type}”中不存在“{name}”",
|
||||
"typedDictExtraFieldTypeMismatch": "“{name}”的类型与“{type}”中的 “extra_items” 类型不兼容",
|
||||
|
|
|
|||
|
|
@ -824,6 +824,7 @@
|
|||
"typedDictClassNotAllowed": "執行個體或類別檢查不允許 TypedDict 類別",
|
||||
"typedDictClosedExtraNotAllowed": "無法新增項目 \"{name}\"",
|
||||
"typedDictClosedExtraTypeMismatch": "無法新增型別為 \"{type}\" 的項目 \"{name}\"",
|
||||
"typedDictClosedFieldNotReadOnly": "Cannot add item \"{name}\" because it must be ReadOnly",
|
||||
"typedDictClosedFieldNotRequired": "無法新增項目 \"{name}\",因為它必須是 NotRequired",
|
||||
"typedDictExtraFieldNotAllowed": "\"{name}\" 不存在於 \"{type}\"",
|
||||
"typedDictExtraFieldTypeMismatch": "\"{name}\" 的類型與 \"{type}\" 中 \"extra_items\" 的類型不相容",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue