├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── codeql.yml │ └── validation.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── docs ├── build-debug.md ├── builtins.md ├── ci-integration.md ├── command-line.md ├── commands.md ├── comments.md ├── configuration.md ├── getting-started.md ├── img │ ├── CreateTypeStub1.png │ ├── CreateTypeStub2.png │ └── PyrightLarge.png ├── import-resolution.md ├── internals.md ├── settings.md ├── type-concepts.md ├── type-inference.md ├── type-stubs.md └── typed-libraries.md ├── lerna.json ├── package.json ├── packages ├── pyright-internal │ ├── jest.config.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── analyzer │ │ │ ├── aliasDeclarationUtils.ts │ │ │ ├── analysis.ts │ │ │ ├── analyzerFileInfo.ts │ │ │ ├── analyzerNodeInfo.ts │ │ │ ├── backgroundAnalysisProgram.ts │ │ │ ├── binder.ts │ │ │ ├── checker.ts │ │ │ ├── circularDependency.ts │ │ │ ├── codeFlowEngine.ts │ │ │ ├── codeFlowTypes.ts │ │ │ ├── codeFlowUtils.ts │ │ │ ├── commentUtils.ts │ │ │ ├── constraintSolver.ts │ │ │ ├── constructorTransform.ts │ │ │ ├── cythonTransform.ts │ │ │ ├── dataClasses.ts │ │ │ ├── declaration.ts │ │ │ ├── declarationUtils.ts │ │ │ ├── docStringConversion.ts │ │ │ ├── docStringUtils.ts │ │ │ ├── enums.ts │ │ │ ├── functionTransform.ts │ │ │ ├── importResolver.ts │ │ │ ├── importResult.ts │ │ │ ├── importStatementUtils.ts │ │ │ ├── namedTuples.ts │ │ │ ├── packageTypeReport.ts │ │ │ ├── packageTypeVerifier.ts │ │ │ ├── parentDirectoryCache.ts │ │ │ ├── parseTreeCleaner.ts │ │ │ ├── parseTreeUtils.ts │ │ │ ├── parseTreeWalker.ts │ │ │ ├── patternMatching.ts │ │ │ ├── program.ts │ │ │ ├── properties.ts │ │ │ ├── protocols.ts │ │ │ ├── pyTypedUtils.ts │ │ │ ├── pythonPathUtils.ts │ │ │ ├── scope.ts │ │ │ ├── scopeUtils.ts │ │ │ ├── service.ts │ │ │ ├── sourceFile.ts │ │ │ ├── sourceFileInfoUtils.ts │ │ │ ├── sourceMapper.ts │ │ │ ├── staticExpressions.ts │ │ │ ├── symbol.ts │ │ │ ├── symbolNameUtils.ts │ │ │ ├── symbolUtils.ts │ │ │ ├── testWalker.ts │ │ │ ├── tracePrinter.ts │ │ │ ├── typeCache.ts │ │ │ ├── typeDocStringUtils.ts │ │ │ ├── typeEvaluator.ts │ │ │ ├── typeEvaluatorTypes.ts │ │ │ ├── typeEvaluatorWithTracker.ts │ │ │ ├── typeGuards.ts │ │ │ ├── typePrinter.ts │ │ │ ├── typeStubWriter.ts │ │ │ ├── typeUtils.ts │ │ │ ├── typeVarContext.ts │ │ │ ├── typedDicts.ts │ │ │ └── types.ts │ │ ├── backgroundAnalysis.ts │ │ ├── backgroundAnalysisBase.ts │ │ ├── backgroundThreadBase.ts │ │ ├── commands │ │ │ ├── commandController.ts │ │ │ ├── commandResult.ts │ │ │ ├── commands.ts │ │ │ ├── createCythonTypeStub.ts │ │ │ ├── createTypeStub.ts │ │ │ ├── quickActionCommand.ts │ │ │ └── restartServer.ts │ │ ├── common │ │ │ ├── cancellationUtils.ts │ │ │ ├── chokidarFileWatcherProvider.ts │ │ │ ├── collectionUtils.ts │ │ │ ├── commandLineOptions.ts │ │ │ ├── configOptions.ts │ │ │ ├── console.ts │ │ │ ├── core.ts │ │ │ ├── crypto.ts │ │ │ ├── debug.ts │ │ │ ├── deferred.ts │ │ │ ├── diagnostic.ts │ │ │ ├── diagnosticRules.ts │ │ │ ├── diagnosticSink.ts │ │ │ ├── editAction.ts │ │ │ ├── envVarUtils.ts │ │ │ ├── extensibility.ts │ │ │ ├── extensions.ts │ │ │ ├── fileBasedCancellationUtils.ts │ │ │ ├── fileSystem.ts │ │ │ ├── fullAccessHost.ts │ │ │ ├── host.ts │ │ │ ├── logTracker.ts │ │ │ ├── lspUtils.ts │ │ │ ├── memUtils.ts │ │ │ ├── pathConsts.ts │ │ │ ├── pathUtils.ts │ │ │ ├── positionUtils.ts │ │ │ ├── progressReporter.ts │ │ │ ├── pythonVersion.ts │ │ │ ├── realFileSystem.ts │ │ │ ├── stringUtils.ts │ │ │ ├── textEditUtils.ts │ │ │ ├── textRange.ts │ │ │ ├── textRangeCollection.ts │ │ │ ├── timing.ts │ │ │ ├── uriParser.ts │ │ │ └── workspaceEditUtils.ts │ │ ├── languageServerBase.ts │ │ ├── languageService │ │ │ ├── analyzerServiceExecutor.ts │ │ │ ├── autoImporter.ts │ │ │ ├── callHierarchyProvider.ts │ │ │ ├── codeActionProvider.ts │ │ │ ├── completionProvider.ts │ │ │ ├── definitionProvider.ts │ │ │ ├── documentHighlightProvider.ts │ │ │ ├── documentSymbolCollector.ts │ │ │ ├── documentSymbolProvider.ts │ │ │ ├── hoverProvider.ts │ │ │ ├── importAdder.ts │ │ │ ├── importSorter.ts │ │ │ ├── indentationUtils.ts │ │ │ ├── insertionPointUtils.ts │ │ │ ├── quickActions.ts │ │ │ ├── referencesProvider.ts │ │ │ ├── renameModuleProvider.ts │ │ │ ├── semanticTokens.ts │ │ │ ├── signatureHelpProvider.ts │ │ │ └── tooltipUtils.ts │ │ ├── localization │ │ │ ├── localize.ts │ │ │ ├── package.nls.de.json │ │ │ ├── package.nls.en-us.json │ │ │ ├── package.nls.es.json │ │ │ ├── package.nls.fr.json │ │ │ ├── package.nls.ja.json │ │ │ ├── package.nls.ru.json │ │ │ ├── package.nls.zh-cn.json │ │ │ └── package.nls.zh-tw.json │ │ ├── nodeMain.ts │ │ ├── nodeServer.ts │ │ ├── parser │ │ │ ├── characterStream.ts │ │ │ ├── characters.ts │ │ │ ├── parseNodes.ts │ │ │ ├── parser.ts │ │ │ ├── stringTokenUtils.ts │ │ │ ├── tokenizer.ts │ │ │ ├── tokenizerTypes.ts │ │ │ └── unicode.ts │ │ ├── pyright.ts │ │ ├── pyrightFileSystem.ts │ │ ├── readonlyAugmentedFileSystem.ts │ │ ├── server.ts │ │ ├── tests-cython │ │ │ ├── jest.config.js │ │ │ └── tests │ │ │ │ ├── samples │ │ │ │ ├── ccastaddress.pyx │ │ │ │ ├── cclass.pxd │ │ │ │ ├── cclass.pyx │ │ │ │ ├── cdefvar.pyx │ │ │ │ ├── cenum.pyx │ │ │ │ ├── cextern.pyx │ │ │ │ ├── cfunction.pyx │ │ │ │ ├── clegacyproperty.pyx │ │ │ │ ├── cmacro.pyx │ │ │ │ ├── cppclass.pxd │ │ │ │ ├── cppclass.pyx │ │ │ │ ├── cppclassoperators.pyx │ │ │ │ ├── cpptransform.pyx │ │ │ │ ├── cstruct.pyx │ │ │ │ ├── csuite.pyx │ │ │ │ ├── ctransform.pyx │ │ │ │ └── ctypedef.pyx │ │ │ │ ├── utils.ts │ │ │ │ └── valid.test.ts │ │ ├── tests │ │ │ ├── chainedSourceFiles.test.ts │ │ │ ├── checker.test.ts │ │ │ ├── collectionUtils.test.ts │ │ │ ├── common.test.ts │ │ │ ├── config.test.ts │ │ │ ├── debug.test.ts │ │ │ ├── deferred.test.ts │ │ │ ├── diagnosticOverrides.test.ts │ │ │ ├── docStringConversion.test.ts │ │ │ ├── docStringUtils.test.ts │ │ │ ├── documentSymbolCollector.test.ts │ │ │ ├── filesystem.test.ts │ │ │ ├── fourSlashParser.test.ts │ │ │ ├── fourSlashRunner.test.ts │ │ │ ├── fourslash │ │ │ │ ├── completions.autoimport.Lib.Found.Type.fourslash.ts │ │ │ │ ├── completions.autoimport.Lib.Found.duplication.fourslash.ts │ │ │ │ ├── completions.autoimport.Lib.NotFound.fourslash.ts │ │ │ │ ├── completions.autoimport.disabled.fourslash.ts │ │ │ │ ├── completions.autoimport.duplicates.fourslash.ts │ │ │ │ ├── completions.autoimport.fourslash.ts │ │ │ │ ├── completions.autoimport.fromImport.fourslash.ts │ │ │ │ ├── completions.autoimport.lib.alias.fourslash.ts │ │ │ │ ├── completions.autoimport.plainText.fourslash.ts │ │ │ │ ├── completions.autoimport.shadow.fourslash.ts │ │ │ │ ├── completions.autoimport.submodule.fourslash.ts │ │ │ │ ├── completions.autoimport.topLevel.fourslash.ts │ │ │ │ ├── completions.builtinDocstrings.fourslash.ts │ │ │ │ ├── completions.builtinOverride.fourslash.ts │ │ │ │ ├── completions.call.stringLiteral.fourslash.ts │ │ │ │ ├── completions.call.typedDict.fourslash.ts │ │ │ │ ├── completions.call.typedDict.list.fourslash.ts │ │ │ │ ├── completions.call.typedDict.states.fourslash.ts │ │ │ │ ├── completions.classVariable.fourslash.ts │ │ │ │ ├── completions.comment.fourslash.ts │ │ │ │ ├── completions.commitChars.fourslash.ts │ │ │ │ ├── completions.declNames.class.fourslash.ts │ │ │ │ ├── completions.declNames.exception.fourslash.ts │ │ │ │ ├── completions.declNames.for.fourslash.ts │ │ │ │ ├── completions.declNames.importAlias.fourslash.ts │ │ │ │ ├── completions.declNames.lambda.fourslash.ts │ │ │ │ ├── completions.declNames.method.fourslash.ts │ │ │ │ ├── completions.declNames.overload.fourslash.ts │ │ │ │ ├── completions.declNames.topLevelOverload.fourslash.ts │ │ │ │ ├── completions.dictionary.keys.complex.fourslash.ts │ │ │ │ ├── completions.dictionary.keys.expression.fourslash.ts │ │ │ │ ├── completions.dictionary.keys.literalTypes.fourslash.ts │ │ │ │ ├── completions.dictionary.keys.simple.fourslash.ts │ │ │ │ ├── completions.dictionary.keys.stringLiterals.fourslash.ts │ │ │ │ ├── completions.dictionary.keys.symbols.fourslash.ts │ │ │ │ ├── completions.enums.members.fourslash.ts │ │ │ │ ├── completions.excluded.fourslash.ts │ │ │ │ ├── completions.fourslash.ts │ │ │ │ ├── completions.fstring.fourslash.ts │ │ │ │ ├── completions.fstring.stringLiteral.fourslash.ts │ │ │ │ ├── completions.fuzzyMatching.fourslash.ts │ │ │ │ ├── completions.importDunderNames.fourslash.ts │ │ │ │ ├── completions.importSubmodule.fourslash.ts │ │ │ │ ├── completions.importsDuplicates.fourslash.ts │ │ │ │ ├── completions.inList.fourslash.ts │ │ │ │ ├── completions.included.fourslash.ts │ │ │ │ ├── completions.indexer.keys.getitem.fourslash.ts │ │ │ │ ├── completions.inherited.function.docFromStub.fourslash.ts │ │ │ │ ├── completions.inherited.overload.docFromScrWithStub.fourslash.ts │ │ │ │ ├── completions.inherited.overload.docFromStub.fourslash.ts │ │ │ │ ├── completions.inherited.property.docFromSrc.fourslash.ts │ │ │ │ ├── completions.inherited.property.docFromStub.fourslash.ts │ │ │ │ ├── completions.keywords.pythonVersion.fourslash.ts │ │ │ │ ├── completions.libCodeAndStub.fourslash.ts │ │ │ │ ├── completions.libCodeNoStub.fourslash.ts │ │ │ │ ├── completions.libStub.fourslash.ts │ │ │ │ ├── completions.literals.fourslash.ts │ │ │ │ ├── completions.localCode.fourslash.ts │ │ │ │ ├── completions.moduleContext.UnknownMemberOnInstance.fourslash.ts │ │ │ │ ├── completions.moduleContext.UnknownStaticFunctionOnClass.fourslash.ts │ │ │ │ ├── completions.moduleContext.libCodeNoStub.fourslash.ts │ │ │ │ ├── completions.overloads.fourslash.ts │ │ │ │ ├── completions.override.default.fourslash.ts │ │ │ │ ├── completions.override.default.importStub.ts │ │ │ │ ├── completions.override.default.imported.fourslash.ts │ │ │ │ ├── completions.override.default.stub.fourslash.ts │ │ │ │ ├── completions.override.fourslash.ts │ │ │ │ ├── completions.override.property.fourslash.ts │ │ │ │ ├── completions.override.property.stub.fourslash.ts │ │ │ │ ├── completions.override.staticAndClassmethod.fourslash.ts │ │ │ │ ├── completions.override.stub.fourslash.ts │ │ │ │ ├── completions.override2.fourslash.ts │ │ │ │ ├── completions.parameters.fourslash.ts │ │ │ │ ├── completions.params.fourslash.ts │ │ │ │ ├── completions.parentFolder.fourslash.ts │ │ │ │ ├── completions.parentFolders.fourslash.ts │ │ │ │ ├── completions.plainText.fourslash.ts │ │ │ │ ├── completions.private.fourslash.ts │ │ │ │ ├── completions.property.fourslash.ts │ │ │ │ ├── completions.propertyDocStrings.fourslash.ts │ │ │ │ ├── completions.self.fourslash.ts │ │ │ │ ├── completions.stringLiteral.escape.fourslash.ts │ │ │ │ ├── completions.stringLiteral.fourslash.ts │ │ │ │ ├── completions.triggers.fourslash.ts │ │ │ │ ├── completions.typeAlias.fourslash.ts │ │ │ │ ├── completions.typeshed.fourslash.ts │ │ │ │ ├── completions.vardecls.fourslash.ts │ │ │ │ ├── completions.variableDocStrings.fourslash.ts │ │ │ │ ├── completions.wildcardimports.fourslash.ts │ │ │ │ ├── completions.with.fourslash.ts │ │ │ │ ├── diagnostics.missingModuleSource.fourslash.ts │ │ │ │ ├── findDefinitions.builtinClass.fourslash.ts │ │ │ │ ├── findDefinitions.classes.fourslash.ts │ │ │ │ ├── findDefinitions.definitionFilter.preferSource.fourslash.ts │ │ │ │ ├── findDefinitions.definitionFilter.preferSource.onlyStubs.ts │ │ │ │ ├── findDefinitions.definitionFilter.preferStub.fourslash.ts │ │ │ │ ├── findDefinitions.definitionFilter.preferStub.onlySource.fourslash.ts │ │ │ │ ├── findDefinitions.fields.fourslash.ts │ │ │ │ ├── findDefinitions.functions.fourslash.ts │ │ │ │ ├── findDefinitions.methods.fourslash.ts │ │ │ │ ├── findDefinitions.modules.fourslash.ts │ │ │ │ ├── findDefinitions.namespaceImport.fourslash.ts │ │ │ │ ├── findDefinitions.overloads.fourslash.ts │ │ │ │ ├── findDefinitions.parameters.fourslash.ts │ │ │ │ ├── findDefinitions.sourceAndStub.function.fourslash.ts │ │ │ │ ├── findDefinitions.sourceAndStub.innerClass.fourslash.ts │ │ │ │ ├── findDefinitions.sourceAndStub.innerClassMethod.fourslash.ts │ │ │ │ ├── findDefinitions.sourceAndStub.outerClass.fourslash.ts │ │ │ │ ├── findDefinitions.sourceAndStub.outerClassMethod.fourslash.ts │ │ │ │ ├── findDefinitions.sourceAndStub.outerClassPropertyReadOnly.fourslash.ts │ │ │ │ ├── findDefinitions.sourceAndStub.outerClassPropertyReadWrite.fourslash.ts │ │ │ │ ├── findDefinitions.sourceOnly.class.fourslash.ts │ │ │ │ ├── findDefinitions.sourceOnly.function1.fourslash.ts │ │ │ │ ├── findDefinitions.sourceOnly.function2.fourslash.ts │ │ │ │ ├── findDefinitions.sourceOnly.relativeImport1.fourslash.ts │ │ │ │ ├── findDefinitions.sourceOnly.relativeImport2.fourslash.ts │ │ │ │ ├── findDefinitions.stubOnly.fourslash.ts │ │ │ │ ├── findDefinitions.stubPackages.fourslash.ts │ │ │ │ ├── findDefinitions.typedDict.keys.fourslash.ts │ │ │ │ ├── findDefinitions.variables.fourslash.ts │ │ │ │ ├── findDefinitions.wildcardimports.fourslash.ts │ │ │ │ ├── findTypeDefinitions.builtinClass.fourslash.ts │ │ │ │ ├── findTypeDefinitions.classes.fourslash.ts │ │ │ │ ├── findTypeDefinitions.unions.fourslash.ts │ │ │ │ ├── findallreferences.classPropertyReadWrite.ts │ │ │ │ ├── findallreferences.fourslash.ts │ │ │ │ ├── findallreferences.importalias.fourslash.ts │ │ │ │ ├── findallreferences.invokedFromLibrary.fourslash.ts │ │ │ │ ├── findallreferences.module.nested.fourslash.ts │ │ │ │ ├── findallreferences.modules.duplicated.fourslash.ts │ │ │ │ ├── findallreferences.modules.fourslash.ts │ │ │ │ ├── findallreferences.modules.shadow.fourslash.ts │ │ │ │ ├── findallreferences.openFiles.fourslash.ts │ │ │ │ ├── findallreferences.parameter.fourslash.ts │ │ │ │ ├── findallreferences.sourceAndStub.class.fourslash.ts │ │ │ │ ├── findallreferences.sourceAndStub.classMethod.fourslash.ts │ │ │ │ ├── findallreferences.sourceAndStub.classPropertyReadOnly.fourslash.ts │ │ │ │ ├── findallreferences.sourceAndStub.classPropertyReadWrite.fourslash.skip.ts │ │ │ │ ├── findallreferences.sourceAndStub.function.fourslash.ts │ │ │ │ ├── findallreferences.variable.fourslash.ts │ │ │ │ ├── fourslash.ts │ │ │ │ ├── highlightreferences.attributes.fourslash.ts │ │ │ │ ├── hover.builtinDocstrings.fourslash.ts │ │ │ │ ├── hover.class.docString.fourslash.ts │ │ │ │ ├── hover.classNoInit.fourslash.ts │ │ │ │ ├── hover.docFromScr.stringFormat.fourslash.ts │ │ │ │ ├── hover.docFromSrc.fourslash.ts │ │ │ │ ├── hover.docFromSrc.pkg-vs-module1.fourslash.ts │ │ │ │ ├── hover.docFromSrc.pkg-vs-module2.fourslash.ts │ │ │ │ ├── hover.docFromSrc.relativeImport1.fourslash.ts │ │ │ │ ├── hover.docFromSrc.relativeImport2.fourslash.ts │ │ │ │ ├── hover.docFromSrc.relativeImport3.fourslash.ts │ │ │ │ ├── hover.docFromSrc.stubs-package.fourslash.ts │ │ │ │ ├── hover.docFromSrc.typeshed.fourslash.ts │ │ │ │ ├── hover.docstring.links.fourslash.ts │ │ │ │ ├── hover.docstring.overloads.fourslash.ts │ │ │ │ ├── hover.docstring.split.fourslash.ts │ │ │ │ ├── hover.fourslash.ts │ │ │ │ ├── hover.import.django.view.fourslash.ts │ │ │ │ ├── hover.import.fourslash.ts │ │ │ │ ├── hover.inherited.docFromSrc.fourslash.ts │ │ │ │ ├── hover.inherited.docFromSrcWithStub.fourslash.ts │ │ │ │ ├── hover.inherited.docFromStub.fourslash.ts │ │ │ │ ├── hover.inherited.overload.docFromSrcWithStub.fourslash.ts │ │ │ │ ├── hover.inherited.overload.docFromStub.fourslash.ts │ │ │ │ ├── hover.inherited.property.docFromSrcWithStub.fourslash.ts │ │ │ │ ├── hover.inherited.property.docFromStub.fourslash.ts │ │ │ │ ├── hover.init.fourslash.ts │ │ │ │ ├── hover.libCodeAndStub.fourslash.ts │ │ │ │ ├── hover.libCodeNoStub.fourslash.ts │ │ │ │ ├── hover.libStub.fourslash.ts │ │ │ │ ├── hover.optionalAliasParameter.fourslash.ts │ │ │ │ ├── hover.plainText.fourslash.ts │ │ │ │ ├── hover.typedDict.key.fourslash.ts │ │ │ │ ├── hover.variable.docString.fourslash.ts │ │ │ │ ├── hover.wildcardimports.fourslash.ts │ │ │ │ ├── import.multipart.fourslash.ts │ │ │ │ ├── import.publicSymbols.fourslash.ts │ │ │ │ ├── import.pytyped.dunderAll.fourslash.ts │ │ │ │ ├── import.pytyped.privateSymbols.fourslash.ts │ │ │ │ ├── import.pytyped.typeCheckingBasic.fourslash.ts │ │ │ │ ├── import.pytyped.typeCheckingOff.fourslash.ts │ │ │ │ ├── import.wildcard.fourslash.ts │ │ │ │ ├── importnotresolved.fourslash.ts │ │ │ │ ├── missingModuleSource.disablingInStrictMode.fourslash.ts │ │ │ │ ├── missingModuleSource.fourslash.ts │ │ │ │ ├── missingTypeStub.codeAction.fourslash.ts │ │ │ │ ├── missingTypeStub.command.multipart.fourslash.ts │ │ │ │ ├── missingTypeStub.command.singlefile.fourslash.ts │ │ │ │ ├── missingTypeStub.command.singlepart.fourslash.ts │ │ │ │ ├── missingTypeStub.fourslash.ts │ │ │ │ ├── missingTypeStub.invokeCodeAction.fourslash.ts │ │ │ │ ├── noerrors.fourslash.ts │ │ │ │ ├── orderImports1.command.fourslash.ts │ │ │ │ ├── orderImports2.command.fourslash.ts │ │ │ │ ├── rename.externallyHidden.fourslash.ts │ │ │ │ ├── rename.externallyHidden.params.fourslash.ts │ │ │ │ ├── rename.fourslash.ts │ │ │ │ ├── rename.library.fourslash.ts │ │ │ │ ├── rename.library.sourceAndStub.fourslash.ts │ │ │ │ ├── rename.multipleDecl.fourslash.ts │ │ │ │ ├── rename.sourceAndStub.fourslash.ts │ │ │ │ ├── rename.string.excluded.fourslash.ts │ │ │ │ ├── rename.string.fourslash.ts │ │ │ │ ├── signature.builtinDocstrings.fourslash.ts │ │ │ │ ├── signature.complicated.fourslash.ts │ │ │ │ ├── signature.cornercases.fourslash.ts │ │ │ │ ├── signature.docstrings.fourslash.ts │ │ │ │ ├── signature.docstrings.overloaded.fourslash.ts │ │ │ │ ├── signature.docstrings.wildcardimports.fourslash.ts │ │ │ │ ├── signature.overload.fourslash.ts │ │ │ │ └── signature.simple.fourslash.ts │ │ │ ├── harness │ │ │ │ ├── fourslash │ │ │ │ │ ├── fourSlashParser.ts │ │ │ │ │ ├── fourSlashTypes.ts │ │ │ │ │ ├── runner.ts │ │ │ │ │ ├── testLanguageService.ts │ │ │ │ │ ├── testState.Consts.ts │ │ │ │ │ └── testState.ts │ │ │ │ ├── testAccessHost.ts │ │ │ │ ├── testHost.ts │ │ │ │ ├── utils.ts │ │ │ │ └── vfs │ │ │ │ │ ├── factory.ts │ │ │ │ │ ├── filesystem.ts │ │ │ │ │ └── pathValidation.ts │ │ │ ├── importAdder.test.ts │ │ │ ├── importResolver.test.ts │ │ │ ├── importStatementUtils.test.ts │ │ │ ├── indentationUtils.ptvs.test.ts │ │ │ ├── indentationUtils.reindent.test.ts │ │ │ ├── indentationUtils.test.ts │ │ │ ├── insertionPointUtils.test.ts │ │ │ ├── ipythonMode.test.ts │ │ │ ├── localizer.test.ts │ │ │ ├── parseTreeUtils.test.ts │ │ │ ├── parser.test.ts │ │ │ ├── pathUtils.test.ts │ │ │ ├── pyrightFileSystem.test.ts │ │ │ ├── renameModule.folder.test.ts │ │ │ ├── renameModule.fromImports.test.ts │ │ │ ├── renameModule.imports.test.ts │ │ │ ├── renameModule.misc.test.ts │ │ │ ├── renameModule.relativePath.test.ts │ │ │ ├── renameModuleTestUtils.ts │ │ │ ├── samples │ │ │ │ ├── abstractClass1.py │ │ │ │ ├── abstractClass2.py │ │ │ │ ├── abstractClass3.py │ │ │ │ ├── abstractClass4.py │ │ │ │ ├── abstractClass5.py │ │ │ │ ├── abstractClass6.py │ │ │ │ ├── abstractClass7.py │ │ │ │ ├── abstractClass8.py │ │ │ │ ├── abstractClass9.py │ │ │ │ ├── annotated1.py │ │ │ │ ├── annotatedVar1.py │ │ │ │ ├── annotatedVar2.py │ │ │ │ ├── annotatedVar3.py │ │ │ │ ├── annotatedVar4.py │ │ │ │ ├── annotatedVar5.py │ │ │ │ ├── annotatedVar6.py │ │ │ │ ├── annotatedVar7.py │ │ │ │ ├── annotatedVar8.py │ │ │ │ ├── annotations1.py │ │ │ │ ├── annotations2.py │ │ │ │ ├── annotations3.py │ │ │ │ ├── annotations4.py │ │ │ │ ├── annotations5.py │ │ │ │ ├── annotations6.py │ │ │ │ ├── assert1.py │ │ │ │ ├── assertType1.py │ │ │ │ ├── assignment1.py │ │ │ │ ├── assignment10.py │ │ │ │ ├── assignment2.py │ │ │ │ ├── assignment3.py │ │ │ │ ├── assignment4.py │ │ │ │ ├── assignment5.py │ │ │ │ ├── assignment6.py │ │ │ │ ├── assignment7.py │ │ │ │ ├── assignment8.py │ │ │ │ ├── assignment9.py │ │ │ │ ├── assignmentExpr1.py │ │ │ │ ├── assignmentExpr2.py │ │ │ │ ├── assignmentExpr3.py │ │ │ │ ├── assignmentExpr4.py │ │ │ │ ├── assignmentExpr5.py │ │ │ │ ├── assignmentExpr6.py │ │ │ │ ├── assignmentExpr7.py │ │ │ │ ├── assignmentExpr8.py │ │ │ │ ├── assignmentExpr9.py │ │ │ │ ├── async1.py │ │ │ │ ├── augmentedAssignment1.py │ │ │ │ ├── augmentedAssignment2.py │ │ │ │ ├── augmentedAssignment3.py │ │ │ │ ├── autoVariance1.py │ │ │ │ ├── autoVariance2.py │ │ │ │ ├── await1.py │ │ │ │ ├── await2.py │ │ │ │ ├── badToken1.py │ │ │ │ ├── builtins1.py │ │ │ │ ├── call1.py │ │ │ │ ├── call2.py │ │ │ │ ├── call3.py │ │ │ │ ├── call4.py │ │ │ │ ├── call5.py │ │ │ │ ├── call6.py │ │ │ │ ├── call7.py │ │ │ │ ├── callSite1.py │ │ │ │ ├── callSite2.py │ │ │ │ ├── callable1.py │ │ │ │ ├── callable2.py │ │ │ │ ├── callable3.py │ │ │ │ ├── callable4.py │ │ │ │ ├── callable5.py │ │ │ │ ├── callable6.py │ │ │ │ ├── callbackProtocol1.py │ │ │ │ ├── callbackProtocol2.py │ │ │ │ ├── callbackProtocol3.py │ │ │ │ ├── callbackProtocol4.py │ │ │ │ ├── callbackProtocol5.py │ │ │ │ ├── callbackProtocol6.py │ │ │ │ ├── callbackProtocol7.py │ │ │ │ ├── callbackProtocol8.py │ │ │ │ ├── capturedVariable1.py │ │ │ │ ├── circular1.py │ │ │ │ ├── circular2.py │ │ │ │ ├── circularBaseClass.py │ │ │ │ ├── classGetItem1.py │ │ │ │ ├── classVar1.py │ │ │ │ ├── classVar2.py │ │ │ │ ├── classVar3.py │ │ │ │ ├── classVar4.py │ │ │ │ ├── classes1.py │ │ │ │ ├── classes3.py │ │ │ │ ├── classes4.py │ │ │ │ ├── classes5.py │ │ │ │ ├── classes6.py │ │ │ │ ├── classes7.py │ │ │ │ ├── classes8.py │ │ │ │ ├── codeFlow1.py │ │ │ │ ├── codeFlow2.py │ │ │ │ ├── codeFlow3.py │ │ │ │ ├── codeFlow4.py │ │ │ │ ├── codeFlow5.py │ │ │ │ ├── codeFlow6.py │ │ │ │ ├── codeFlow7.py │ │ │ │ ├── comparison1.py │ │ │ │ ├── comparison2.py │ │ │ │ ├── complex1.py │ │ │ │ ├── constant1.py │ │ │ │ ├── constants1.py │ │ │ │ ├── constructor1.py │ │ │ │ ├── constructor10.py │ │ │ │ ├── constructor11.py │ │ │ │ ├── constructor12.py │ │ │ │ ├── constructor13.py │ │ │ │ ├── constructor14.py │ │ │ │ ├── constructor2.py │ │ │ │ ├── constructor3.py │ │ │ │ ├── constructor4.py │ │ │ │ ├── constructor5.py │ │ │ │ ├── constructor6.py │ │ │ │ ├── constructor7.py │ │ │ │ ├── constructor8.py │ │ │ │ ├── constructor9.py │ │ │ │ ├── coroutines1.py │ │ │ │ ├── coroutines2.py │ │ │ │ ├── coroutines3.py │ │ │ │ ├── dataclass1.py │ │ │ │ ├── dataclass10.py │ │ │ │ ├── dataclass11.py │ │ │ │ ├── dataclass12.py │ │ │ │ ├── dataclass13.py │ │ │ │ ├── dataclass14.py │ │ │ │ ├── dataclass15.py │ │ │ │ ├── dataclass16.py │ │ │ │ ├── dataclass17.py │ │ │ │ ├── dataclass18.py │ │ │ │ ├── dataclass19.py │ │ │ │ ├── dataclass2.py │ │ │ │ ├── dataclass20.py │ │ │ │ ├── dataclass21.py │ │ │ │ ├── dataclass22.py │ │ │ │ ├── dataclass23.py │ │ │ │ ├── dataclass3.py │ │ │ │ ├── dataclass4.py │ │ │ │ ├── dataclass5.py │ │ │ │ ├── dataclass6.py │ │ │ │ ├── dataclass7.py │ │ │ │ ├── dataclass8.py │ │ │ │ ├── dataclass9.py │ │ │ │ ├── dataclassPostInit1.py │ │ │ │ ├── dataclassTransform1.py │ │ │ │ ├── dataclassTransform2.py │ │ │ │ ├── dataclassTransform3.py │ │ │ │ ├── dataclassTransform4.py │ │ │ │ ├── decorator1.py │ │ │ │ ├── decorator2.py │ │ │ │ ├── decorator3.py │ │ │ │ ├── decorator4.py │ │ │ │ ├── decorator5.py │ │ │ │ ├── decorator6.py │ │ │ │ ├── decorator7.py │ │ │ │ ├── defaultInitializer1.py │ │ │ │ ├── del1.py │ │ │ │ ├── deprecated1.py │ │ │ │ ├── descriptor1.py │ │ │ │ ├── descriptor2.py │ │ │ │ ├── dictionary1.py │ │ │ │ ├── dictionary2.py │ │ │ │ ├── dictionary3.py │ │ │ │ ├── dictionary4.py │ │ │ │ ├── dunderAll1.py │ │ │ │ ├── dunderAll2.py │ │ │ │ ├── dunderAll3.pyi │ │ │ │ ├── duplicateDeclaration1.py │ │ │ │ ├── duplicateDeclaration2.py │ │ │ │ ├── duplicateImports1.py │ │ │ │ ├── ellipsis1.pyi │ │ │ │ ├── emptyContainers1.py │ │ │ │ ├── enums1.py │ │ │ │ ├── enums2.py │ │ │ │ ├── enums3.py │ │ │ │ ├── enums4.py │ │ │ │ ├── enums5.py │ │ │ │ ├── enums6.py │ │ │ │ ├── enums7.py │ │ │ │ ├── enums8.py │ │ │ │ ├── enums9.py │ │ │ │ ├── expressions1.py │ │ │ │ ├── expressions2.py │ │ │ │ ├── expressions3.py │ │ │ │ ├── expressions4.py │ │ │ │ ├── expressions5.py │ │ │ │ ├── expressions6.py │ │ │ │ ├── expressions7.py │ │ │ │ ├── expressions8.py │ │ │ │ ├── expressions9.py │ │ │ │ ├── final1.py │ │ │ │ ├── final2.py │ │ │ │ ├── final3.py │ │ │ │ ├── final4.pyi │ │ │ │ ├── final5.py │ │ │ │ ├── forLoop1.py │ │ │ │ ├── forLoop2.py │ │ │ │ ├── fstring1.py │ │ │ │ ├── fstring2.py │ │ │ │ ├── fstring3.py │ │ │ │ ├── fstring4.py │ │ │ │ ├── fstring5.py │ │ │ │ ├── fstring6.py │ │ │ │ ├── function1.py │ │ │ │ ├── function10.py │ │ │ │ ├── function11.py │ │ │ │ ├── function12.py │ │ │ │ ├── function2.py │ │ │ │ ├── function3.py │ │ │ │ ├── function4.py │ │ │ │ ├── function6.py │ │ │ │ ├── function7.py │ │ │ │ ├── function8.py │ │ │ │ ├── function9.py │ │ │ │ ├── functionAnnotation1.py │ │ │ │ ├── functionAnnotation2.py │ │ │ │ ├── functionAnnotation3.py │ │ │ │ ├── functionAnnotation4.py │ │ │ │ ├── functionMember1.py │ │ │ │ ├── functionMember2.py │ │ │ │ ├── generators1.py │ │ │ │ ├── generators10.py │ │ │ │ ├── generators11.py │ │ │ │ ├── generators12.py │ │ │ │ ├── generators13.py │ │ │ │ ├── generators14.py │ │ │ │ ├── generators15.py │ │ │ │ ├── generators2.py │ │ │ │ ├── generators3.py │ │ │ │ ├── generators4.py │ │ │ │ ├── generators5.py │ │ │ │ ├── generators6.py │ │ │ │ ├── generators7.py │ │ │ │ ├── generators8.py │ │ │ │ ├── generators9.py │ │ │ │ ├── generic1.py │ │ │ │ ├── genericTypes1.py │ │ │ │ ├── genericTypes10.py │ │ │ │ ├── genericTypes11.py │ │ │ │ ├── genericTypes12.py │ │ │ │ ├── genericTypes13.py │ │ │ │ ├── genericTypes14.py │ │ │ │ ├── genericTypes15.py │ │ │ │ ├── genericTypes16.py │ │ │ │ ├── genericTypes17.py │ │ │ │ ├── genericTypes18.py │ │ │ │ ├── genericTypes19.py │ │ │ │ ├── genericTypes2.py │ │ │ │ ├── genericTypes20.py │ │ │ │ ├── genericTypes21.py │ │ │ │ ├── genericTypes22.py │ │ │ │ ├── genericTypes23.py │ │ │ │ ├── genericTypes24.py │ │ │ │ ├── genericTypes25.py │ │ │ │ ├── genericTypes26.py │ │ │ │ ├── genericTypes27.py │ │ │ │ ├── genericTypes28.py │ │ │ │ ├── genericTypes29.py │ │ │ │ ├── genericTypes30.py │ │ │ │ ├── genericTypes31.py │ │ │ │ ├── genericTypes32.py │ │ │ │ ├── genericTypes33.py │ │ │ │ ├── genericTypes34.py │ │ │ │ ├── genericTypes35.py │ │ │ │ ├── genericTypes36.py │ │ │ │ ├── genericTypes37.py │ │ │ │ ├── genericTypes38.py │ │ │ │ ├── genericTypes39.py │ │ │ │ ├── genericTypes4.py │ │ │ │ ├── genericTypes40.py │ │ │ │ ├── genericTypes41.py │ │ │ │ ├── genericTypes42.py │ │ │ │ ├── genericTypes43.py │ │ │ │ ├── genericTypes44.py │ │ │ │ ├── genericTypes45.py │ │ │ │ ├── genericTypes46.py │ │ │ │ ├── genericTypes47.py │ │ │ │ ├── genericTypes48.py │ │ │ │ ├── genericTypes49.py │ │ │ │ ├── genericTypes5.py │ │ │ │ ├── genericTypes50.py │ │ │ │ ├── genericTypes51.py │ │ │ │ ├── genericTypes52.py │ │ │ │ ├── genericTypes53.py │ │ │ │ ├── genericTypes54.py │ │ │ │ ├── genericTypes55.py │ │ │ │ ├── genericTypes56.py │ │ │ │ ├── genericTypes57.py │ │ │ │ ├── genericTypes58.py │ │ │ │ ├── genericTypes59.py │ │ │ │ ├── genericTypes6.py │ │ │ │ ├── genericTypes60.py │ │ │ │ ├── genericTypes61.py │ │ │ │ ├── genericTypes62.py │ │ │ │ ├── genericTypes63.py │ │ │ │ ├── genericTypes64.py │ │ │ │ ├── genericTypes65.py │ │ │ │ ├── genericTypes66.py │ │ │ │ ├── genericTypes67.py │ │ │ │ ├── genericTypes68.py │ │ │ │ ├── genericTypes69.py │ │ │ │ ├── genericTypes7.py │ │ │ │ ├── genericTypes70.py │ │ │ │ ├── genericTypes71.py │ │ │ │ ├── genericTypes72.py │ │ │ │ ├── genericTypes73.py │ │ │ │ ├── genericTypes74.py │ │ │ │ ├── genericTypes75.py │ │ │ │ ├── genericTypes76.py │ │ │ │ ├── genericTypes77.py │ │ │ │ ├── genericTypes78.py │ │ │ │ ├── genericTypes79.py │ │ │ │ ├── genericTypes8.py │ │ │ │ ├── genericTypes80.py │ │ │ │ ├── genericTypes81.py │ │ │ │ ├── genericTypes82.py │ │ │ │ ├── genericTypes83.py │ │ │ │ ├── genericTypes84.py │ │ │ │ ├── genericTypes85.py │ │ │ │ ├── genericTypes86.py │ │ │ │ ├── genericTypes87.py │ │ │ │ ├── genericTypes88.py │ │ │ │ ├── genericTypes89.py │ │ │ │ ├── genericTypes9.py │ │ │ │ ├── genericTypes90.py │ │ │ │ ├── genericTypes91.py │ │ │ │ ├── genericTypes92.py │ │ │ │ ├── genericTypes93.py │ │ │ │ ├── genericTypes94.py │ │ │ │ ├── genericTypes95.py │ │ │ │ ├── genericTypes96.py │ │ │ │ ├── import1.py │ │ │ │ ├── import10.py │ │ │ │ ├── import11.py │ │ │ │ ├── import12.py │ │ │ │ ├── import13.py │ │ │ │ ├── import14.py │ │ │ │ ├── import2.py │ │ │ │ ├── import3.py │ │ │ │ ├── import4.py │ │ │ │ ├── import5.py │ │ │ │ ├── import6.py │ │ │ │ ├── import7.py │ │ │ │ ├── import8.py │ │ │ │ ├── import9.py │ │ │ │ ├── inconsistentConstructor1.py │ │ │ │ ├── inconsistentSpaceTab1.py │ │ │ │ ├── inconsistentSpaceTab2.py │ │ │ │ ├── index1.py │ │ │ │ ├── inferredTypes1.py │ │ │ │ ├── initVar1.py │ │ │ │ ├── initsubclass1.py │ │ │ │ ├── initsubclass2.py │ │ │ │ ├── isinstance1.py │ │ │ │ ├── isinstance10.py │ │ │ │ ├── isinstance2.py │ │ │ │ ├── isinstance3.py │ │ │ │ ├── isinstance4.py │ │ │ │ ├── isinstance5.py │ │ │ │ ├── isinstance6.py │ │ │ │ ├── isinstance7.py │ │ │ │ ├── isinstance9.py │ │ │ │ ├── kwargsUnpack1.py │ │ │ │ ├── lambda1.py │ │ │ │ ├── lambda2.py │ │ │ │ ├── lambda3.py │ │ │ │ ├── lambda4.py │ │ │ │ ├── lambda5.py │ │ │ │ ├── lambda6.py │ │ │ │ ├── lines1.py │ │ │ │ ├── list1.py │ │ │ │ ├── list2.py │ │ │ │ ├── listComprehension1.py │ │ │ │ ├── listComprehension2.py │ │ │ │ ├── listComprehension3.py │ │ │ │ ├── listComprehension4.py │ │ │ │ ├── listComprehension5.py │ │ │ │ ├── listComprehension6.py │ │ │ │ ├── listComprehension7.py │ │ │ │ ├── listComprehension8.py │ │ │ │ ├── literalString1.py │ │ │ │ ├── literalString2.py │ │ │ │ ├── literals1.py │ │ │ │ ├── literals2.py │ │ │ │ ├── literals3.py │ │ │ │ ├── literals4.py │ │ │ │ ├── literals5.py │ │ │ │ ├── literals6.py │ │ │ │ ├── literals7.py │ │ │ │ ├── loops1.py │ │ │ │ ├── loops10.py │ │ │ │ ├── loops11.py │ │ │ │ ├── loops12.py │ │ │ │ ├── loops13.py │ │ │ │ ├── loops14.py │ │ │ │ ├── loops15.py │ │ │ │ ├── loops16.py │ │ │ │ ├── loops17.py │ │ │ │ ├── loops18.py │ │ │ │ ├── loops19.py │ │ │ │ ├── loops2.py │ │ │ │ ├── loops20.py │ │ │ │ ├── loops21.py │ │ │ │ ├── loops22.py │ │ │ │ ├── loops23.py │ │ │ │ ├── loops24.py │ │ │ │ ├── loops25.py │ │ │ │ ├── loops26.py │ │ │ │ ├── loops27.py │ │ │ │ ├── loops3.py │ │ │ │ ├── loops4.py │ │ │ │ ├── loops5.py │ │ │ │ ├── loops6.py │ │ │ │ ├── loops7.py │ │ │ │ ├── loops8.py │ │ │ │ ├── loops9.py │ │ │ │ ├── match1.py │ │ │ │ ├── match10.py │ │ │ │ ├── match2.py │ │ │ │ ├── match3.py │ │ │ │ ├── match4.py │ │ │ │ ├── match5.py │ │ │ │ ├── match6.py │ │ │ │ ├── match7.py │ │ │ │ ├── match8.py │ │ │ │ ├── match9.py │ │ │ │ ├── maxParseDepth1.py │ │ │ │ ├── maxParseDepth2.py │ │ │ │ ├── memberAccess1.py │ │ │ │ ├── memberAccess10.py │ │ │ │ ├── memberAccess11.py │ │ │ │ ├── memberAccess12.py │ │ │ │ ├── memberAccess13.py │ │ │ │ ├── memberAccess14.py │ │ │ │ ├── memberAccess15.py │ │ │ │ ├── memberAccess16.py │ │ │ │ ├── memberAccess17.py │ │ │ │ ├── memberAccess18.py │ │ │ │ ├── memberAccess19.py │ │ │ │ ├── memberAccess2.py │ │ │ │ ├── memberAccess20.py │ │ │ │ ├── memberAccess3.py │ │ │ │ ├── memberAccess4.py │ │ │ │ ├── memberAccess5.py │ │ │ │ ├── memberAccess6.py │ │ │ │ ├── memberAccess7.py │ │ │ │ ├── memberAccess8.py │ │ │ │ ├── memberAccess9.py │ │ │ │ ├── metaclass1.py │ │ │ │ ├── metaclass2.py │ │ │ │ ├── metaclass3.py │ │ │ │ ├── metaclass4.py │ │ │ │ ├── metaclass5.py │ │ │ │ ├── metaclass6.py │ │ │ │ ├── metaclass7.py │ │ │ │ ├── metaclass8.py │ │ │ │ ├── metaclass9.py │ │ │ │ ├── methodOverride1.py │ │ │ │ ├── methodOverride2.py │ │ │ │ ├── methodOverride3.py │ │ │ │ ├── methodOverride4.py │ │ │ │ ├── missingSuper1.py │ │ │ │ ├── module1.py │ │ │ │ ├── module2.py │ │ │ │ ├── mro1.py │ │ │ │ ├── mro2.py │ │ │ │ ├── mro3.py │ │ │ │ ├── mro4.py │ │ │ │ ├── nameBindings1.py │ │ │ │ ├── nameBindings2.py │ │ │ │ ├── nameBindings3.py │ │ │ │ ├── nameBindings4.py │ │ │ │ ├── nameBindings5.py │ │ │ │ ├── namedTuples1.py │ │ │ │ ├── namedTuples2.py │ │ │ │ ├── namedTuples3.py │ │ │ │ ├── namedTuples4.py │ │ │ │ ├── namedTuples5.py │ │ │ │ ├── namedTuples6.py │ │ │ │ ├── namedTuples7.py │ │ │ │ ├── never1.py │ │ │ │ ├── never2.py │ │ │ │ ├── newType1.py │ │ │ │ ├── newType2.py │ │ │ │ ├── newType3.py │ │ │ │ ├── newType4.py │ │ │ │ ├── none1.py │ │ │ │ ├── none2.py │ │ │ │ ├── noreturn1.py │ │ │ │ ├── noreturn2.py │ │ │ │ ├── noreturn3.py │ │ │ │ ├── noreturn4.py │ │ │ │ ├── operators1.py │ │ │ │ ├── operators2.py │ │ │ │ ├── operators4.py │ │ │ │ ├── operators5.py │ │ │ │ ├── operators6.py │ │ │ │ ├── operators7.py │ │ │ │ ├── operators8.py │ │ │ │ ├── optional1.py │ │ │ │ ├── optional2.py │ │ │ │ ├── overload1.py │ │ │ │ ├── overload10.py │ │ │ │ ├── overload11.py │ │ │ │ ├── overload2.py │ │ │ │ ├── overload3.py │ │ │ │ ├── overload4.py │ │ │ │ ├── overload5.py │ │ │ │ ├── overload6.py │ │ │ │ ├── overload7.py │ │ │ │ ├── overload8.py │ │ │ │ ├── overload9.py │ │ │ │ ├── package1 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── psyche.py │ │ │ │ │ ├── psyche │ │ │ │ │ │ └── pysche.py │ │ │ │ │ ├── sub.py │ │ │ │ │ ├── sub.pyi │ │ │ │ │ └── sub │ │ │ │ │ │ └── __init__.py │ │ │ │ ├── paramInference1.py │ │ │ │ ├── paramNames1.py │ │ │ │ ├── paramSpec1.py │ │ │ │ ├── paramSpec10.py │ │ │ │ ├── paramSpec11.py │ │ │ │ ├── paramSpec12.py │ │ │ │ ├── paramSpec13.py │ │ │ │ ├── paramSpec14.py │ │ │ │ ├── paramSpec15.py │ │ │ │ ├── paramSpec16.py │ │ │ │ ├── paramSpec17.py │ │ │ │ ├── paramSpec18.py │ │ │ │ ├── paramSpec19.py │ │ │ │ ├── paramSpec2.py │ │ │ │ ├── paramSpec20.py │ │ │ │ ├── paramSpec21.py │ │ │ │ ├── paramSpec22.py │ │ │ │ ├── paramSpec23.py │ │ │ │ ├── paramSpec24.py │ │ │ │ ├── paramSpec25.py │ │ │ │ ├── paramSpec26.py │ │ │ │ ├── paramSpec27.py │ │ │ │ ├── paramSpec28.py │ │ │ │ ├── paramSpec29.py │ │ │ │ ├── paramSpec3.py │ │ │ │ ├── paramSpec30.py │ │ │ │ ├── paramSpec31.py │ │ │ │ ├── paramSpec32.py │ │ │ │ ├── paramSpec33.py │ │ │ │ ├── paramSpec34.py │ │ │ │ ├── paramSpec35.py │ │ │ │ ├── paramSpec36.py │ │ │ │ ├── paramSpec37.py │ │ │ │ ├── paramSpec38.py │ │ │ │ ├── paramSpec4.py │ │ │ │ ├── paramSpec5.py │ │ │ │ ├── paramSpec6.py │ │ │ │ ├── paramSpec7.py │ │ │ │ ├── paramSpec8.py │ │ │ │ ├── paramSpec9.py │ │ │ │ ├── paramType1.py │ │ │ │ ├── parameters1.py │ │ │ │ ├── partial1.py │ │ │ │ ├── partial2.py │ │ │ │ ├── private1.py │ │ │ │ ├── private2.py │ │ │ │ ├── project1 │ │ │ │ │ ├── pyrightconfig.json │ │ │ │ │ ├── sample1.py │ │ │ │ │ └── subfolder1 │ │ │ │ │ │ ├── sample2.py │ │ │ │ │ │ └── subfolder1-1 │ │ │ │ │ │ └── sample3.py │ │ │ │ ├── project2 │ │ │ │ │ └── pyrightconfig.json │ │ │ │ ├── project3 │ │ │ │ │ └── pyrightconfig.json │ │ │ │ ├── project4 │ │ │ │ │ ├── presentfile.py │ │ │ │ │ ├── pyrightconfig.json │ │ │ │ │ └── subfolder │ │ │ │ │ │ ├── presentfile2.py │ │ │ │ │ │ └── presentfile3.py │ │ │ │ ├── project5 │ │ │ │ │ └── pyrightconfig.json │ │ │ │ ├── project6 │ │ │ │ │ ├── app1.py │ │ │ │ │ ├── app2.py │ │ │ │ │ ├── projectA │ │ │ │ │ │ └── foo │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── bar │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ └── projectB │ │ │ │ │ │ └── foo │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── baz │ │ │ │ │ │ └── __init__.py │ │ │ │ ├── project_src │ │ │ │ │ └── src │ │ │ │ │ │ └── module1.py │ │ │ │ ├── project_src_is_pkg │ │ │ │ │ └── src │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── module1.py │ │ │ │ ├── project_src_with_config_extra_paths │ │ │ │ │ ├── pyrightconfig.json │ │ │ │ │ └── src │ │ │ │ │ │ └── module1.py │ │ │ │ ├── project_src_with_config_no_extra_paths │ │ │ │ │ ├── pyrightconfig.json │ │ │ │ │ └── src │ │ │ │ │ │ └── module1.py │ │ │ │ ├── project_src_with_extra_paths │ │ │ │ │ └── src │ │ │ │ │ │ ├── _vendored │ │ │ │ │ │ └── vendored1.py │ │ │ │ │ │ └── module1.py │ │ │ │ ├── project_with_pyproject_toml │ │ │ │ │ └── pyproject.toml │ │ │ │ ├── project_with_venv_auto_detect_exclude │ │ │ │ │ ├── myvenv │ │ │ │ │ │ ├── Lib │ │ │ │ │ │ │ └── site-packages │ │ │ │ │ │ │ │ └── library1.py │ │ │ │ │ │ └── pyvenv.cfg │ │ │ │ │ ├── pyrightconfig.json │ │ │ │ │ ├── sample1.py │ │ │ │ │ └── subfolder1 │ │ │ │ │ │ ├── sample2.py │ │ │ │ │ │ └── subfolder1-1 │ │ │ │ │ │ └── sample3.py │ │ │ │ ├── project_with_venv_auto_detect_include │ │ │ │ │ ├── excluded │ │ │ │ │ │ └── excluded1.py │ │ │ │ │ ├── myvenv │ │ │ │ │ │ ├── Lib │ │ │ │ │ │ │ └── site-packages │ │ │ │ │ │ │ │ └── library1.py │ │ │ │ │ │ └── pyvenv.cfg │ │ │ │ │ ├── pyrightconfig.json │ │ │ │ │ ├── sample1.py │ │ │ │ │ └── subfolder1 │ │ │ │ │ │ ├── sample2.py │ │ │ │ │ │ └── subfolder1-1 │ │ │ │ │ │ └── sample3.py │ │ │ │ ├── properties1.py │ │ │ │ ├── properties10.py │ │ │ │ ├── properties11.py │ │ │ │ ├── properties12.py │ │ │ │ ├── properties13.py │ │ │ │ ├── properties2.py │ │ │ │ ├── properties3.py │ │ │ │ ├── properties4.py │ │ │ │ ├── properties5.py │ │ │ │ ├── properties6.py │ │ │ │ ├── properties7.py │ │ │ │ ├── properties8.py │ │ │ │ ├── properties9.py │ │ │ │ ├── protocol1.py │ │ │ │ ├── protocol10.py │ │ │ │ ├── protocol11.py │ │ │ │ ├── protocol12.py │ │ │ │ ├── protocol13.py │ │ │ │ ├── protocol14.py │ │ │ │ ├── protocol15.py │ │ │ │ ├── protocol16.py │ │ │ │ ├── protocol17.py │ │ │ │ ├── protocol18.py │ │ │ │ ├── protocol19.py │ │ │ │ ├── protocol2.py │ │ │ │ ├── protocol20.py │ │ │ │ ├── protocol21.py │ │ │ │ ├── protocol22.py │ │ │ │ ├── protocol23.py │ │ │ │ ├── protocol24.py │ │ │ │ ├── protocol25.py │ │ │ │ ├── protocol26.py │ │ │ │ ├── protocol27.py │ │ │ │ ├── protocol28.py │ │ │ │ ├── protocol29.py │ │ │ │ ├── protocol3.py │ │ │ │ ├── protocol30.py │ │ │ │ ├── protocol31.py │ │ │ │ ├── protocol32.py │ │ │ │ ├── protocol33.py │ │ │ │ ├── protocol34.py │ │ │ │ ├── protocol35.py │ │ │ │ ├── protocol4.py │ │ │ │ ├── protocol5.py │ │ │ │ ├── protocol6.py │ │ │ │ ├── protocol7.py │ │ │ │ ├── protocol8.py │ │ │ │ ├── protocol9.py │ │ │ │ ├── protocolModule1.py │ │ │ │ ├── protocolModule2.py │ │ │ │ ├── protocolModule3.py │ │ │ │ ├── protocolModule4.py │ │ │ │ ├── pseudoGeneric1.py │ │ │ │ ├── pyrightIgnore1.py │ │ │ │ ├── pyrightIgnore2.py │ │ │ │ ├── python2.py │ │ │ │ ├── recursiveTypeAlias1.py │ │ │ │ ├── recursiveTypeAlias2.py │ │ │ │ ├── recursiveTypeAlias3.py │ │ │ │ ├── recursiveTypeAlias4.py │ │ │ │ ├── recursiveTypeAlias5.pyi │ │ │ │ ├── recursiveTypeAlias6.py │ │ │ │ ├── recursiveTypeAlias7.py │ │ │ │ ├── recursiveTypeAlias8.py │ │ │ │ ├── recursiveTypeAlias9.py │ │ │ │ ├── required1.py │ │ │ │ ├── required2.py │ │ │ │ ├── required3.py │ │ │ │ ├── returnTypes1.py │ │ │ │ ├── returnTypes2.py │ │ │ │ ├── revealedType1.py │ │ │ │ ├── sample1.py │ │ │ │ ├── self1.py │ │ │ │ ├── self2.py │ │ │ │ ├── self3.py │ │ │ │ ├── self4.py │ │ │ │ ├── self5.py │ │ │ │ ├── setComprehension1.py │ │ │ │ ├── slots1.py │ │ │ │ ├── slots2.py │ │ │ │ ├── slots3.py │ │ │ │ ├── specialization1.py │ │ │ │ ├── specialization2.py │ │ │ │ ├── staticExpressions1.py │ │ │ │ ├── strings1.py │ │ │ │ ├── subscript1.py │ │ │ │ ├── subscript2.py │ │ │ │ ├── subscript3.py │ │ │ │ ├── suiteExpectedColon1.py │ │ │ │ ├── suiteExpectedColon2.py │ │ │ │ ├── suiteExpectedColon3.py │ │ │ │ ├── super1.py │ │ │ │ ├── super2.py │ │ │ │ ├── super3.py │ │ │ │ ├── super4.py │ │ │ │ ├── super5.py │ │ │ │ ├── super6.py │ │ │ │ ├── super7.py │ │ │ │ ├── super8.py │ │ │ │ ├── super9.py │ │ │ │ ├── test_file1.py │ │ │ │ ├── threePartVersion1.py │ │ │ │ ├── totalOrdering1.py │ │ │ │ ├── tryExcept1.py │ │ │ │ ├── tryExcept10.py │ │ │ │ ├── tryExcept2.py │ │ │ │ ├── tryExcept3.py │ │ │ │ ├── tryExcept4.py │ │ │ │ ├── tryExcept5.py │ │ │ │ ├── tryExcept6.py │ │ │ │ ├── tryExcept7.py │ │ │ │ ├── tryExcept8.py │ │ │ │ ├── tryExcept9.py │ │ │ │ ├── tupleUnpack1.py │ │ │ │ ├── tupleUnpack2.py │ │ │ │ ├── tupleUnpack3.py │ │ │ │ ├── tuples1.py │ │ │ │ ├── tuples10.py │ │ │ │ ├── tuples11.py │ │ │ │ ├── tuples12.py │ │ │ │ ├── tuples13.py │ │ │ │ ├── tuples15.py │ │ │ │ ├── tuples16.py │ │ │ │ ├── tuples2.py │ │ │ │ ├── tuples3.py │ │ │ │ ├── tuples4.py │ │ │ │ ├── tuples5.py │ │ │ │ ├── tuples6.py │ │ │ │ ├── tuples7.py │ │ │ │ ├── tuples8.py │ │ │ │ ├── tuples9.py │ │ │ │ ├── typeAlias1.py │ │ │ │ ├── typeAlias10.py │ │ │ │ ├── typeAlias11.py │ │ │ │ ├── typeAlias12.py │ │ │ │ ├── typeAlias13.py │ │ │ │ ├── typeAlias14.py │ │ │ │ ├── typeAlias15.py │ │ │ │ ├── typeAlias16.py │ │ │ │ ├── typeAlias2.py │ │ │ │ ├── typeAlias3.py │ │ │ │ ├── typeAlias4.py │ │ │ │ ├── typeAlias5.py │ │ │ │ ├── typeAlias6.py │ │ │ │ ├── typeAlias7.py │ │ │ │ ├── typeAlias8.py │ │ │ │ ├── typeAlias9.py │ │ │ │ ├── typeAliasStatement1.py │ │ │ │ ├── typeAliasStatement2.py │ │ │ │ ├── typeAliasStatement3.py │ │ │ │ ├── typeAliasStatement4.py │ │ │ │ ├── typeGuard1.py │ │ │ │ ├── typeGuard2.py │ │ │ │ ├── typeGuard3.py │ │ │ │ ├── typeGuard4.py │ │ │ │ ├── typeIgnore1.py │ │ │ │ ├── typeIgnore2.py │ │ │ │ ├── typeIgnore3.py │ │ │ │ ├── typeIgnore4.py │ │ │ │ ├── typeIgnore5.py │ │ │ │ ├── typeNarrowing1.py │ │ │ │ ├── typeNarrowing2.py │ │ │ │ ├── typeNarrowing3.py │ │ │ │ ├── typeNarrowing4.py │ │ │ │ ├── typeNarrowing5.py │ │ │ │ ├── typeNarrowing6.py │ │ │ │ ├── typeNarrowing7.py │ │ │ │ ├── typeNarrowingAssert1.py │ │ │ │ ├── typeNarrowingCallable1.py │ │ │ │ ├── typeNarrowingEnum1.py │ │ │ │ ├── typeNarrowingEnum2.py │ │ │ │ ├── typeNarrowingFalsy1.py │ │ │ │ ├── typeNarrowingIn1.py │ │ │ │ ├── typeNarrowingIsNone1.py │ │ │ │ ├── typeNarrowingIsNone2.py │ │ │ │ ├── typeNarrowingIsNoneTuple1.py │ │ │ │ ├── typeNarrowingIsNoneTuple2.py │ │ │ │ ├── typeNarrowingIsinstance1.py │ │ │ │ ├── typeNarrowingIsinstance10.py │ │ │ │ ├── typeNarrowingIsinstance2.py │ │ │ │ ├── typeNarrowingIsinstance3.py │ │ │ │ ├── typeNarrowingIsinstance4.py │ │ │ │ ├── typeNarrowingIsinstance5.py │ │ │ │ ├── typeNarrowingIsinstance6.py │ │ │ │ ├── typeNarrowingIsinstance7.py │ │ │ │ ├── typeNarrowingIsinstance8.py │ │ │ │ ├── typeNarrowingLiteral1.py │ │ │ │ ├── typeNarrowingLiteral2.py │ │ │ │ ├── typeNarrowingLiteralMember1.py │ │ │ │ ├── typeNarrowingLocalConst1.py │ │ │ │ ├── typeNarrowingNoneMember1.py │ │ │ │ ├── typeNarrowingTuple1.py │ │ │ │ ├── typeNarrowingTupleLength1.py │ │ │ │ ├── typeNarrowingTypeIs1.py │ │ │ │ ├── typeNarrowingTypedDict1.py │ │ │ │ ├── typeNarrowingTypedDict2.py │ │ │ │ ├── typeNarrowingTypedDict3.py │ │ │ │ ├── typeParams1.py │ │ │ │ ├── typeParams2.py │ │ │ │ ├── typeParams3.py │ │ │ │ ├── typeParams4.py │ │ │ │ ├── typeParams5.py │ │ │ │ ├── typeParams6.py │ │ │ │ ├── typeParams7.py │ │ │ │ ├── typePromotions1.py │ │ │ │ ├── typeVar1.py │ │ │ │ ├── typeVar10.py │ │ │ │ ├── typeVar11.py │ │ │ │ ├── typeVar2.py │ │ │ │ ├── typeVar3.py │ │ │ │ ├── typeVar4.py │ │ │ │ ├── typeVar5.py │ │ │ │ ├── typeVar6.py │ │ │ │ ├── typeVar7.py │ │ │ │ ├── typeVar8.py │ │ │ │ ├── typeVar9.py │ │ │ │ ├── typedDict1.py │ │ │ │ ├── typedDict10.py │ │ │ │ ├── typedDict11.py │ │ │ │ ├── typedDict12.py │ │ │ │ ├── typedDict13.py │ │ │ │ ├── typedDict14.py │ │ │ │ ├── typedDict15.py │ │ │ │ ├── typedDict16.py │ │ │ │ ├── typedDict17.py │ │ │ │ ├── typedDict18.py │ │ │ │ ├── typedDict19.py │ │ │ │ ├── typedDict2.py │ │ │ │ ├── typedDict20.py │ │ │ │ ├── typedDict21.py │ │ │ │ ├── typedDict3.py │ │ │ │ ├── typedDict4.py │ │ │ │ ├── typedDict5.py │ │ │ │ ├── typedDict6.py │ │ │ │ ├── typedDict7.py │ │ │ │ ├── typedDict8.py │ │ │ │ ├── typedDict9.py │ │ │ │ ├── unbound1.py │ │ │ │ ├── unbound2.py │ │ │ │ ├── unbound3.py │ │ │ │ ├── unbound4.py │ │ │ │ ├── unicode1.py │ │ │ │ ├── uninitializedVariable1.py │ │ │ │ ├── unions1.py │ │ │ │ ├── unions2.py │ │ │ │ ├── unions3.py │ │ │ │ ├── unions4.py │ │ │ │ ├── unions5.py │ │ │ │ ├── unions6.py │ │ │ │ ├── unnecessaryCast1.py │ │ │ │ ├── unnecessaryContains1.py │ │ │ │ ├── unnecessaryIsInstance1.py │ │ │ │ ├── unnecessaryIsSubclass1.py │ │ │ │ ├── unpack1.py │ │ │ │ ├── unpack2.py │ │ │ │ ├── unpack3.py │ │ │ │ ├── unpack4.py │ │ │ │ ├── unreachable1.py │ │ │ │ ├── unusedCallResult1.py │ │ │ │ ├── unusedCoroutine1.py │ │ │ │ ├── unusedExpression1.py │ │ │ │ ├── unusedVariable1.py │ │ │ │ ├── variadicTypeVar1.py │ │ │ │ ├── variadicTypeVar10.py │ │ │ │ ├── variadicTypeVar11.py │ │ │ │ ├── variadicTypeVar12.py │ │ │ │ ├── variadicTypeVar13.py │ │ │ │ ├── variadicTypeVar14.py │ │ │ │ ├── variadicTypeVar15.py │ │ │ │ ├── variadicTypeVar2.py │ │ │ │ ├── variadicTypeVar3.py │ │ │ │ ├── variadicTypeVar4.py │ │ │ │ ├── variadicTypeVar5.py │ │ │ │ ├── variadicTypeVar6.py │ │ │ │ ├── variadicTypeVar7.py │ │ │ │ ├── variadicTypeVar8.py │ │ │ │ ├── variadicTypeVar9.py │ │ │ │ ├── with1.py │ │ │ │ ├── with2.py │ │ │ │ ├── with3.py │ │ │ │ ├── with4.py │ │ │ │ ├── with5.py │ │ │ │ └── zipfs │ │ │ │ │ ├── bad.egg │ │ │ │ │ ├── bad.zip │ │ │ │ │ ├── basic.egg │ │ │ │ │ ├── basic.zip │ │ │ │ │ ├── corrupt.egg │ │ │ │ │ └── corrupt.zip │ │ │ ├── sourceFile.test.ts │ │ │ ├── stringUtils.test.ts │ │ │ ├── symbolNameUtils.test.ts │ │ │ ├── testState.test.ts │ │ │ ├── testStateUtils.ts │ │ │ ├── testUtils.ts │ │ │ ├── tokenizer.test.ts │ │ │ ├── typeEvaluator1.test.ts │ │ │ ├── typeEvaluator2.test.ts │ │ │ ├── typeEvaluator3.test.ts │ │ │ ├── typeEvaluator4.test.ts │ │ │ ├── typeEvaluator5.test.ts │ │ │ ├── updateSymbolReference.test.ts │ │ │ └── zipfs.test.ts │ │ └── workspaceMap.ts │ ├── tsconfig.json │ └── typeshed-fallback │ │ ├── LICENSE │ │ ├── README.md │ │ ├── commit.txt │ │ ├── stdlib │ │ ├── VERSIONS │ │ ├── __future__.pyi │ │ ├── __main__.pyi │ │ ├── _ast.pyi │ │ ├── _bisect.pyi │ │ ├── _bootlocale.pyi │ │ ├── _codecs.pyi │ │ ├── _collections_abc.pyi │ │ ├── _compat_pickle.pyi │ │ ├── _compression.pyi │ │ ├── _csv.pyi │ │ ├── _ctypes.pyi │ │ ├── _curses.pyi │ │ ├── _decimal.pyi │ │ ├── _dummy_thread.pyi │ │ ├── _dummy_threading.pyi │ │ ├── _heapq.pyi │ │ ├── _imp.pyi │ │ ├── _json.pyi │ │ ├── _markupbase.pyi │ │ ├── _msi.pyi │ │ ├── _operator.pyi │ │ ├── _osx_support.pyi │ │ ├── _posixsubprocess.pyi │ │ ├── _py_abc.pyi │ │ ├── _pydecimal.pyi │ │ ├── _random.pyi │ │ ├── _sitebuiltins.pyi │ │ ├── _socket.pyi │ │ ├── _stat.pyi │ │ ├── _thread.pyi │ │ ├── _threading_local.pyi │ │ ├── _tkinter.pyi │ │ ├── _tracemalloc.pyi │ │ ├── _typeshed │ │ │ ├── README.md │ │ │ ├── __init__.pyi │ │ │ ├── dbapi.pyi │ │ │ ├── wsgi.pyi │ │ │ └── xml.pyi │ │ ├── _warnings.pyi │ │ ├── _weakref.pyi │ │ ├── _weakrefset.pyi │ │ ├── _winapi.pyi │ │ ├── abc.pyi │ │ ├── aifc.pyi │ │ ├── antigravity.pyi │ │ ├── argparse.pyi │ │ ├── array.pyi │ │ ├── ast.pyi │ │ ├── asynchat.pyi │ │ ├── asyncio │ │ │ ├── __init__.pyi │ │ │ ├── base_events.pyi │ │ │ ├── base_futures.pyi │ │ │ ├── base_subprocess.pyi │ │ │ ├── base_tasks.pyi │ │ │ ├── constants.pyi │ │ │ ├── coroutines.pyi │ │ │ ├── events.pyi │ │ │ ├── exceptions.pyi │ │ │ ├── format_helpers.pyi │ │ │ ├── futures.pyi │ │ │ ├── locks.pyi │ │ │ ├── log.pyi │ │ │ ├── mixins.pyi │ │ │ ├── proactor_events.pyi │ │ │ ├── protocols.pyi │ │ │ ├── queues.pyi │ │ │ ├── runners.pyi │ │ │ ├── selector_events.pyi │ │ │ ├── sslproto.pyi │ │ │ ├── staggered.pyi │ │ │ ├── streams.pyi │ │ │ ├── subprocess.pyi │ │ │ ├── taskgroups.pyi │ │ │ ├── tasks.pyi │ │ │ ├── threads.pyi │ │ │ ├── timeouts.pyi │ │ │ ├── transports.pyi │ │ │ ├── trsock.pyi │ │ │ ├── unix_events.pyi │ │ │ ├── windows_events.pyi │ │ │ └── windows_utils.pyi │ │ ├── asyncore.pyi │ │ ├── atexit.pyi │ │ ├── audioop.pyi │ │ ├── base64.pyi │ │ ├── bdb.pyi │ │ ├── binascii.pyi │ │ ├── binhex.pyi │ │ ├── bisect.pyi │ │ ├── builtins.pyi │ │ ├── bz2.pyi │ │ ├── cProfile.pyi │ │ ├── calendar.pyi │ │ ├── cgi.pyi │ │ ├── cgitb.pyi │ │ ├── chunk.pyi │ │ ├── cmath.pyi │ │ ├── cmd.pyi │ │ ├── code.pyi │ │ ├── codecs.pyi │ │ ├── codeop.pyi │ │ ├── collections │ │ │ ├── __init__.pyi │ │ │ └── abc.pyi │ │ ├── colorsys.pyi │ │ ├── compileall.pyi │ │ ├── concurrent │ │ │ ├── __init__.pyi │ │ │ └── futures │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _base.pyi │ │ │ │ ├── process.pyi │ │ │ │ └── thread.pyi │ │ ├── configparser.pyi │ │ ├── contextlib.pyi │ │ ├── contextvars.pyi │ │ ├── copy.pyi │ │ ├── copyreg.pyi │ │ ├── crypt.pyi │ │ ├── csv.pyi │ │ ├── ctypes │ │ │ ├── __init__.pyi │ │ │ ├── util.pyi │ │ │ └── wintypes.pyi │ │ ├── curses │ │ │ ├── __init__.pyi │ │ │ ├── ascii.pyi │ │ │ ├── has_key.pyi │ │ │ ├── panel.pyi │ │ │ └── textpad.pyi │ │ ├── cython │ │ │ ├── __init__.pxd │ │ │ ├── cimports │ │ │ │ ├── __init__.pyi │ │ │ │ └── libc │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── math.pyi │ │ │ ├── operator.pxd │ │ │ ├── operator.pyi │ │ │ ├── parallel.pyi │ │ │ └── view.pxd │ │ ├── cython_builtins.pxi │ │ ├── dataclasses.pyi │ │ ├── datetime.pyi │ │ ├── dbm │ │ │ ├── __init__.pyi │ │ │ ├── dumb.pyi │ │ │ ├── gnu.pyi │ │ │ └── ndbm.pyi │ │ ├── decimal.pyi │ │ ├── difflib.pyi │ │ ├── dis.pyi │ │ ├── distutils │ │ │ ├── __init__.pyi │ │ │ ├── archive_util.pyi │ │ │ ├── bcppcompiler.pyi │ │ │ ├── ccompiler.pyi │ │ │ ├── cmd.pyi │ │ │ ├── command │ │ │ │ ├── __init__.pyi │ │ │ │ ├── bdist.pyi │ │ │ │ ├── bdist_dumb.pyi │ │ │ │ ├── bdist_msi.pyi │ │ │ │ ├── bdist_packager.pyi │ │ │ │ ├── bdist_rpm.pyi │ │ │ │ ├── bdist_wininst.pyi │ │ │ │ ├── build.pyi │ │ │ │ ├── build_clib.pyi │ │ │ │ ├── build_ext.pyi │ │ │ │ ├── build_py.pyi │ │ │ │ ├── build_scripts.pyi │ │ │ │ ├── check.pyi │ │ │ │ ├── clean.pyi │ │ │ │ ├── config.pyi │ │ │ │ ├── install.pyi │ │ │ │ ├── install_data.pyi │ │ │ │ ├── install_egg_info.pyi │ │ │ │ ├── install_headers.pyi │ │ │ │ ├── install_lib.pyi │ │ │ │ ├── install_scripts.pyi │ │ │ │ ├── register.pyi │ │ │ │ ├── sdist.pyi │ │ │ │ └── upload.pyi │ │ │ ├── config.pyi │ │ │ ├── core.pyi │ │ │ ├── cygwinccompiler.pyi │ │ │ ├── debug.pyi │ │ │ ├── dep_util.pyi │ │ │ ├── dir_util.pyi │ │ │ ├── dist.pyi │ │ │ ├── errors.pyi │ │ │ ├── extension.pyi │ │ │ ├── fancy_getopt.pyi │ │ │ ├── file_util.pyi │ │ │ ├── filelist.pyi │ │ │ ├── log.pyi │ │ │ ├── msvccompiler.pyi │ │ │ ├── spawn.pyi │ │ │ ├── sysconfig.pyi │ │ │ ├── text_file.pyi │ │ │ ├── unixccompiler.pyi │ │ │ ├── util.pyi │ │ │ └── version.pyi │ │ ├── doctest.pyi │ │ ├── dummy_threading.pyi │ │ ├── email │ │ │ ├── __init__.pyi │ │ │ ├── _header_value_parser.pyi │ │ │ ├── base64mime.pyi │ │ │ ├── charset.pyi │ │ │ ├── contentmanager.pyi │ │ │ ├── encoders.pyi │ │ │ ├── errors.pyi │ │ │ ├── feedparser.pyi │ │ │ ├── generator.pyi │ │ │ ├── header.pyi │ │ │ ├── headerregistry.pyi │ │ │ ├── iterators.pyi │ │ │ ├── message.pyi │ │ │ ├── mime │ │ │ │ ├── __init__.pyi │ │ │ │ ├── application.pyi │ │ │ │ ├── audio.pyi │ │ │ │ ├── base.pyi │ │ │ │ ├── image.pyi │ │ │ │ ├── message.pyi │ │ │ │ ├── multipart.pyi │ │ │ │ ├── nonmultipart.pyi │ │ │ │ └── text.pyi │ │ │ ├── parser.pyi │ │ │ ├── policy.pyi │ │ │ ├── quoprimime.pyi │ │ │ └── utils.pyi │ │ ├── encodings │ │ │ ├── __init__.pyi │ │ │ ├── utf_8.pyi │ │ │ └── utf_8_sig.pyi │ │ ├── ensurepip │ │ │ └── __init__.pyi │ │ ├── enum.pyi │ │ ├── errno.pyi │ │ ├── faulthandler.pyi │ │ ├── fcntl.pyi │ │ ├── filecmp.pyi │ │ ├── fileinput.pyi │ │ ├── fnmatch.pyi │ │ ├── formatter.pyi │ │ ├── fractions.pyi │ │ ├── ftplib.pyi │ │ ├── functools.pyi │ │ ├── gc.pyi │ │ ├── genericpath.pyi │ │ ├── getopt.pyi │ │ ├── getpass.pyi │ │ ├── gettext.pyi │ │ ├── glob.pyi │ │ ├── graphlib.pyi │ │ ├── grp.pyi │ │ ├── gzip.pyi │ │ ├── hashlib.pyi │ │ ├── heapq.pyi │ │ ├── hmac.pyi │ │ ├── html │ │ │ ├── __init__.pyi │ │ │ ├── entities.pyi │ │ │ └── parser.pyi │ │ ├── http │ │ │ ├── __init__.pyi │ │ │ ├── client.pyi │ │ │ ├── cookiejar.pyi │ │ │ ├── cookies.pyi │ │ │ └── server.pyi │ │ ├── imaplib.pyi │ │ ├── imghdr.pyi │ │ ├── imp.pyi │ │ ├── importlib │ │ │ ├── __init__.pyi │ │ │ ├── abc.pyi │ │ │ ├── machinery.pyi │ │ │ ├── metadata │ │ │ │ ├── __init__.pyi │ │ │ │ └── _meta.pyi │ │ │ ├── resources.pyi │ │ │ └── util.pyi │ │ ├── inspect.pyi │ │ ├── io.pyi │ │ ├── ipaddress.pyi │ │ ├── itertools.pyi │ │ ├── json │ │ │ ├── __init__.pyi │ │ │ ├── decoder.pyi │ │ │ ├── encoder.pyi │ │ │ └── tool.pyi │ │ ├── keyword.pyi │ │ ├── lib2to3 │ │ │ ├── __init__.pyi │ │ │ ├── pgen2 │ │ │ │ ├── __init__.pyi │ │ │ │ ├── driver.pyi │ │ │ │ ├── grammar.pyi │ │ │ │ ├── literals.pyi │ │ │ │ ├── parse.pyi │ │ │ │ ├── pgen.pyi │ │ │ │ ├── token.pyi │ │ │ │ └── tokenize.pyi │ │ │ ├── pygram.pyi │ │ │ ├── pytree.pyi │ │ │ └── refactor.pyi │ │ ├── linecache.pyi │ │ ├── locale.pyi │ │ ├── logging │ │ │ ├── __init__.pyi │ │ │ ├── config.pyi │ │ │ └── handlers.pyi │ │ ├── lzma.pyi │ │ ├── macpath.pyi │ │ ├── mailbox.pyi │ │ ├── mailcap.pyi │ │ ├── marshal.pyi │ │ ├── math.pyi │ │ ├── mimetypes.pyi │ │ ├── mmap.pyi │ │ ├── modulefinder.pyi │ │ ├── msilib │ │ │ ├── __init__.pyi │ │ │ ├── schema.pyi │ │ │ ├── sequence.pyi │ │ │ └── text.pyi │ │ ├── msvcrt.pyi │ │ ├── multiprocessing │ │ │ ├── __init__.pyi │ │ │ ├── connection.pyi │ │ │ ├── context.pyi │ │ │ ├── dummy │ │ │ │ ├── __init__.pyi │ │ │ │ └── connection.pyi │ │ │ ├── forkserver.pyi │ │ │ ├── heap.pyi │ │ │ ├── managers.pyi │ │ │ ├── pool.pyi │ │ │ ├── popen_fork.pyi │ │ │ ├── popen_forkserver.pyi │ │ │ ├── popen_spawn_posix.pyi │ │ │ ├── popen_spawn_win32.pyi │ │ │ ├── process.pyi │ │ │ ├── queues.pyi │ │ │ ├── reduction.pyi │ │ │ ├── resource_sharer.pyi │ │ │ ├── resource_tracker.pyi │ │ │ ├── shared_memory.pyi │ │ │ ├── sharedctypes.pyi │ │ │ ├── spawn.pyi │ │ │ ├── synchronize.pyi │ │ │ └── util.pyi │ │ ├── netrc.pyi │ │ ├── nis.pyi │ │ ├── nntplib.pyi │ │ ├── ntpath.pyi │ │ ├── nturl2path.pyi │ │ ├── numbers.pyi │ │ ├── opcode.pyi │ │ ├── operator.pyi │ │ ├── optparse.pyi │ │ ├── os │ │ │ ├── __init__.pyi │ │ │ └── path.pyi │ │ ├── ossaudiodev.pyi │ │ ├── parser.pyi │ │ ├── pathlib.pyi │ │ ├── pdb.pyi │ │ ├── pickle.pyi │ │ ├── pickletools.pyi │ │ ├── pipes.pyi │ │ ├── pkgutil.pyi │ │ ├── platform.pyi │ │ ├── plistlib.pyi │ │ ├── poplib.pyi │ │ ├── posix.pyi │ │ ├── posixpath.pyi │ │ ├── pprint.pyi │ │ ├── profile.pyi │ │ ├── pstats.pyi │ │ ├── pty.pyi │ │ ├── pwd.pyi │ │ ├── py_compile.pyi │ │ ├── pyclbr.pyi │ │ ├── pydoc.pyi │ │ ├── pydoc_data │ │ │ ├── __init__.pyi │ │ │ └── topics.pyi │ │ ├── pyexpat │ │ │ ├── __init__.pyi │ │ │ ├── errors.pyi │ │ │ └── model.pyi │ │ ├── queue.pyi │ │ ├── quopri.pyi │ │ ├── random.pyi │ │ ├── re.pyi │ │ ├── readline.pyi │ │ ├── reprlib.pyi │ │ ├── resource.pyi │ │ ├── rlcompleter.pyi │ │ ├── runpy.pyi │ │ ├── sched.pyi │ │ ├── secrets.pyi │ │ ├── select.pyi │ │ ├── selectors.pyi │ │ ├── shelve.pyi │ │ ├── shlex.pyi │ │ ├── shutil.pyi │ │ ├── signal.pyi │ │ ├── site.pyi │ │ ├── smtpd.pyi │ │ ├── smtplib.pyi │ │ ├── sndhdr.pyi │ │ ├── socket.pyi │ │ ├── socketserver.pyi │ │ ├── spwd.pyi │ │ ├── sqlite3 │ │ │ ├── __init__.pyi │ │ │ └── dbapi2.pyi │ │ ├── sre_compile.pyi │ │ ├── sre_constants.pyi │ │ ├── sre_parse.pyi │ │ ├── ssl.pyi │ │ ├── stat.pyi │ │ ├── statistics.pyi │ │ ├── string.pyi │ │ ├── stringprep.pyi │ │ ├── struct.pyi │ │ ├── subprocess.pyi │ │ ├── sunau.pyi │ │ ├── symbol.pyi │ │ ├── symtable.pyi │ │ ├── sys.pyi │ │ ├── sysconfig.pyi │ │ ├── syslog.pyi │ │ ├── tabnanny.pyi │ │ ├── tarfile.pyi │ │ ├── telnetlib.pyi │ │ ├── tempfile.pyi │ │ ├── termios.pyi │ │ ├── textwrap.pyi │ │ ├── this.pyi │ │ ├── threading.pyi │ │ ├── time.pyi │ │ ├── timeit.pyi │ │ ├── tkinter │ │ │ ├── __init__.pyi │ │ │ ├── colorchooser.pyi │ │ │ ├── commondialog.pyi │ │ │ ├── constants.pyi │ │ │ ├── dialog.pyi │ │ │ ├── dnd.pyi │ │ │ ├── filedialog.pyi │ │ │ ├── font.pyi │ │ │ ├── messagebox.pyi │ │ │ ├── scrolledtext.pyi │ │ │ ├── simpledialog.pyi │ │ │ ├── tix.pyi │ │ │ └── ttk.pyi │ │ ├── token.pyi │ │ ├── tokenize.pyi │ │ ├── tomllib.pyi │ │ ├── trace.pyi │ │ ├── traceback.pyi │ │ ├── tracemalloc.pyi │ │ ├── tty.pyi │ │ ├── turtle.pyi │ │ ├── types.pyi │ │ ├── typing.pyi │ │ ├── typing_extensions.pyi │ │ ├── unicodedata.pyi │ │ ├── unittest │ │ │ ├── __init__.pyi │ │ │ ├── _log.pyi │ │ │ ├── async_case.pyi │ │ │ ├── case.pyi │ │ │ ├── loader.pyi │ │ │ ├── main.pyi │ │ │ ├── mock.pyi │ │ │ ├── result.pyi │ │ │ ├── runner.pyi │ │ │ ├── signals.pyi │ │ │ ├── suite.pyi │ │ │ └── util.pyi │ │ ├── urllib │ │ │ ├── __init__.pyi │ │ │ ├── error.pyi │ │ │ ├── parse.pyi │ │ │ ├── request.pyi │ │ │ ├── response.pyi │ │ │ └── robotparser.pyi │ │ ├── uu.pyi │ │ ├── uuid.pyi │ │ ├── venv │ │ │ └── __init__.pyi │ │ ├── warnings.pyi │ │ ├── wave.pyi │ │ ├── weakref.pyi │ │ ├── webbrowser.pyi │ │ ├── winreg.pyi │ │ ├── winsound.pyi │ │ ├── wsgiref │ │ │ ├── __init__.pyi │ │ │ ├── handlers.pyi │ │ │ ├── headers.pyi │ │ │ ├── simple_server.pyi │ │ │ ├── types.pyi │ │ │ ├── util.pyi │ │ │ └── validate.pyi │ │ ├── xdrlib.pyi │ │ ├── xml │ │ │ ├── __init__.pyi │ │ │ ├── dom │ │ │ │ ├── NodeFilter.pyi │ │ │ │ ├── __init__.pyi │ │ │ │ ├── domreg.pyi │ │ │ │ ├── expatbuilder.pyi │ │ │ │ ├── minicompat.pyi │ │ │ │ ├── minidom.pyi │ │ │ │ ├── pulldom.pyi │ │ │ │ └── xmlbuilder.pyi │ │ │ ├── etree │ │ │ │ ├── ElementInclude.pyi │ │ │ │ ├── ElementPath.pyi │ │ │ │ ├── ElementTree.pyi │ │ │ │ ├── __init__.pyi │ │ │ │ └── cElementTree.pyi │ │ │ ├── parsers │ │ │ │ ├── __init__.pyi │ │ │ │ └── expat │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── errors.pyi │ │ │ │ │ └── model.pyi │ │ │ └── sax │ │ │ │ ├── __init__.pyi │ │ │ │ ├── handler.pyi │ │ │ │ ├── saxutils.pyi │ │ │ │ └── xmlreader.pyi │ │ ├── xmlrpc │ │ │ ├── __init__.pyi │ │ │ ├── client.pyi │ │ │ └── server.pyi │ │ ├── xxlimited.pyi │ │ ├── zipapp.pyi │ │ ├── zipfile.pyi │ │ ├── zipimport.pyi │ │ ├── zlib.pyi │ │ └── zoneinfo │ │ │ └── __init__.pyi │ │ └── stubs │ │ ├── DateTimeRange │ │ ├── METADATA.toml │ │ └── datetimerange │ │ │ ├── __init__.pyi │ │ │ └── __version__.pyi │ │ ├── Deprecated │ │ ├── METADATA.toml │ │ └── deprecated │ │ │ ├── __init__.pyi │ │ │ ├── classic.pyi │ │ │ └── sphinx.pyi │ │ ├── Flask-Cors │ │ ├── METADATA.toml │ │ └── flask_cors │ │ │ ├── __init__.pyi │ │ │ ├── core.pyi │ │ │ ├── decorator.pyi │ │ │ ├── extension.pyi │ │ │ └── version.pyi │ │ ├── Flask-SQLAlchemy │ │ ├── METADATA.toml │ │ └── flask_sqlalchemy │ │ │ ├── __init__.pyi │ │ │ ├── model.pyi │ │ │ └── utils.pyi │ │ ├── JACK-Client │ │ ├── METADATA.toml │ │ └── jack │ │ │ └── __init__.pyi │ │ ├── Markdown │ │ ├── METADATA.toml │ │ └── markdown │ │ │ ├── __init__.pyi │ │ │ ├── __meta__.pyi │ │ │ ├── blockparser.pyi │ │ │ ├── blockprocessors.pyi │ │ │ ├── core.pyi │ │ │ ├── extensions │ │ │ ├── __init__.pyi │ │ │ ├── abbr.pyi │ │ │ ├── admonition.pyi │ │ │ ├── attr_list.pyi │ │ │ ├── codehilite.pyi │ │ │ ├── def_list.pyi │ │ │ ├── extra.pyi │ │ │ ├── fenced_code.pyi │ │ │ ├── footnotes.pyi │ │ │ ├── legacy_attrs.pyi │ │ │ ├── legacy_em.pyi │ │ │ ├── md_in_html.pyi │ │ │ ├── meta.pyi │ │ │ ├── nl2br.pyi │ │ │ ├── sane_lists.pyi │ │ │ ├── smarty.pyi │ │ │ ├── tables.pyi │ │ │ ├── toc.pyi │ │ │ └── wikilinks.pyi │ │ │ ├── inlinepatterns.pyi │ │ │ ├── postprocessors.pyi │ │ │ ├── preprocessors.pyi │ │ │ ├── serializers.pyi │ │ │ ├── treeprocessors.pyi │ │ │ └── util.pyi │ │ ├── Pillow │ │ ├── METADATA.toml │ │ └── PIL │ │ │ ├── BdfFontFile.pyi │ │ │ ├── BlpImagePlugin.pyi │ │ │ ├── BmpImagePlugin.pyi │ │ │ ├── BufrStubImagePlugin.pyi │ │ │ ├── ContainerIO.pyi │ │ │ ├── CurImagePlugin.pyi │ │ │ ├── DcxImagePlugin.pyi │ │ │ ├── DdsImagePlugin.pyi │ │ │ ├── EpsImagePlugin.pyi │ │ │ ├── ExifTags.pyi │ │ │ ├── FitsStubImagePlugin.pyi │ │ │ ├── FliImagePlugin.pyi │ │ │ ├── FontFile.pyi │ │ │ ├── FpxImagePlugin.pyi │ │ │ ├── FtexImagePlugin.pyi │ │ │ ├── GbrImagePlugin.pyi │ │ │ ├── GdImageFile.pyi │ │ │ ├── GifImagePlugin.pyi │ │ │ ├── GimpGradientFile.pyi │ │ │ ├── GimpPaletteFile.pyi │ │ │ ├── GribStubImagePlugin.pyi │ │ │ ├── Hdf5StubImagePlugin.pyi │ │ │ ├── IcnsImagePlugin.pyi │ │ │ ├── IcoImagePlugin.pyi │ │ │ ├── ImImagePlugin.pyi │ │ │ ├── Image.pyi │ │ │ ├── ImageChops.pyi │ │ │ ├── ImageCms.pyi │ │ │ ├── ImageColor.pyi │ │ │ ├── ImageDraw.pyi │ │ │ ├── ImageDraw2.pyi │ │ │ ├── ImageEnhance.pyi │ │ │ ├── ImageFile.pyi │ │ │ ├── ImageFilter.pyi │ │ │ ├── ImageFont.pyi │ │ │ ├── ImageGrab.pyi │ │ │ ├── ImageMath.pyi │ │ │ ├── ImageMode.pyi │ │ │ ├── ImageMorph.pyi │ │ │ ├── ImageOps.pyi │ │ │ ├── ImagePalette.pyi │ │ │ ├── ImagePath.pyi │ │ │ ├── ImageQt.pyi │ │ │ ├── ImageSequence.pyi │ │ │ ├── ImageShow.pyi │ │ │ ├── ImageStat.pyi │ │ │ ├── ImageTk.pyi │ │ │ ├── ImageTransform.pyi │ │ │ ├── ImageWin.pyi │ │ │ ├── ImtImagePlugin.pyi │ │ │ ├── IptcImagePlugin.pyi │ │ │ ├── Jpeg2KImagePlugin.pyi │ │ │ ├── JpegImagePlugin.pyi │ │ │ ├── JpegPresets.pyi │ │ │ ├── McIdasImagePlugin.pyi │ │ │ ├── MicImagePlugin.pyi │ │ │ ├── MpegImagePlugin.pyi │ │ │ ├── MpoImagePlugin.pyi │ │ │ ├── MspImagePlugin.pyi │ │ │ ├── PSDraw.pyi │ │ │ ├── PaletteFile.pyi │ │ │ ├── PalmImagePlugin.pyi │ │ │ ├── PcdImagePlugin.pyi │ │ │ ├── PcfFontFile.pyi │ │ │ ├── PcxImagePlugin.pyi │ │ │ ├── PdfImagePlugin.pyi │ │ │ ├── PdfParser.pyi │ │ │ ├── PixarImagePlugin.pyi │ │ │ ├── PngImagePlugin.pyi │ │ │ ├── PpmImagePlugin.pyi │ │ │ ├── PsdImagePlugin.pyi │ │ │ ├── PyAccess.pyi │ │ │ ├── SgiImagePlugin.pyi │ │ │ ├── SpiderImagePlugin.pyi │ │ │ ├── SunImagePlugin.pyi │ │ │ ├── TarIO.pyi │ │ │ ├── TgaImagePlugin.pyi │ │ │ ├── TiffImagePlugin.pyi │ │ │ ├── TiffTags.pyi │ │ │ ├── WalImageFile.pyi │ │ │ ├── WebPImagePlugin.pyi │ │ │ ├── WmfImagePlugin.pyi │ │ │ ├── XVThumbImagePlugin.pyi │ │ │ ├── XbmImagePlugin.pyi │ │ │ ├── XpmImagePlugin.pyi │ │ │ ├── __init__.pyi │ │ │ ├── _binary.pyi │ │ │ ├── _imaging.pyi │ │ │ ├── _tkinter_finder.pyi │ │ │ ├── _util.pyi │ │ │ ├── _version.pyi │ │ │ └── features.pyi │ │ ├── PyAutoGUI │ │ ├── METADATA.toml │ │ └── pyautogui │ │ │ └── __init__.pyi │ │ ├── PyMySQL │ │ ├── METADATA.toml │ │ └── pymysql │ │ │ ├── __init__.pyi │ │ │ ├── charset.pyi │ │ │ ├── connections.pyi │ │ │ ├── constants │ │ │ ├── CLIENT.pyi │ │ │ ├── COMMAND.pyi │ │ │ ├── CR.pyi │ │ │ ├── ER.pyi │ │ │ ├── FIELD_TYPE.pyi │ │ │ ├── FLAG.pyi │ │ │ ├── SERVER_STATUS.pyi │ │ │ └── __init__.pyi │ │ │ ├── converters.pyi │ │ │ ├── cursors.pyi │ │ │ ├── err.pyi │ │ │ ├── times.pyi │ │ │ └── util.pyi │ │ ├── PyYAML │ │ ├── METADATA.toml │ │ └── yaml │ │ │ ├── __init__.pyi │ │ │ ├── _yaml.pyi │ │ │ ├── composer.pyi │ │ │ ├── constructor.pyi │ │ │ ├── cyaml.pyi │ │ │ ├── dumper.pyi │ │ │ ├── emitter.pyi │ │ │ ├── error.pyi │ │ │ ├── events.pyi │ │ │ ├── loader.pyi │ │ │ ├── nodes.pyi │ │ │ ├── parser.pyi │ │ │ ├── reader.pyi │ │ │ ├── representer.pyi │ │ │ ├── resolver.pyi │ │ │ ├── scanner.pyi │ │ │ ├── serializer.pyi │ │ │ └── tokens.pyi │ │ ├── Pygments │ │ ├── METADATA.toml │ │ └── pygments │ │ │ ├── __init__.pyi │ │ │ ├── cmdline.pyi │ │ │ ├── console.pyi │ │ │ ├── filter.pyi │ │ │ ├── filters │ │ │ └── __init__.pyi │ │ │ ├── formatter.pyi │ │ │ ├── formatters │ │ │ ├── __init__.pyi │ │ │ ├── _mapping.pyi │ │ │ ├── bbcode.pyi │ │ │ ├── html.pyi │ │ │ ├── img.pyi │ │ │ ├── irc.pyi │ │ │ ├── latex.pyi │ │ │ ├── other.pyi │ │ │ ├── pangomarkup.pyi │ │ │ ├── rtf.pyi │ │ │ ├── svg.pyi │ │ │ ├── terminal.pyi │ │ │ └── terminal256.pyi │ │ │ ├── lexer.pyi │ │ │ ├── lexers │ │ │ └── __init__.pyi │ │ │ ├── modeline.pyi │ │ │ ├── plugin.pyi │ │ │ ├── regexopt.pyi │ │ │ ├── scanner.pyi │ │ │ ├── sphinxext.pyi │ │ │ ├── style.pyi │ │ │ ├── styles │ │ │ └── __init__.pyi │ │ │ ├── token.pyi │ │ │ ├── unistring.pyi │ │ │ └── util.pyi │ │ ├── SQLAlchemy │ │ ├── METADATA.toml │ │ └── sqlalchemy │ │ │ ├── __init__.pyi │ │ │ ├── cimmutabledict.pyi │ │ │ ├── connectors │ │ │ ├── __init__.pyi │ │ │ ├── mxodbc.pyi │ │ │ └── pyodbc.pyi │ │ │ ├── cresultproxy.pyi │ │ │ ├── databases │ │ │ └── __init__.pyi │ │ │ ├── dialects │ │ │ ├── __init__.pyi │ │ │ ├── firebird │ │ │ │ ├── __init__.pyi │ │ │ │ ├── base.pyi │ │ │ │ ├── fdb.pyi │ │ │ │ └── kinterbasdb.pyi │ │ │ ├── mssql │ │ │ │ ├── __init__.pyi │ │ │ │ ├── base.pyi │ │ │ │ ├── information_schema.pyi │ │ │ │ ├── json.pyi │ │ │ │ ├── mxodbc.pyi │ │ │ │ ├── provision.pyi │ │ │ │ ├── pymssql.pyi │ │ │ │ └── pyodbc.pyi │ │ │ ├── mysql │ │ │ │ ├── __init__.pyi │ │ │ │ ├── aiomysql.pyi │ │ │ │ ├── asyncmy.pyi │ │ │ │ ├── base.pyi │ │ │ │ ├── cymysql.pyi │ │ │ │ ├── dml.pyi │ │ │ │ ├── enumerated.pyi │ │ │ │ ├── expression.pyi │ │ │ │ ├── json.pyi │ │ │ │ ├── mariadb.pyi │ │ │ │ ├── mariadbconnector.pyi │ │ │ │ ├── mysqlconnector.pyi │ │ │ │ ├── mysqldb.pyi │ │ │ │ ├── oursql.pyi │ │ │ │ ├── provision.pyi │ │ │ │ ├── pymysql.pyi │ │ │ │ ├── pyodbc.pyi │ │ │ │ ├── reflection.pyi │ │ │ │ ├── reserved_words.pyi │ │ │ │ └── types.pyi │ │ │ ├── oracle │ │ │ │ ├── __init__.pyi │ │ │ │ ├── base.pyi │ │ │ │ ├── cx_oracle.pyi │ │ │ │ └── provision.pyi │ │ │ ├── postgresql │ │ │ │ ├── __init__.pyi │ │ │ │ ├── array.pyi │ │ │ │ ├── asyncpg.pyi │ │ │ │ ├── base.pyi │ │ │ │ ├── dml.pyi │ │ │ │ ├── ext.pyi │ │ │ │ ├── hstore.pyi │ │ │ │ ├── json.pyi │ │ │ │ ├── pg8000.pyi │ │ │ │ ├── provision.pyi │ │ │ │ ├── psycopg2.pyi │ │ │ │ ├── psycopg2cffi.pyi │ │ │ │ ├── pygresql.pyi │ │ │ │ ├── pypostgresql.pyi │ │ │ │ └── ranges.pyi │ │ │ ├── sqlite │ │ │ │ ├── __init__.pyi │ │ │ │ ├── aiosqlite.pyi │ │ │ │ ├── base.pyi │ │ │ │ ├── dml.pyi │ │ │ │ ├── json.pyi │ │ │ │ ├── provision.pyi │ │ │ │ ├── pysqlcipher.pyi │ │ │ │ └── pysqlite.pyi │ │ │ └── sybase │ │ │ │ ├── __init__.pyi │ │ │ │ ├── base.pyi │ │ │ │ ├── mxodbc.pyi │ │ │ │ ├── pyodbc.pyi │ │ │ │ └── pysybase.pyi │ │ │ ├── engine │ │ │ ├── __init__.pyi │ │ │ ├── base.pyi │ │ │ ├── characteristics.pyi │ │ │ ├── create.pyi │ │ │ ├── cursor.pyi │ │ │ ├── default.pyi │ │ │ ├── events.pyi │ │ │ ├── interfaces.pyi │ │ │ ├── mock.pyi │ │ │ ├── reflection.pyi │ │ │ ├── result.pyi │ │ │ ├── row.pyi │ │ │ ├── strategies.pyi │ │ │ ├── url.pyi │ │ │ └── util.pyi │ │ │ ├── event │ │ │ ├── __init__.pyi │ │ │ ├── api.pyi │ │ │ ├── attr.pyi │ │ │ ├── base.pyi │ │ │ ├── legacy.pyi │ │ │ └── registry.pyi │ │ │ ├── events.pyi │ │ │ ├── exc.pyi │ │ │ ├── ext │ │ │ ├── __init__.pyi │ │ │ ├── associationproxy.pyi │ │ │ ├── asyncio │ │ │ │ ├── __init__.pyi │ │ │ │ ├── base.pyi │ │ │ │ ├── engine.pyi │ │ │ │ ├── events.pyi │ │ │ │ ├── exc.pyi │ │ │ │ ├── result.pyi │ │ │ │ ├── scoping.pyi │ │ │ │ └── session.pyi │ │ │ ├── automap.pyi │ │ │ ├── baked.pyi │ │ │ ├── compiler.pyi │ │ │ ├── declarative │ │ │ │ ├── __init__.pyi │ │ │ │ └── extensions.pyi │ │ │ ├── horizontal_shard.pyi │ │ │ ├── hybrid.pyi │ │ │ ├── indexable.pyi │ │ │ ├── instrumentation.pyi │ │ │ ├── mutable.pyi │ │ │ ├── mypy │ │ │ │ ├── __init__.pyi │ │ │ │ ├── apply.pyi │ │ │ │ ├── decl_class.pyi │ │ │ │ ├── infer.pyi │ │ │ │ ├── names.pyi │ │ │ │ ├── plugin.pyi │ │ │ │ └── util.pyi │ │ │ ├── orderinglist.pyi │ │ │ └── serializer.pyi │ │ │ ├── future │ │ │ ├── __init__.pyi │ │ │ ├── engine.pyi │ │ │ └── orm │ │ │ │ └── __init__.pyi │ │ │ ├── inspection.pyi │ │ │ ├── log.pyi │ │ │ ├── orm │ │ │ ├── __init__.pyi │ │ │ ├── attributes.pyi │ │ │ ├── base.pyi │ │ │ ├── clsregistry.pyi │ │ │ ├── collections.pyi │ │ │ ├── context.pyi │ │ │ ├── decl_api.pyi │ │ │ ├── decl_base.pyi │ │ │ ├── dependency.pyi │ │ │ ├── descriptor_props.pyi │ │ │ ├── dynamic.pyi │ │ │ ├── evaluator.pyi │ │ │ ├── events.pyi │ │ │ ├── exc.pyi │ │ │ ├── identity.pyi │ │ │ ├── instrumentation.pyi │ │ │ ├── interfaces.pyi │ │ │ ├── loading.pyi │ │ │ ├── mapper.pyi │ │ │ ├── path_registry.pyi │ │ │ ├── persistence.pyi │ │ │ ├── properties.pyi │ │ │ ├── query.pyi │ │ │ ├── relationships.pyi │ │ │ ├── scoping.pyi │ │ │ ├── session.pyi │ │ │ ├── state.pyi │ │ │ ├── strategies.pyi │ │ │ ├── strategy_options.pyi │ │ │ ├── sync.pyi │ │ │ ├── unitofwork.pyi │ │ │ └── util.pyi │ │ │ ├── pool │ │ │ ├── __init__.pyi │ │ │ ├── base.pyi │ │ │ ├── dbapi_proxy.pyi │ │ │ ├── events.pyi │ │ │ └── impl.pyi │ │ │ ├── processors.pyi │ │ │ ├── schema.pyi │ │ │ ├── sql │ │ │ ├── __init__.pyi │ │ │ ├── annotation.pyi │ │ │ ├── base.pyi │ │ │ ├── coercions.pyi │ │ │ ├── compiler.pyi │ │ │ ├── crud.pyi │ │ │ ├── ddl.pyi │ │ │ ├── default_comparator.pyi │ │ │ ├── dml.pyi │ │ │ ├── elements.pyi │ │ │ ├── events.pyi │ │ │ ├── expression.pyi │ │ │ ├── functions.pyi │ │ │ ├── lambdas.pyi │ │ │ ├── naming.pyi │ │ │ ├── operators.pyi │ │ │ ├── roles.pyi │ │ │ ├── schema.pyi │ │ │ ├── selectable.pyi │ │ │ ├── sqltypes.pyi │ │ │ ├── traversals.pyi │ │ │ ├── type_api.pyi │ │ │ ├── util.pyi │ │ │ └── visitors.pyi │ │ │ ├── testing │ │ │ ├── __init__.pyi │ │ │ ├── assertions.pyi │ │ │ ├── assertsql.pyi │ │ │ ├── asyncio.pyi │ │ │ ├── config.pyi │ │ │ ├── engines.pyi │ │ │ ├── entities.pyi │ │ │ ├── exclusions.pyi │ │ │ ├── fixtures.pyi │ │ │ ├── mock.pyi │ │ │ ├── pickleable.pyi │ │ │ ├── plugin │ │ │ │ ├── __init__.pyi │ │ │ │ ├── bootstrap.pyi │ │ │ │ ├── plugin_base.pyi │ │ │ │ ├── pytestplugin.pyi │ │ │ │ └── reinvent_fixtures_py2k.pyi │ │ │ ├── profiling.pyi │ │ │ ├── provision.pyi │ │ │ ├── requirements.pyi │ │ │ ├── schema.pyi │ │ │ ├── util.pyi │ │ │ └── warnings.pyi │ │ │ ├── types.pyi │ │ │ └── util │ │ │ ├── __init__.pyi │ │ │ ├── _collections.pyi │ │ │ ├── _compat_py3k.pyi │ │ │ ├── _concurrency_py3k.pyi │ │ │ ├── _preloaded.pyi │ │ │ ├── compat.pyi │ │ │ ├── concurrency.pyi │ │ │ ├── deprecations.pyi │ │ │ ├── langhelpers.pyi │ │ │ ├── queue.pyi │ │ │ └── topological.pyi │ │ ├── Send2Trash │ │ ├── METADATA.toml │ │ └── send2trash │ │ │ ├── __init__.pyi │ │ │ ├── compat.pyi │ │ │ ├── exceptions.pyi │ │ │ └── util.pyi │ │ ├── aiofiles │ │ ├── METADATA.toml │ │ └── aiofiles │ │ │ ├── __init__.pyi │ │ │ ├── base.pyi │ │ │ ├── os.pyi │ │ │ ├── ospath.pyi │ │ │ ├── tempfile │ │ │ ├── __init__.pyi │ │ │ └── temptypes.pyi │ │ │ └── threadpool │ │ │ ├── __init__.pyi │ │ │ ├── binary.pyi │ │ │ ├── text.pyi │ │ │ └── utils.pyi │ │ ├── annoy │ │ ├── METADATA.toml │ │ └── annoy │ │ │ ├── __init__.pyi │ │ │ └── annoylib.pyi │ │ ├── appdirs │ │ ├── METADATA.toml │ │ └── appdirs.pyi │ │ ├── atomicwrites │ │ ├── METADATA.toml │ │ └── atomicwrites │ │ │ └── __init__.pyi │ │ ├── aws-xray-sdk │ │ ├── METADATA.toml │ │ └── aws_xray_sdk │ │ │ ├── __init__.pyi │ │ │ ├── core │ │ │ ├── __init__.pyi │ │ │ ├── async_context.pyi │ │ │ ├── async_recorder.pyi │ │ │ ├── context.pyi │ │ │ ├── daemon_config.pyi │ │ │ ├── emitters │ │ │ │ ├── __init__.pyi │ │ │ │ └── udp_emitter.pyi │ │ │ ├── exceptions │ │ │ │ ├── __init__.pyi │ │ │ │ └── exceptions.pyi │ │ │ ├── lambda_launcher.pyi │ │ │ ├── models │ │ │ │ ├── __init__.pyi │ │ │ │ ├── default_dynamic_naming.pyi │ │ │ │ ├── dummy_entities.pyi │ │ │ │ ├── entity.pyi │ │ │ │ ├── facade_segment.pyi │ │ │ │ ├── http.pyi │ │ │ │ ├── noop_traceid.pyi │ │ │ │ ├── segment.pyi │ │ │ │ ├── subsegment.pyi │ │ │ │ ├── throwable.pyi │ │ │ │ ├── trace_header.pyi │ │ │ │ └── traceid.pyi │ │ │ ├── patcher.pyi │ │ │ ├── plugins │ │ │ │ ├── __init__.pyi │ │ │ │ ├── ec2_plugin.pyi │ │ │ │ ├── ecs_plugin.pyi │ │ │ │ ├── elasticbeanstalk_plugin.pyi │ │ │ │ └── utils.pyi │ │ │ ├── recorder.pyi │ │ │ ├── sampling │ │ │ │ ├── __init__.pyi │ │ │ │ ├── connector.pyi │ │ │ │ ├── local │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── reservoir.pyi │ │ │ │ │ ├── sampler.pyi │ │ │ │ │ └── sampling_rule.pyi │ │ │ │ ├── reservoir.pyi │ │ │ │ ├── rule_cache.pyi │ │ │ │ ├── rule_poller.pyi │ │ │ │ ├── sampler.pyi │ │ │ │ ├── sampling_rule.pyi │ │ │ │ └── target_poller.pyi │ │ │ ├── streaming │ │ │ │ ├── __init__.pyi │ │ │ │ └── default_streaming.pyi │ │ │ └── utils │ │ │ │ ├── __init__.pyi │ │ │ │ ├── atomic_counter.pyi │ │ │ │ ├── compat.pyi │ │ │ │ ├── conversion.pyi │ │ │ │ ├── search_pattern.pyi │ │ │ │ └── stacktrace.pyi │ │ │ ├── sdk_config.pyi │ │ │ └── version.pyi │ │ ├── babel │ │ ├── METADATA.toml │ │ └── babel │ │ │ ├── __init__.pyi │ │ │ ├── core.pyi │ │ │ ├── dates.pyi │ │ │ ├── languages.pyi │ │ │ ├── lists.pyi │ │ │ ├── localedata.pyi │ │ │ ├── localtime │ │ │ ├── __init__.pyi │ │ │ ├── _unix.pyi │ │ │ └── _win32.pyi │ │ │ ├── messages │ │ │ ├── __init__.pyi │ │ │ ├── catalog.pyi │ │ │ ├── checkers.pyi │ │ │ ├── extract.pyi │ │ │ ├── frontend.pyi │ │ │ ├── jslexer.pyi │ │ │ ├── mofile.pyi │ │ │ ├── plurals.pyi │ │ │ └── pofile.pyi │ │ │ ├── numbers.pyi │ │ │ ├── plural.pyi │ │ │ ├── support.pyi │ │ │ ├── units.pyi │ │ │ └── util.pyi │ │ ├── backports.ssl_match_hostname │ │ ├── METADATA.toml │ │ └── backports │ │ │ ├── __init__.pyi │ │ │ └── ssl_match_hostname │ │ │ └── __init__.pyi │ │ ├── beautifulsoup4 │ │ ├── METADATA.toml │ │ └── bs4 │ │ │ ├── __init__.pyi │ │ │ ├── builder │ │ │ ├── __init__.pyi │ │ │ ├── _html5lib.pyi │ │ │ ├── _htmlparser.pyi │ │ │ └── _lxml.pyi │ │ │ ├── dammit.pyi │ │ │ ├── diagnose.pyi │ │ │ ├── element.pyi │ │ │ └── formatter.pyi │ │ ├── bleach │ │ ├── METADATA.toml │ │ └── bleach │ │ │ ├── __init__.pyi │ │ │ ├── callbacks.pyi │ │ │ ├── css_sanitizer.pyi │ │ │ ├── html5lib_shim.pyi │ │ │ ├── linkifier.pyi │ │ │ └── sanitizer.pyi │ │ ├── boto │ │ ├── METADATA.toml │ │ └── boto │ │ │ ├── __init__.pyi │ │ │ ├── auth.pyi │ │ │ ├── auth_handler.pyi │ │ │ ├── compat.pyi │ │ │ ├── connection.pyi │ │ │ ├── ec2 │ │ │ └── __init__.pyi │ │ │ ├── elb │ │ │ └── __init__.pyi │ │ │ ├── exception.pyi │ │ │ ├── kms │ │ │ ├── __init__.pyi │ │ │ ├── exceptions.pyi │ │ │ └── layer1.pyi │ │ │ ├── plugin.pyi │ │ │ ├── regioninfo.pyi │ │ │ ├── s3 │ │ │ ├── __init__.pyi │ │ │ ├── acl.pyi │ │ │ ├── bucket.pyi │ │ │ ├── bucketlistresultset.pyi │ │ │ ├── bucketlogging.pyi │ │ │ ├── connection.pyi │ │ │ ├── cors.pyi │ │ │ ├── deletemarker.pyi │ │ │ ├── key.pyi │ │ │ ├── keyfile.pyi │ │ │ ├── lifecycle.pyi │ │ │ ├── multidelete.pyi │ │ │ ├── multipart.pyi │ │ │ ├── prefix.pyi │ │ │ ├── tagging.pyi │ │ │ ├── user.pyi │ │ │ └── website.pyi │ │ │ └── utils.pyi │ │ ├── braintree │ │ ├── METADATA.toml │ │ └── braintree │ │ │ ├── __init__.pyi │ │ │ ├── account_updater_daily_report.pyi │ │ │ ├── ach_mandate.pyi │ │ │ ├── add_on.pyi │ │ │ ├── add_on_gateway.pyi │ │ │ ├── address.pyi │ │ │ ├── address_gateway.pyi │ │ │ ├── amex_express_checkout_card.pyi │ │ │ ├── android_pay_card.pyi │ │ │ ├── apple_pay_card.pyi │ │ │ ├── apple_pay_gateway.pyi │ │ │ ├── apple_pay_options.pyi │ │ │ ├── attribute_getter.pyi │ │ │ ├── authorization_adjustment.pyi │ │ │ ├── bin_data.pyi │ │ │ ├── braintree_gateway.pyi │ │ │ ├── client_token.pyi │ │ │ ├── client_token_gateway.pyi │ │ │ ├── configuration.pyi │ │ │ ├── connected_merchant_paypal_status_changed.pyi │ │ │ ├── connected_merchant_status_transitioned.pyi │ │ │ ├── credentials_parser.pyi │ │ │ ├── credit_card.pyi │ │ │ ├── credit_card_gateway.pyi │ │ │ ├── credit_card_verification.pyi │ │ │ ├── credit_card_verification_gateway.pyi │ │ │ ├── credit_card_verification_search.pyi │ │ │ ├── customer.pyi │ │ │ ├── customer_gateway.pyi │ │ │ ├── customer_search.pyi │ │ │ ├── descriptor.pyi │ │ │ ├── disbursement.pyi │ │ │ ├── disbursement_detail.pyi │ │ │ ├── discount.pyi │ │ │ ├── discount_gateway.pyi │ │ │ ├── dispute.pyi │ │ │ ├── dispute_details │ │ │ ├── __init__.pyi │ │ │ ├── evidence.pyi │ │ │ ├── paypal_message.pyi │ │ │ └── status_history.pyi │ │ │ ├── dispute_gateway.pyi │ │ │ ├── dispute_search.pyi │ │ │ ├── document_upload.pyi │ │ │ ├── document_upload_gateway.pyi │ │ │ ├── environment.pyi │ │ │ ├── error_codes.pyi │ │ │ ├── error_result.pyi │ │ │ ├── errors.pyi │ │ │ ├── europe_bank_account.pyi │ │ │ ├── exceptions │ │ │ ├── __init__.pyi │ │ │ ├── authentication_error.pyi │ │ │ ├── authorization_error.pyi │ │ │ ├── braintree_error.pyi │ │ │ ├── configuration_error.pyi │ │ │ ├── gateway_timeout_error.pyi │ │ │ ├── http │ │ │ │ ├── __init__.pyi │ │ │ │ ├── connection_error.pyi │ │ │ │ ├── invalid_response_error.pyi │ │ │ │ └── timeout_error.pyi │ │ │ ├── invalid_challenge_error.pyi │ │ │ ├── invalid_signature_error.pyi │ │ │ ├── not_found_error.pyi │ │ │ ├── request_timeout_error.pyi │ │ │ ├── server_error.pyi │ │ │ ├── service_unavailable_error.pyi │ │ │ ├── too_many_requests_error.pyi │ │ │ ├── unexpected_error.pyi │ │ │ └── upgrade_required_error.pyi │ │ │ ├── facilitated_details.pyi │ │ │ ├── facilitator_details.pyi │ │ │ ├── granted_payment_instrument_update.pyi │ │ │ ├── iban_bank_account.pyi │ │ │ ├── ids_search.pyi │ │ │ ├── local_payment.pyi │ │ │ ├── local_payment_completed.pyi │ │ │ ├── local_payment_reversed.pyi │ │ │ ├── masterpass_card.pyi │ │ │ ├── merchant.pyi │ │ │ ├── merchant_account │ │ │ ├── __init__.pyi │ │ │ ├── address_details.pyi │ │ │ ├── business_details.pyi │ │ │ ├── funding_details.pyi │ │ │ ├── individual_details.pyi │ │ │ └── merchant_account.pyi │ │ │ ├── merchant_account_gateway.pyi │ │ │ ├── merchant_gateway.pyi │ │ │ ├── modification.pyi │ │ │ ├── oauth_access_revocation.pyi │ │ │ ├── oauth_credentials.pyi │ │ │ ├── oauth_gateway.pyi │ │ │ ├── paginated_collection.pyi │ │ │ ├── paginated_result.pyi │ │ │ ├── partner_merchant.pyi │ │ │ ├── payment_instrument_type.pyi │ │ │ ├── payment_method.pyi │ │ │ ├── payment_method_gateway.pyi │ │ │ ├── payment_method_nonce.pyi │ │ │ ├── payment_method_nonce_gateway.pyi │ │ │ ├── payment_method_parser.pyi │ │ │ ├── paypal_account.pyi │ │ │ ├── paypal_account_gateway.pyi │ │ │ ├── paypal_here.pyi │ │ │ ├── plan.pyi │ │ │ ├── plan_gateway.pyi │ │ │ ├── processor_response_types.pyi │ │ │ ├── resource.pyi │ │ │ ├── resource_collection.pyi │ │ │ ├── revoked_payment_method_metadata.pyi │ │ │ ├── risk_data.pyi │ │ │ ├── samsung_pay_card.pyi │ │ │ ├── search.pyi │ │ │ ├── settlement_batch_summary.pyi │ │ │ ├── settlement_batch_summary_gateway.pyi │ │ │ ├── signature_service.pyi │ │ │ ├── status_event.pyi │ │ │ ├── subscription.pyi │ │ │ ├── subscription_details.pyi │ │ │ ├── subscription_gateway.pyi │ │ │ ├── subscription_search.pyi │ │ │ ├── subscription_status_event.pyi │ │ │ ├── successful_result.pyi │ │ │ ├── testing_gateway.pyi │ │ │ ├── three_d_secure_info.pyi │ │ │ ├── transaction.pyi │ │ │ ├── transaction_amounts.pyi │ │ │ ├── transaction_details.pyi │ │ │ ├── transaction_gateway.pyi │ │ │ ├── transaction_line_item.pyi │ │ │ ├── transaction_line_item_gateway.pyi │ │ │ ├── transaction_search.pyi │ │ │ ├── unknown_payment_method.pyi │ │ │ ├── us_bank_account.pyi │ │ │ ├── us_bank_account_gateway.pyi │ │ │ ├── us_bank_account_verification.pyi │ │ │ ├── us_bank_account_verification_gateway.pyi │ │ │ ├── us_bank_account_verification_search.pyi │ │ │ ├── util │ │ │ ├── __init__.pyi │ │ │ ├── constants.pyi │ │ │ ├── crypto.pyi │ │ │ ├── datetime_parser.pyi │ │ │ ├── generator.pyi │ │ │ ├── graphql_client.pyi │ │ │ ├── http.pyi │ │ │ ├── parser.pyi │ │ │ └── xml_util.pyi │ │ │ ├── validation_error.pyi │ │ │ ├── validation_error_collection.pyi │ │ │ ├── venmo_account.pyi │ │ │ ├── version.pyi │ │ │ ├── visa_checkout_card.pyi │ │ │ ├── webhook_notification.pyi │ │ │ ├── webhook_notification_gateway.pyi │ │ │ ├── webhook_testing.pyi │ │ │ └── webhook_testing_gateway.pyi │ │ ├── cachetools │ │ ├── METADATA.toml │ │ └── cachetools │ │ │ ├── __init__.pyi │ │ │ ├── func.pyi │ │ │ └── keys.pyi │ │ ├── caldav │ │ ├── METADATA.toml │ │ └── caldav │ │ │ ├── __init__.pyi │ │ │ ├── davclient.pyi │ │ │ ├── elements │ │ │ ├── __init__.pyi │ │ │ ├── base.pyi │ │ │ ├── cdav.pyi │ │ │ ├── dav.pyi │ │ │ └── ical.pyi │ │ │ ├── lib │ │ │ ├── __init__.pyi │ │ │ ├── error.pyi │ │ │ ├── namespace.pyi │ │ │ ├── url.pyi │ │ │ └── vcal.pyi │ │ │ └── objects.pyi │ │ ├── certifi │ │ ├── METADATA.toml │ │ └── certifi.pyi │ │ ├── chardet │ │ ├── METADATA.toml │ │ └── chardet │ │ │ ├── __init__.pyi │ │ │ ├── enums.pyi │ │ │ ├── langbulgarianmodel.pyi │ │ │ ├── langcyrillicmodel.pyi │ │ │ ├── langgreekmodel.pyi │ │ │ ├── langhebrewmodel.pyi │ │ │ ├── langhungarianmodel.pyi │ │ │ ├── langthaimodel.pyi │ │ │ ├── langturkishmodel.pyi │ │ │ ├── universaldetector.pyi │ │ │ └── version.pyi │ │ ├── chevron │ │ ├── METADATA.toml │ │ └── chevron │ │ │ ├── __init__.pyi │ │ │ ├── main.pyi │ │ │ ├── metadata.pyi │ │ │ ├── renderer.pyi │ │ │ └── tokenizer.pyi │ │ ├── click-spinner │ │ ├── METADATA.toml │ │ └── click_spinner │ │ │ ├── __init__.pyi │ │ │ └── _version.pyi │ │ ├── colorama │ │ ├── METADATA.toml │ │ └── colorama │ │ │ ├── __init__.pyi │ │ │ ├── ansi.pyi │ │ │ ├── ansitowin32.pyi │ │ │ ├── initialise.pyi │ │ │ ├── win32.pyi │ │ │ └── winterm.pyi │ │ ├── commonmark │ │ ├── METADATA.toml │ │ └── commonmark │ │ │ ├── __init__.pyi │ │ │ ├── blocks.pyi │ │ │ ├── cmark.pyi │ │ │ ├── common.pyi │ │ │ ├── dump.pyi │ │ │ ├── entitytrans.pyi │ │ │ ├── inlines.pyi │ │ │ ├── main.pyi │ │ │ ├── node.pyi │ │ │ ├── normalize_reference.pyi │ │ │ └── render │ │ │ ├── __init__.pyi │ │ │ ├── html.pyi │ │ │ ├── renderer.pyi │ │ │ └── rst.pyi │ │ ├── contextvars │ │ ├── METADATA.toml │ │ └── contextvars.pyi │ │ ├── croniter │ │ ├── METADATA.toml │ │ └── croniter │ │ │ ├── __init__.pyi │ │ │ └── croniter.pyi │ │ ├── cryptography │ │ ├── METADATA.toml │ │ └── cryptography │ │ │ ├── __init__.pyi │ │ │ ├── exceptions.pyi │ │ │ ├── fernet.pyi │ │ │ ├── hazmat │ │ │ ├── __init__.pyi │ │ │ ├── backends │ │ │ │ ├── __init__.pyi │ │ │ │ └── interfaces.pyi │ │ │ ├── bindings │ │ │ │ ├── __init__.pyi │ │ │ │ └── openssl │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── binding.pyi │ │ │ └── primitives │ │ │ │ ├── __init__.pyi │ │ │ │ ├── asymmetric │ │ │ │ ├── __init__.pyi │ │ │ │ ├── dh.pyi │ │ │ │ ├── dsa.pyi │ │ │ │ ├── ec.pyi │ │ │ │ ├── ed25519.pyi │ │ │ │ ├── ed448.pyi │ │ │ │ ├── padding.pyi │ │ │ │ ├── rsa.pyi │ │ │ │ ├── utils.pyi │ │ │ │ ├── x25519.pyi │ │ │ │ └── x448.pyi │ │ │ │ ├── ciphers │ │ │ │ ├── __init__.pyi │ │ │ │ ├── aead.pyi │ │ │ │ ├── algorithms.pyi │ │ │ │ └── modes.pyi │ │ │ │ ├── cmac.pyi │ │ │ │ ├── constant_time.pyi │ │ │ │ ├── hashes.pyi │ │ │ │ ├── hmac.pyi │ │ │ │ ├── kdf │ │ │ │ ├── __init__.pyi │ │ │ │ ├── concatkdf.pyi │ │ │ │ ├── hkdf.pyi │ │ │ │ ├── kbkdf.pyi │ │ │ │ ├── pbkdf2.pyi │ │ │ │ ├── scrypt.pyi │ │ │ │ └── x963kdf.pyi │ │ │ │ ├── keywrap.pyi │ │ │ │ ├── padding.pyi │ │ │ │ ├── poly1305.pyi │ │ │ │ ├── serialization │ │ │ │ ├── __init__.pyi │ │ │ │ ├── pkcs12.pyi │ │ │ │ └── pkcs7.pyi │ │ │ │ └── twofactor │ │ │ │ ├── __init__.pyi │ │ │ │ ├── hotp.pyi │ │ │ │ └── totp.pyi │ │ │ └── x509 │ │ │ ├── __init__.pyi │ │ │ ├── extensions.pyi │ │ │ └── oid.pyi │ │ ├── dateparser │ │ ├── METADATA.toml │ │ ├── dateparser │ │ │ ├── __init__.pyi │ │ │ ├── calendars │ │ │ │ ├── __init__.pyi │ │ │ │ ├── hijri.pyi │ │ │ │ ├── hijri_parser.pyi │ │ │ │ ├── jalali.pyi │ │ │ │ └── jalali_parser.pyi │ │ │ ├── conf.pyi │ │ │ ├── data │ │ │ │ ├── __init__.pyi │ │ │ │ └── languages_info.pyi │ │ │ ├── date.pyi │ │ │ ├── date_parser.pyi │ │ │ ├── freshness_date_parser.pyi │ │ │ ├── languages │ │ │ │ ├── __init__.pyi │ │ │ │ ├── dictionary.pyi │ │ │ │ ├── loader.pyi │ │ │ │ ├── locale.pyi │ │ │ │ └── validation.pyi │ │ │ ├── parser.pyi │ │ │ ├── search │ │ │ │ ├── __init__.pyi │ │ │ │ ├── detection.pyi │ │ │ │ ├── search.pyi │ │ │ │ └── text_detection.pyi │ │ │ ├── timezone_parser.pyi │ │ │ ├── timezones.pyi │ │ │ └── utils │ │ │ │ ├── __init__.pyi │ │ │ │ └── strptime.pyi │ │ └── dateparser_data │ │ │ ├── __init__.pyi │ │ │ └── settings.pyi │ │ ├── decorator │ │ ├── METADATA.toml │ │ └── decorator.pyi │ │ ├── dj-database-url │ │ ├── METADATA.toml │ │ └── dj_database_url.pyi │ │ ├── docopt │ │ ├── METADATA.toml │ │ └── docopt.pyi │ │ ├── docutils │ │ ├── METADATA.toml │ │ └── docutils │ │ │ ├── __init__.pyi │ │ │ ├── core.pyi │ │ │ ├── examples.pyi │ │ │ ├── frontend.pyi │ │ │ ├── io.pyi │ │ │ ├── languages │ │ │ └── __init__.pyi │ │ │ ├── nodes.pyi │ │ │ ├── parsers │ │ │ ├── __init__.pyi │ │ │ ├── null.pyi │ │ │ ├── recommonmark_wrapper.pyi │ │ │ └── rst │ │ │ │ ├── __init__.pyi │ │ │ │ ├── directives │ │ │ │ ├── __init__.pyi │ │ │ │ ├── admonitions.pyi │ │ │ │ ├── body.pyi │ │ │ │ ├── html.pyi │ │ │ │ ├── images.pyi │ │ │ │ ├── misc.pyi │ │ │ │ ├── parts.pyi │ │ │ │ ├── references.pyi │ │ │ │ └── tables.pyi │ │ │ │ ├── roles.pyi │ │ │ │ └── states.pyi │ │ │ ├── readers │ │ │ ├── __init__.pyi │ │ │ ├── doctree.pyi │ │ │ ├── pep.pyi │ │ │ └── standalone.pyi │ │ │ ├── statemachine.pyi │ │ │ ├── transforms │ │ │ └── __init__.pyi │ │ │ ├── utils │ │ │ └── __init__.pyi │ │ │ └── writers │ │ │ ├── __init__.pyi │ │ │ ├── docutils_xml.pyi │ │ │ ├── html4css1.pyi │ │ │ ├── html5_polyglot.pyi │ │ │ ├── latex2e.pyi │ │ │ ├── manpage.pyi │ │ │ ├── null.pyi │ │ │ ├── odf_odt.pyi │ │ │ ├── pep_html.pyi │ │ │ ├── pseudoxml.pyi │ │ │ ├── s5_html.pyi │ │ │ └── xetex.pyi │ │ ├── editdistance │ │ ├── METADATA.toml │ │ └── editdistance │ │ │ ├── __init__.pyi │ │ │ └── bycython.pyi │ │ ├── emoji │ │ ├── METADATA.toml │ │ └── emoji │ │ │ ├── __init__.pyi │ │ │ ├── core.pyi │ │ │ └── unicode_codes │ │ │ ├── __init__.pyi │ │ │ └── data_dict.pyi │ │ ├── entrypoints │ │ ├── METADATA.toml │ │ └── entrypoints.pyi │ │ ├── first │ │ ├── METADATA.toml │ │ └── first.pyi │ │ ├── flake8-2020 │ │ ├── METADATA.toml │ │ └── flake8_2020.pyi │ │ ├── flake8-bugbear │ │ ├── METADATA.toml │ │ └── bugbear.pyi │ │ ├── flake8-builtins │ │ ├── METADATA.toml │ │ └── flake8_builtins.pyi │ │ ├── flake8-docstrings │ │ ├── METADATA.toml │ │ └── flake8_docstrings.pyi │ │ ├── flake8-plugin-utils │ │ ├── METADATA.toml │ │ └── flake8_plugin_utils │ │ │ ├── __init__.pyi │ │ │ ├── plugin.pyi │ │ │ └── utils │ │ │ ├── __init__.pyi │ │ │ ├── assertions.pyi │ │ │ ├── constants.pyi │ │ │ └── equiv_nodes.pyi │ │ ├── flake8-rst-docstrings │ │ ├── METADATA.toml │ │ └── flake8_rst_docstrings.pyi │ │ ├── flake8-simplify │ │ ├── METADATA.toml │ │ └── flake8_simplify │ │ │ └── __init__.pyi │ │ ├── flake8-typing-imports │ │ ├── METADATA.toml │ │ └── flake8_typing_imports.pyi │ │ ├── fpdf2 │ │ ├── METADATA.toml │ │ └── fpdf │ │ │ ├── __init__.pyi │ │ │ ├── actions.pyi │ │ │ ├── deprecation.pyi │ │ │ ├── enums.pyi │ │ │ ├── errors.pyi │ │ │ ├── fonts.pyi │ │ │ ├── fpdf.pyi │ │ │ ├── html.pyi │ │ │ ├── image_parsing.pyi │ │ │ ├── outline.pyi │ │ │ ├── recorder.pyi │ │ │ ├── structure_tree.pyi │ │ │ ├── syntax.pyi │ │ │ ├── template.pyi │ │ │ ├── transitions.pyi │ │ │ ├── ttfonts.pyi │ │ │ └── util.pyi │ │ ├── freezegun │ │ ├── METADATA.toml │ │ └── freezegun │ │ │ ├── __init__.pyi │ │ │ └── api.pyi │ │ ├── gdb │ │ ├── METADATA.toml │ │ └── gdb │ │ │ ├── __init__.pyi │ │ │ ├── events.pyi │ │ │ ├── printing.pyi │ │ │ ├── prompt.pyi │ │ │ ├── types.pyi │ │ │ ├── unwinder.pyi │ │ │ └── xmethod.pyi │ │ ├── google-cloud-ndb │ │ ├── METADATA.toml │ │ └── google │ │ │ └── cloud │ │ │ └── ndb │ │ │ ├── __init__.pyi │ │ │ ├── _batch.pyi │ │ │ ├── _cache.pyi │ │ │ ├── _datastore_api.pyi │ │ │ ├── _datastore_query.pyi │ │ │ ├── _eventloop.pyi │ │ │ ├── _options.pyi │ │ │ ├── _transaction.pyi │ │ │ ├── blobstore.pyi │ │ │ ├── client.pyi │ │ │ ├── context.pyi │ │ │ ├── django_middleware.pyi │ │ │ ├── exceptions.pyi │ │ │ ├── global_cache.pyi │ │ │ ├── key.pyi │ │ │ ├── metadata.pyi │ │ │ ├── model.pyi │ │ │ ├── msgprop.pyi │ │ │ ├── polymodel.pyi │ │ │ ├── query.pyi │ │ │ ├── stats.pyi │ │ │ ├── tasklets.pyi │ │ │ └── utils.pyi │ │ ├── hdbcli │ │ ├── METADATA.toml │ │ └── hdbcli │ │ │ ├── __init__.pyi │ │ │ ├── dbapi.pyi │ │ │ └── resultrow.pyi │ │ ├── html5lib │ │ ├── METADATA.toml │ │ └── html5lib │ │ │ ├── __init__.pyi │ │ │ ├── _ihatexml.pyi │ │ │ ├── _inputstream.pyi │ │ │ ├── _tokenizer.pyi │ │ │ ├── _trie │ │ │ ├── __init__.pyi │ │ │ ├── _base.pyi │ │ │ └── py.pyi │ │ │ ├── _utils.pyi │ │ │ ├── constants.pyi │ │ │ ├── filters │ │ │ ├── __init__.pyi │ │ │ ├── alphabeticalattributes.pyi │ │ │ ├── base.pyi │ │ │ ├── inject_meta_charset.pyi │ │ │ ├── lint.pyi │ │ │ ├── optionaltags.pyi │ │ │ ├── sanitizer.pyi │ │ │ └── whitespace.pyi │ │ │ ├── html5parser.pyi │ │ │ ├── serializer.pyi │ │ │ ├── treeadapters │ │ │ ├── __init__.pyi │ │ │ ├── genshi.pyi │ │ │ └── sax.pyi │ │ │ ├── treebuilders │ │ │ ├── __init__.pyi │ │ │ ├── base.pyi │ │ │ ├── dom.pyi │ │ │ ├── etree.pyi │ │ │ └── etree_lxml.pyi │ │ │ └── treewalkers │ │ │ ├── __init__.pyi │ │ │ ├── base.pyi │ │ │ ├── dom.pyi │ │ │ ├── etree.pyi │ │ │ ├── etree_lxml.pyi │ │ │ └── genshi.pyi │ │ ├── httplib2 │ │ ├── METADATA.toml │ │ └── httplib2 │ │ │ ├── __init__.pyi │ │ │ ├── auth.pyi │ │ │ ├── certs.pyi │ │ │ ├── error.pyi │ │ │ ├── iri2uri.pyi │ │ │ └── socks.pyi │ │ ├── humanfriendly │ │ ├── METADATA.toml │ │ └── humanfriendly │ │ │ ├── __init__.pyi │ │ │ ├── case.pyi │ │ │ ├── cli.pyi │ │ │ ├── compat.pyi │ │ │ ├── decorators.pyi │ │ │ ├── deprecation.pyi │ │ │ ├── prompts.pyi │ │ │ ├── sphinx.pyi │ │ │ ├── tables.pyi │ │ │ ├── terminal │ │ │ ├── __init__.pyi │ │ │ ├── html.pyi │ │ │ └── spinners.pyi │ │ │ ├── testing.pyi │ │ │ ├── text.pyi │ │ │ └── usage.pyi │ │ ├── invoke │ │ ├── METADATA.toml │ │ └── invoke │ │ │ ├── __init__.pyi │ │ │ ├── collection.pyi │ │ │ ├── completion │ │ │ ├── __init__.pyi │ │ │ └── complete.pyi │ │ │ ├── config.pyi │ │ │ ├── context.pyi │ │ │ ├── env.pyi │ │ │ ├── exceptions.pyi │ │ │ ├── executor.pyi │ │ │ ├── loader.pyi │ │ │ ├── main.pyi │ │ │ ├── parser │ │ │ ├── __init__.pyi │ │ │ ├── argument.pyi │ │ │ ├── context.pyi │ │ │ └── parser.pyi │ │ │ ├── program.pyi │ │ │ ├── runners.pyi │ │ │ ├── tasks.pyi │ │ │ ├── terminals.pyi │ │ │ ├── util.pyi │ │ │ └── watchers.pyi │ │ ├── jmespath │ │ ├── METADATA.toml │ │ └── jmespath │ │ │ ├── __init__.pyi │ │ │ ├── ast.pyi │ │ │ ├── compat.pyi │ │ │ ├── exceptions.pyi │ │ │ ├── functions.pyi │ │ │ ├── lexer.pyi │ │ │ ├── parser.pyi │ │ │ └── visitor.pyi │ │ ├── jsonschema │ │ ├── METADATA.toml │ │ └── jsonschema │ │ │ ├── __init__.pyi │ │ │ ├── _format.pyi │ │ │ ├── _legacy_validators.pyi │ │ │ ├── _reflect.pyi │ │ │ ├── _types.pyi │ │ │ ├── _utils.pyi │ │ │ ├── _validators.pyi │ │ │ ├── cli.pyi │ │ │ ├── exceptions.pyi │ │ │ ├── protocols.pyi │ │ │ └── validators.pyi │ │ ├── ldap3 │ │ ├── METADATA.toml │ │ └── ldap3 │ │ │ ├── __init__.pyi │ │ │ ├── abstract │ │ │ ├── __init__.pyi │ │ │ ├── attrDef.pyi │ │ │ ├── attribute.pyi │ │ │ ├── cursor.pyi │ │ │ ├── entry.pyi │ │ │ └── objectDef.pyi │ │ │ ├── core │ │ │ ├── __init__.pyi │ │ │ ├── connection.pyi │ │ │ ├── exceptions.pyi │ │ │ ├── pooling.pyi │ │ │ ├── rdns.pyi │ │ │ ├── results.pyi │ │ │ ├── server.pyi │ │ │ ├── timezone.pyi │ │ │ ├── tls.pyi │ │ │ └── usage.pyi │ │ │ ├── extend │ │ │ ├── __init__.pyi │ │ │ ├── microsoft │ │ │ │ ├── __init__.pyi │ │ │ │ ├── addMembersToGroups.pyi │ │ │ │ ├── dirSync.pyi │ │ │ │ ├── modifyPassword.pyi │ │ │ │ ├── persistentSearch.pyi │ │ │ │ ├── removeMembersFromGroups.pyi │ │ │ │ └── unlockAccount.pyi │ │ │ ├── novell │ │ │ │ ├── __init__.pyi │ │ │ │ ├── addMembersToGroups.pyi │ │ │ │ ├── checkGroupsMemberships.pyi │ │ │ │ ├── endTransaction.pyi │ │ │ │ ├── getBindDn.pyi │ │ │ │ ├── listReplicas.pyi │ │ │ │ ├── nmasGetUniversalPassword.pyi │ │ │ │ ├── nmasSetUniversalPassword.pyi │ │ │ │ ├── partition_entry_count.pyi │ │ │ │ ├── removeMembersFromGroups.pyi │ │ │ │ ├── replicaInfo.pyi │ │ │ │ └── startTransaction.pyi │ │ │ ├── operation.pyi │ │ │ └── standard │ │ │ │ ├── PagedSearch.pyi │ │ │ │ ├── PersistentSearch.pyi │ │ │ │ ├── __init__.pyi │ │ │ │ ├── modifyPassword.pyi │ │ │ │ └── whoAmI.pyi │ │ │ ├── operation │ │ │ ├── __init__.pyi │ │ │ ├── abandon.pyi │ │ │ ├── add.pyi │ │ │ ├── bind.pyi │ │ │ ├── compare.pyi │ │ │ ├── delete.pyi │ │ │ ├── extended.pyi │ │ │ ├── modify.pyi │ │ │ ├── modifyDn.pyi │ │ │ ├── search.pyi │ │ │ └── unbind.pyi │ │ │ ├── protocol │ │ │ ├── __init__.pyi │ │ │ ├── controls.pyi │ │ │ ├── convert.pyi │ │ │ ├── formatters │ │ │ │ ├── __init__.pyi │ │ │ │ ├── formatters.pyi │ │ │ │ ├── standard.pyi │ │ │ │ └── validators.pyi │ │ │ ├── microsoft.pyi │ │ │ ├── novell.pyi │ │ │ ├── oid.pyi │ │ │ ├── persistentSearch.pyi │ │ │ ├── rfc2696.pyi │ │ │ ├── rfc2849.pyi │ │ │ ├── rfc3062.pyi │ │ │ ├── rfc4511.pyi │ │ │ ├── rfc4512.pyi │ │ │ ├── rfc4527.pyi │ │ │ ├── sasl │ │ │ │ ├── __init__.pyi │ │ │ │ ├── digestMd5.pyi │ │ │ │ ├── external.pyi │ │ │ │ ├── kerberos.pyi │ │ │ │ ├── plain.pyi │ │ │ │ └── sasl.pyi │ │ │ └── schemas │ │ │ │ ├── __init__.pyi │ │ │ │ ├── ad2012R2.pyi │ │ │ │ ├── ds389.pyi │ │ │ │ ├── edir888.pyi │ │ │ │ ├── edir914.pyi │ │ │ │ └── slapd24.pyi │ │ │ ├── strategy │ │ │ ├── __init__.pyi │ │ │ ├── asyncStream.pyi │ │ │ ├── asynchronous.pyi │ │ │ ├── base.pyi │ │ │ ├── ldifProducer.pyi │ │ │ ├── mockAsync.pyi │ │ │ ├── mockBase.pyi │ │ │ ├── mockSync.pyi │ │ │ ├── restartable.pyi │ │ │ ├── reusable.pyi │ │ │ ├── safeRestartable.pyi │ │ │ ├── safeSync.pyi │ │ │ └── sync.pyi │ │ │ ├── utils │ │ │ ├── __init__.pyi │ │ │ ├── asn1.pyi │ │ │ ├── ciDict.pyi │ │ │ ├── config.pyi │ │ │ ├── conv.pyi │ │ │ ├── dn.pyi │ │ │ ├── hashed.pyi │ │ │ ├── log.pyi │ │ │ ├── ntlm.pyi │ │ │ ├── port_validators.pyi │ │ │ ├── repr.pyi │ │ │ ├── tls_backport.pyi │ │ │ └── uri.pyi │ │ │ └── version.pyi │ │ ├── mock │ │ ├── METADATA.toml │ │ └── mock │ │ │ ├── __init__.pyi │ │ │ └── mock.pyi │ │ ├── mypy-extensions │ │ ├── METADATA.toml │ │ └── mypy_extensions.pyi │ │ ├── mysqlclient │ │ ├── METADATA.toml │ │ └── MySQLdb │ │ │ ├── __init__.pyi │ │ │ ├── _exceptions.pyi │ │ │ ├── _mysql.pyi │ │ │ ├── connections.pyi │ │ │ ├── constants │ │ │ ├── CLIENT.pyi │ │ │ ├── CR.pyi │ │ │ ├── ER.pyi │ │ │ ├── FIELD_TYPE.pyi │ │ │ ├── FLAG.pyi │ │ │ └── __init__.pyi │ │ │ ├── converters.pyi │ │ │ ├── cursors.pyi │ │ │ ├── release.pyi │ │ │ └── times.pyi │ │ ├── oauthlib │ │ ├── METADATA.toml │ │ └── oauthlib │ │ │ ├── __init__.pyi │ │ │ ├── common.pyi │ │ │ ├── oauth1 │ │ │ ├── __init__.pyi │ │ │ └── rfc5849 │ │ │ │ ├── __init__.pyi │ │ │ │ ├── endpoints │ │ │ │ ├── __init__.pyi │ │ │ │ ├── access_token.pyi │ │ │ │ ├── authorization.pyi │ │ │ │ ├── base.pyi │ │ │ │ ├── pre_configured.pyi │ │ │ │ ├── request_token.pyi │ │ │ │ ├── resource.pyi │ │ │ │ └── signature_only.pyi │ │ │ │ ├── errors.pyi │ │ │ │ ├── parameters.pyi │ │ │ │ ├── request_validator.pyi │ │ │ │ ├── signature.pyi │ │ │ │ └── utils.pyi │ │ │ ├── oauth2 │ │ │ ├── __init__.pyi │ │ │ └── rfc6749 │ │ │ │ ├── __init__.pyi │ │ │ │ ├── clients │ │ │ │ ├── __init__.pyi │ │ │ │ ├── backend_application.pyi │ │ │ │ ├── base.pyi │ │ │ │ ├── legacy_application.pyi │ │ │ │ ├── mobile_application.pyi │ │ │ │ ├── service_application.pyi │ │ │ │ └── web_application.pyi │ │ │ │ ├── endpoints │ │ │ │ ├── __init__.pyi │ │ │ │ ├── authorization.pyi │ │ │ │ ├── base.pyi │ │ │ │ ├── introspect.pyi │ │ │ │ ├── metadata.pyi │ │ │ │ ├── pre_configured.pyi │ │ │ │ ├── resource.pyi │ │ │ │ ├── revocation.pyi │ │ │ │ └── token.pyi │ │ │ │ ├── errors.pyi │ │ │ │ ├── grant_types │ │ │ │ ├── __init__.pyi │ │ │ │ ├── authorization_code.pyi │ │ │ │ ├── base.pyi │ │ │ │ ├── client_credentials.pyi │ │ │ │ ├── implicit.pyi │ │ │ │ ├── refresh_token.pyi │ │ │ │ └── resource_owner_password_credentials.pyi │ │ │ │ ├── parameters.pyi │ │ │ │ ├── request_validator.pyi │ │ │ │ ├── tokens.pyi │ │ │ │ └── utils.pyi │ │ │ ├── openid │ │ │ ├── __init__.pyi │ │ │ └── connect │ │ │ │ ├── __init__.pyi │ │ │ │ └── core │ │ │ │ ├── __init__.pyi │ │ │ │ ├── endpoints │ │ │ │ ├── __init__.pyi │ │ │ │ ├── pre_configured.pyi │ │ │ │ └── userinfo.pyi │ │ │ │ ├── exceptions.pyi │ │ │ │ ├── grant_types │ │ │ │ ├── __init__.pyi │ │ │ │ ├── authorization_code.pyi │ │ │ │ ├── base.pyi │ │ │ │ ├── dispatchers.pyi │ │ │ │ ├── hybrid.pyi │ │ │ │ └── implicit.pyi │ │ │ │ ├── request_validator.pyi │ │ │ │ └── tokens.pyi │ │ │ ├── signals.pyi │ │ │ └── uri_validate.pyi │ │ ├── openpyxl │ │ ├── METADATA.toml │ │ └── openpyxl │ │ │ ├── __init__.pyi │ │ │ ├── _constants.pyi │ │ │ ├── cell │ │ │ ├── __init__.pyi │ │ │ ├── _writer.pyi │ │ │ ├── cell.pyi │ │ │ ├── read_only.pyi │ │ │ └── text.pyi │ │ │ ├── chart │ │ │ ├── _3d.pyi │ │ │ ├── __init__.pyi │ │ │ ├── _chart.pyi │ │ │ ├── area_chart.pyi │ │ │ ├── axis.pyi │ │ │ ├── bar_chart.pyi │ │ │ ├── bubble_chart.pyi │ │ │ ├── chartspace.pyi │ │ │ ├── data_source.pyi │ │ │ ├── descriptors.pyi │ │ │ ├── error_bar.pyi │ │ │ ├── label.pyi │ │ │ ├── layout.pyi │ │ │ ├── legend.pyi │ │ │ ├── line_chart.pyi │ │ │ ├── marker.pyi │ │ │ ├── picture.pyi │ │ │ ├── pie_chart.pyi │ │ │ ├── pivot.pyi │ │ │ ├── plotarea.pyi │ │ │ ├── print_settings.pyi │ │ │ ├── radar_chart.pyi │ │ │ ├── reader.pyi │ │ │ ├── reference.pyi │ │ │ ├── scatter_chart.pyi │ │ │ ├── series.pyi │ │ │ ├── series_factory.pyi │ │ │ ├── shapes.pyi │ │ │ ├── stock_chart.pyi │ │ │ ├── surface_chart.pyi │ │ │ ├── text.pyi │ │ │ ├── title.pyi │ │ │ ├── trendline.pyi │ │ │ └── updown_bars.pyi │ │ │ ├── chartsheet │ │ │ ├── __init__.pyi │ │ │ ├── chartsheet.pyi │ │ │ ├── custom.pyi │ │ │ ├── properties.pyi │ │ │ ├── protection.pyi │ │ │ ├── publish.pyi │ │ │ ├── relation.pyi │ │ │ └── views.pyi │ │ │ ├── comments │ │ │ ├── __init__.pyi │ │ │ ├── author.pyi │ │ │ ├── comment_sheet.pyi │ │ │ ├── comments.pyi │ │ │ └── shape_writer.pyi │ │ │ ├── compat │ │ │ ├── __init__.pyi │ │ │ ├── abc.pyi │ │ │ ├── numbers.pyi │ │ │ ├── product.pyi │ │ │ ├── singleton.pyi │ │ │ └── strings.pyi │ │ │ ├── descriptors │ │ │ ├── __init__.pyi │ │ │ ├── base.pyi │ │ │ ├── excel.pyi │ │ │ ├── namespace.pyi │ │ │ ├── nested.pyi │ │ │ ├── sequence.pyi │ │ │ ├── serialisable.pyi │ │ │ └── slots.pyi │ │ │ ├── drawing │ │ │ ├── __init__.pyi │ │ │ ├── colors.pyi │ │ │ ├── connector.pyi │ │ │ ├── drawing.pyi │ │ │ ├── effect.pyi │ │ │ ├── fill.pyi │ │ │ ├── geometry.pyi │ │ │ ├── graphic.pyi │ │ │ ├── image.pyi │ │ │ ├── line.pyi │ │ │ ├── picture.pyi │ │ │ ├── properties.pyi │ │ │ ├── relation.pyi │ │ │ ├── spreadsheet_drawing.pyi │ │ │ ├── text.pyi │ │ │ └── xdr.pyi │ │ │ ├── formatting │ │ │ ├── __init__.pyi │ │ │ ├── formatting.pyi │ │ │ └── rule.pyi │ │ │ ├── formula │ │ │ ├── __init__.pyi │ │ │ ├── tokenizer.pyi │ │ │ └── translate.pyi │ │ │ ├── packaging │ │ │ ├── __init__.pyi │ │ │ ├── core.pyi │ │ │ ├── extended.pyi │ │ │ ├── interface.pyi │ │ │ ├── manifest.pyi │ │ │ ├── relationship.pyi │ │ │ └── workbook.pyi │ │ │ ├── pivot │ │ │ ├── __init__.pyi │ │ │ ├── cache.pyi │ │ │ ├── fields.pyi │ │ │ ├── record.pyi │ │ │ └── table.pyi │ │ │ ├── reader │ │ │ ├── __init__.pyi │ │ │ ├── drawings.pyi │ │ │ ├── excel.pyi │ │ │ ├── strings.pyi │ │ │ └── workbook.pyi │ │ │ ├── styles │ │ │ ├── __init__.pyi │ │ │ ├── alignment.pyi │ │ │ ├── borders.pyi │ │ │ ├── builtins.pyi │ │ │ ├── cell_style.pyi │ │ │ ├── colors.pyi │ │ │ ├── differential.pyi │ │ │ ├── fills.pyi │ │ │ ├── fonts.pyi │ │ │ ├── named_styles.pyi │ │ │ ├── numbers.pyi │ │ │ ├── protection.pyi │ │ │ ├── proxy.pyi │ │ │ ├── styleable.pyi │ │ │ ├── stylesheet.pyi │ │ │ └── table.pyi │ │ │ ├── utils │ │ │ ├── __init__.pyi │ │ │ ├── bound_dictionary.pyi │ │ │ ├── cell.pyi │ │ │ ├── dataframe.pyi │ │ │ ├── datetime.pyi │ │ │ ├── escape.pyi │ │ │ ├── exceptions.pyi │ │ │ ├── formulas.pyi │ │ │ ├── indexed_list.pyi │ │ │ ├── inference.pyi │ │ │ ├── protection.pyi │ │ │ └── units.pyi │ │ │ ├── workbook │ │ │ ├── __init__.pyi │ │ │ ├── _writer.pyi │ │ │ ├── child.pyi │ │ │ ├── defined_name.pyi │ │ │ ├── external_link │ │ │ │ ├── __init__.pyi │ │ │ │ └── external.pyi │ │ │ ├── external_reference.pyi │ │ │ ├── function_group.pyi │ │ │ ├── properties.pyi │ │ │ ├── protection.pyi │ │ │ ├── smart_tags.pyi │ │ │ ├── views.pyi │ │ │ ├── web.pyi │ │ │ └── workbook.pyi │ │ │ ├── worksheet │ │ │ ├── __init__.pyi │ │ │ ├── _read_only.pyi │ │ │ ├── _reader.pyi │ │ │ ├── _write_only.pyi │ │ │ ├── _writer.pyi │ │ │ ├── cell_range.pyi │ │ │ ├── cell_watch.pyi │ │ │ ├── controls.pyi │ │ │ ├── copier.pyi │ │ │ ├── custom.pyi │ │ │ ├── datavalidation.pyi │ │ │ ├── dimensions.pyi │ │ │ ├── drawing.pyi │ │ │ ├── errors.pyi │ │ │ ├── filters.pyi │ │ │ ├── header_footer.pyi │ │ │ ├── hyperlink.pyi │ │ │ ├── merge.pyi │ │ │ ├── ole.pyi │ │ │ ├── page.pyi │ │ │ ├── pagebreak.pyi │ │ │ ├── picture.pyi │ │ │ ├── properties.pyi │ │ │ ├── protection.pyi │ │ │ ├── related.pyi │ │ │ ├── scenario.pyi │ │ │ ├── smart_tag.pyi │ │ │ ├── table.pyi │ │ │ ├── views.pyi │ │ │ └── worksheet.pyi │ │ │ ├── writer │ │ │ ├── __init__.pyi │ │ │ ├── excel.pyi │ │ │ └── theme.pyi │ │ │ └── xml │ │ │ ├── __init__.pyi │ │ │ ├── constants.pyi │ │ │ └── functions.pyi │ │ ├── opentracing │ │ ├── METADATA.toml │ │ └── opentracing │ │ │ ├── __init__.pyi │ │ │ ├── ext │ │ │ ├── __init__.pyi │ │ │ └── tags.pyi │ │ │ ├── harness │ │ │ ├── __init__.pyi │ │ │ ├── api_check.pyi │ │ │ └── scope_check.pyi │ │ │ ├── logs.pyi │ │ │ ├── mocktracer │ │ │ ├── __init__.pyi │ │ │ ├── binary_propagator.pyi │ │ │ ├── context.pyi │ │ │ ├── propagator.pyi │ │ │ ├── span.pyi │ │ │ ├── text_propagator.pyi │ │ │ └── tracer.pyi │ │ │ ├── propagation.pyi │ │ │ ├── scope.pyi │ │ │ ├── scope_manager.pyi │ │ │ ├── scope_managers │ │ │ ├── __init__.pyi │ │ │ ├── asyncio.pyi │ │ │ ├── constants.pyi │ │ │ ├── contextvars.pyi │ │ │ ├── gevent.pyi │ │ │ └── tornado.pyi │ │ │ ├── span.pyi │ │ │ ├── tags.pyi │ │ │ └── tracer.pyi │ │ ├── paramiko │ │ ├── METADATA.toml │ │ └── paramiko │ │ │ ├── __init__.pyi │ │ │ ├── _version.pyi │ │ │ ├── _winapi.pyi │ │ │ ├── agent.pyi │ │ │ ├── auth_handler.pyi │ │ │ ├── ber.pyi │ │ │ ├── buffered_pipe.pyi │ │ │ ├── channel.pyi │ │ │ ├── client.pyi │ │ │ ├── common.pyi │ │ │ ├── compress.pyi │ │ │ ├── config.pyi │ │ │ ├── dsskey.pyi │ │ │ ├── ecdsakey.pyi │ │ │ ├── ed25519key.pyi │ │ │ ├── file.pyi │ │ │ ├── hostkeys.pyi │ │ │ ├── kex_curve25519.pyi │ │ │ ├── kex_ecdh_nist.pyi │ │ │ ├── kex_gex.pyi │ │ │ ├── kex_group1.pyi │ │ │ ├── kex_group14.pyi │ │ │ ├── kex_group16.pyi │ │ │ ├── kex_gss.pyi │ │ │ ├── message.pyi │ │ │ ├── packet.pyi │ │ │ ├── pipe.pyi │ │ │ ├── pkey.pyi │ │ │ ├── primes.pyi │ │ │ ├── proxy.pyi │ │ │ ├── py3compat.pyi │ │ │ ├── rsakey.pyi │ │ │ ├── server.pyi │ │ │ ├── sftp.pyi │ │ │ ├── sftp_attr.pyi │ │ │ ├── sftp_client.pyi │ │ │ ├── sftp_file.pyi │ │ │ ├── sftp_handle.pyi │ │ │ ├── sftp_server.pyi │ │ │ ├── sftp_si.pyi │ │ │ ├── ssh_exception.pyi │ │ │ ├── ssh_gss.pyi │ │ │ ├── transport.pyi │ │ │ ├── util.pyi │ │ │ ├── win_openssh.pyi │ │ │ └── win_pageant.pyi │ │ ├── parsimonious │ │ ├── METADATA.toml │ │ └── parsimonious │ │ │ ├── __init__.pyi │ │ │ ├── exceptions.pyi │ │ │ ├── expressions.pyi │ │ │ ├── grammar.pyi │ │ │ ├── nodes.pyi │ │ │ └── utils.pyi │ │ ├── passlib │ │ ├── METADATA.toml │ │ └── passlib │ │ │ ├── __init__.pyi │ │ │ ├── apache.pyi │ │ │ ├── apps.pyi │ │ │ ├── context.pyi │ │ │ ├── crypto │ │ │ ├── __init__.pyi │ │ │ ├── _blowfish │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _gen_files.pyi │ │ │ │ ├── base.pyi │ │ │ │ └── unrolled.pyi │ │ │ ├── _md4.pyi │ │ │ ├── des.pyi │ │ │ ├── digest.pyi │ │ │ └── scrypt │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _builtin.pyi │ │ │ │ ├── _gen_files.pyi │ │ │ │ └── _salsa.pyi │ │ │ ├── exc.pyi │ │ │ ├── ext │ │ │ ├── __init__.pyi │ │ │ └── django │ │ │ │ ├── __init__.pyi │ │ │ │ ├── models.pyi │ │ │ │ └── utils.pyi │ │ │ ├── handlers │ │ │ ├── __init__.pyi │ │ │ ├── argon2.pyi │ │ │ ├── bcrypt.pyi │ │ │ ├── cisco.pyi │ │ │ ├── des_crypt.pyi │ │ │ ├── digests.pyi │ │ │ ├── django.pyi │ │ │ ├── fshp.pyi │ │ │ ├── ldap_digests.pyi │ │ │ ├── md5_crypt.pyi │ │ │ ├── misc.pyi │ │ │ ├── mssql.pyi │ │ │ ├── mysql.pyi │ │ │ ├── oracle.pyi │ │ │ ├── pbkdf2.pyi │ │ │ ├── phpass.pyi │ │ │ ├── postgres.pyi │ │ │ ├── roundup.pyi │ │ │ ├── scram.pyi │ │ │ ├── scrypt.pyi │ │ │ ├── sha1_crypt.pyi │ │ │ ├── sha2_crypt.pyi │ │ │ ├── sun_md5_crypt.pyi │ │ │ └── windows.pyi │ │ │ ├── hash.pyi │ │ │ ├── hosts.pyi │ │ │ ├── ifc.pyi │ │ │ ├── pwd.pyi │ │ │ ├── registry.pyi │ │ │ ├── totp.pyi │ │ │ ├── utils │ │ │ ├── __init__.pyi │ │ │ ├── binary.pyi │ │ │ ├── compat │ │ │ │ ├── __init__.pyi │ │ │ │ └── _ordered_dict.pyi │ │ │ ├── decor.pyi │ │ │ ├── des.pyi │ │ │ ├── handlers.pyi │ │ │ ├── md4.pyi │ │ │ └── pbkdf2.pyi │ │ │ └── win32.pyi │ │ ├── passpy │ │ ├── METADATA.toml │ │ └── passpy │ │ │ ├── __init__.pyi │ │ │ ├── exceptions.pyi │ │ │ ├── store.pyi │ │ │ └── util.pyi │ │ ├── pep8-naming │ │ ├── METADATA.toml │ │ └── pep8ext_naming.pyi │ │ ├── playsound │ │ ├── METADATA.toml │ │ └── playsound.pyi │ │ ├── polib │ │ ├── METADATA.toml │ │ └── polib.pyi │ │ ├── prettytable │ │ ├── METADATA.toml │ │ └── prettytable │ │ │ ├── __init__.pyi │ │ │ ├── colortable.pyi │ │ │ └── prettytable.pyi │ │ ├── protobuf │ │ ├── METADATA.toml │ │ └── google │ │ │ └── protobuf │ │ │ ├── __init__.pyi │ │ │ ├── any_pb2.pyi │ │ │ ├── api_pb2.pyi │ │ │ ├── compiler │ │ │ ├── __init__.pyi │ │ │ └── plugin_pb2.pyi │ │ │ ├── descriptor.pyi │ │ │ ├── descriptor_pb2.pyi │ │ │ ├── descriptor_pool.pyi │ │ │ ├── duration_pb2.pyi │ │ │ ├── empty_pb2.pyi │ │ │ ├── field_mask_pb2.pyi │ │ │ ├── internal │ │ │ ├── __init__.pyi │ │ │ ├── api_implementation.pyi │ │ │ ├── containers.pyi │ │ │ ├── decoder.pyi │ │ │ ├── encoder.pyi │ │ │ ├── enum_type_wrapper.pyi │ │ │ ├── extension_dict.pyi │ │ │ ├── message_listener.pyi │ │ │ ├── python_message.pyi │ │ │ ├── type_checkers.pyi │ │ │ ├── well_known_types.pyi │ │ │ └── wire_format.pyi │ │ │ ├── json_format.pyi │ │ │ ├── message.pyi │ │ │ ├── message_factory.pyi │ │ │ ├── reflection.pyi │ │ │ ├── service.pyi │ │ │ ├── source_context_pb2.pyi │ │ │ ├── struct_pb2.pyi │ │ │ ├── symbol_database.pyi │ │ │ ├── text_format.pyi │ │ │ ├── timestamp_pb2.pyi │ │ │ ├── type_pb2.pyi │ │ │ ├── util │ │ │ └── __init__.pyi │ │ │ └── wrappers_pb2.pyi │ │ ├── psutil │ │ ├── METADATA.toml │ │ └── psutil │ │ │ ├── __init__.pyi │ │ │ ├── _common.pyi │ │ │ ├── _compat.pyi │ │ │ ├── _psbsd.pyi │ │ │ ├── _pslinux.pyi │ │ │ ├── _psosx.pyi │ │ │ ├── _psposix.pyi │ │ │ ├── _psutil_linux.pyi │ │ │ ├── _psutil_posix.pyi │ │ │ ├── _psutil_windows.pyi │ │ │ └── _pswindows.pyi │ │ ├── psycopg2 │ │ ├── METADATA.toml │ │ └── psycopg2 │ │ │ ├── __init__.pyi │ │ │ ├── _ipaddress.pyi │ │ │ ├── _json.pyi │ │ │ ├── _psycopg.pyi │ │ │ ├── _range.pyi │ │ │ ├── errorcodes.pyi │ │ │ ├── errors.pyi │ │ │ ├── extensions.pyi │ │ │ ├── extras.pyi │ │ │ ├── pool.pyi │ │ │ ├── sql.pyi │ │ │ └── tz.pyi │ │ ├── pyOpenSSL │ │ ├── METADATA.toml │ │ └── OpenSSL │ │ │ ├── SSL.pyi │ │ │ ├── __init__.pyi │ │ │ ├── crypto.pyi │ │ │ ├── rand.pyi │ │ │ └── version.pyi │ │ ├── pyRFC3339 │ │ ├── METADATA.toml │ │ └── pyrfc3339 │ │ │ ├── __init__.pyi │ │ │ ├── generator.pyi │ │ │ ├── parser.pyi │ │ │ └── utils.pyi │ │ ├── pyaudio │ │ ├── METADATA.toml │ │ └── pyaudio.pyi │ │ ├── pycurl │ │ ├── METADATA.toml │ │ └── pycurl.pyi │ │ ├── pyfarmhash │ │ ├── METADATA.toml │ │ └── farmhash.pyi │ │ ├── pyflakes │ │ ├── METADATA.toml │ │ └── pyflakes │ │ │ ├── __init__.pyi │ │ │ ├── api.pyi │ │ │ ├── checker.pyi │ │ │ ├── messages.pyi │ │ │ └── reporter.pyi │ │ ├── pynput │ │ ├── METADATA.toml │ │ └── pynput │ │ │ ├── __init__.pyi │ │ │ ├── _info.pyi │ │ │ ├── _util.pyi │ │ │ ├── keyboard │ │ │ ├── __init__.pyi │ │ │ ├── _base.pyi │ │ │ └── _dummy.pyi │ │ │ └── mouse │ │ │ ├── __init__.pyi │ │ │ ├── _base.pyi │ │ │ └── _dummy.pyi │ │ ├── pysftp │ │ ├── METADATA.toml │ │ └── pysftp │ │ │ ├── __init__.pyi │ │ │ ├── exceptions.pyi │ │ │ └── helpers.pyi │ │ ├── pytest-lazy-fixture │ │ ├── METADATA.toml │ │ └── pytest_lazyfixture.pyi │ │ ├── python-dateutil │ │ ├── METADATA.toml │ │ └── dateutil │ │ │ ├── __init__.pyi │ │ │ ├── _common.pyi │ │ │ ├── easter.pyi │ │ │ ├── parser │ │ │ ├── __init__.pyi │ │ │ └── isoparser.pyi │ │ │ ├── relativedelta.pyi │ │ │ ├── rrule.pyi │ │ │ ├── tz │ │ │ ├── __init__.pyi │ │ │ ├── _common.pyi │ │ │ └── tz.pyi │ │ │ └── utils.pyi │ │ ├── python-gflags │ │ ├── METADATA.toml │ │ └── gflags.pyi │ │ ├── python-jose │ │ ├── METADATA.toml │ │ └── jose │ │ │ ├── __init__.pyi │ │ │ ├── backends │ │ │ ├── __init__.pyi │ │ │ ├── _asn1.pyi │ │ │ ├── base.pyi │ │ │ ├── cryptography_backend.pyi │ │ │ ├── ecdsa_backend.pyi │ │ │ ├── native.pyi │ │ │ └── rsa_backend.pyi │ │ │ ├── constants.pyi │ │ │ ├── exceptions.pyi │ │ │ ├── jwe.pyi │ │ │ ├── jwk.pyi │ │ │ ├── jws.pyi │ │ │ ├── jwt.pyi │ │ │ └── utils.pyi │ │ ├── python-nmap │ │ ├── METADATA.toml │ │ └── nmap │ │ │ ├── __init__.pyi │ │ │ └── nmap.pyi │ │ ├── python-slugify │ │ ├── METADATA.toml │ │ └── slugify │ │ │ ├── __init__.pyi │ │ │ ├── slugify.pyi │ │ │ └── special.pyi │ │ ├── pytz │ │ ├── METADATA.toml │ │ └── pytz │ │ │ ├── __init__.pyi │ │ │ ├── exceptions.pyi │ │ │ ├── lazy.pyi │ │ │ ├── reference.pyi │ │ │ ├── tzfile.pyi │ │ │ └── tzinfo.pyi │ │ ├── pyvmomi │ │ ├── METADATA.toml │ │ └── pyVmomi │ │ │ ├── __init__.pyi │ │ │ ├── vim │ │ │ ├── __init__.pyi │ │ │ ├── event.pyi │ │ │ ├── fault.pyi │ │ │ ├── option.pyi │ │ │ └── view.pyi │ │ │ └── vmodl │ │ │ ├── __init__.pyi │ │ │ ├── fault.pyi │ │ │ └── query.pyi │ │ ├── redis │ │ ├── METADATA.toml │ │ └── redis │ │ │ ├── __init__.pyi │ │ │ ├── asyncio │ │ │ ├── __init__.pyi │ │ │ ├── client.pyi │ │ │ ├── connection.pyi │ │ │ ├── lock.pyi │ │ │ ├── retry.pyi │ │ │ ├── sentinel.pyi │ │ │ └── utils.pyi │ │ │ ├── backoff.pyi │ │ │ ├── client.pyi │ │ │ ├── cluster.pyi │ │ │ ├── commands │ │ │ ├── __init__.pyi │ │ │ ├── bf │ │ │ │ ├── __init__.pyi │ │ │ │ ├── commands.pyi │ │ │ │ └── info.pyi │ │ │ ├── cluster.pyi │ │ │ ├── core.pyi │ │ │ ├── graph │ │ │ │ ├── __init__.pyi │ │ │ │ ├── commands.pyi │ │ │ │ ├── edge.pyi │ │ │ │ ├── exceptions.pyi │ │ │ │ ├── node.pyi │ │ │ │ ├── path.pyi │ │ │ │ └── query_result.pyi │ │ │ ├── helpers.pyi │ │ │ ├── json │ │ │ │ ├── __init__.pyi │ │ │ │ ├── commands.pyi │ │ │ │ ├── decoders.pyi │ │ │ │ └── path.pyi │ │ │ ├── parser.pyi │ │ │ ├── redismodules.pyi │ │ │ ├── search │ │ │ │ ├── __init__.pyi │ │ │ │ ├── aggregation.pyi │ │ │ │ ├── commands.pyi │ │ │ │ ├── query.pyi │ │ │ │ └── result.pyi │ │ │ ├── sentinel.pyi │ │ │ └── timeseries │ │ │ │ ├── __init__.pyi │ │ │ │ ├── commands.pyi │ │ │ │ ├── info.pyi │ │ │ │ └── utils.pyi │ │ │ ├── connection.pyi │ │ │ ├── crc.pyi │ │ │ ├── exceptions.pyi │ │ │ ├── lock.pyi │ │ │ ├── ocsp.pyi │ │ │ ├── retry.pyi │ │ │ ├── sentinel.pyi │ │ │ ├── typing.pyi │ │ │ └── utils.pyi │ │ ├── regex │ │ ├── METADATA.toml │ │ └── regex │ │ │ ├── __init__.pyi │ │ │ ├── _regex.pyi │ │ │ ├── _regex_core.pyi │ │ │ └── regex.pyi │ │ ├── requests │ │ ├── METADATA.toml │ │ └── requests │ │ │ ├── __init__.pyi │ │ │ ├── __version__.pyi │ │ │ ├── adapters.pyi │ │ │ ├── api.pyi │ │ │ ├── auth.pyi │ │ │ ├── compat.pyi │ │ │ ├── cookies.pyi │ │ │ ├── exceptions.pyi │ │ │ ├── help.pyi │ │ │ ├── hooks.pyi │ │ │ ├── models.pyi │ │ │ ├── packages.pyi │ │ │ ├── sessions.pyi │ │ │ ├── status_codes.pyi │ │ │ ├── structures.pyi │ │ │ └── utils.pyi │ │ ├── retry │ │ ├── METADATA.toml │ │ └── retry │ │ │ ├── __init__.pyi │ │ │ └── api.pyi │ │ ├── selenium │ │ ├── METADATA.toml │ │ └── selenium │ │ │ ├── __init__.pyi │ │ │ ├── common │ │ │ ├── __init__.pyi │ │ │ └── exceptions.pyi │ │ │ └── webdriver │ │ │ ├── __init__.pyi │ │ │ ├── android │ │ │ ├── __init__.pyi │ │ │ └── webdriver.pyi │ │ │ ├── blackberry │ │ │ ├── __init__.pyi │ │ │ └── webdriver.pyi │ │ │ ├── chrome │ │ │ ├── __init__.pyi │ │ │ ├── options.pyi │ │ │ ├── remote_connection.pyi │ │ │ ├── service.pyi │ │ │ └── webdriver.pyi │ │ │ ├── common │ │ │ ├── __init__.pyi │ │ │ ├── action_chains.pyi │ │ │ ├── actions │ │ │ │ ├── __init__.pyi │ │ │ │ ├── action_builder.pyi │ │ │ │ ├── input_device.pyi │ │ │ │ ├── interaction.pyi │ │ │ │ ├── key_actions.pyi │ │ │ │ ├── key_input.pyi │ │ │ │ ├── mouse_button.pyi │ │ │ │ ├── pointer_actions.pyi │ │ │ │ └── pointer_input.pyi │ │ │ ├── alert.pyi │ │ │ ├── by.pyi │ │ │ ├── desired_capabilities.pyi │ │ │ ├── html5 │ │ │ │ ├── __init__.pyi │ │ │ │ └── application_cache.pyi │ │ │ ├── keys.pyi │ │ │ ├── proxy.pyi │ │ │ ├── service.pyi │ │ │ ├── touch_actions.pyi │ │ │ └── utils.pyi │ │ │ ├── edge │ │ │ ├── __init__.pyi │ │ │ ├── options.pyi │ │ │ ├── service.pyi │ │ │ └── webdriver.pyi │ │ │ ├── firefox │ │ │ ├── __init__.pyi │ │ │ ├── extension_connection.pyi │ │ │ ├── firefox_binary.pyi │ │ │ ├── firefox_profile.pyi │ │ │ ├── options.pyi │ │ │ ├── remote_connection.pyi │ │ │ ├── service.pyi │ │ │ ├── webdriver.pyi │ │ │ └── webelement.pyi │ │ │ ├── ie │ │ │ ├── __init__.pyi │ │ │ ├── options.pyi │ │ │ ├── service.pyi │ │ │ └── webdriver.pyi │ │ │ ├── opera │ │ │ ├── __init__.pyi │ │ │ ├── options.pyi │ │ │ └── webdriver.pyi │ │ │ ├── phantomjs │ │ │ ├── __init__.pyi │ │ │ ├── service.pyi │ │ │ └── webdriver.pyi │ │ │ ├── remote │ │ │ ├── __init__.pyi │ │ │ ├── command.pyi │ │ │ ├── errorhandler.pyi │ │ │ ├── file_detector.pyi │ │ │ ├── mobile.pyi │ │ │ ├── remote_connection.pyi │ │ │ ├── switch_to.pyi │ │ │ ├── utils.pyi │ │ │ ├── webdriver.pyi │ │ │ └── webelement.pyi │ │ │ ├── safari │ │ │ ├── __init__.pyi │ │ │ ├── permissions.pyi │ │ │ ├── remote_connection.pyi │ │ │ ├── service.pyi │ │ │ └── webdriver.pyi │ │ │ ├── support │ │ │ ├── __init__.pyi │ │ │ ├── abstract_event_listener.pyi │ │ │ ├── color.pyi │ │ │ ├── event_firing_webdriver.pyi │ │ │ ├── events.pyi │ │ │ ├── expected_conditions.pyi │ │ │ ├── select.pyi │ │ │ ├── ui.pyi │ │ │ └── wait.pyi │ │ │ └── webkitgtk │ │ │ ├── __init__.pyi │ │ │ ├── options.pyi │ │ │ ├── service.pyi │ │ │ └── webdriver.pyi │ │ ├── setuptools │ │ ├── METADATA.toml │ │ ├── pkg_resources │ │ │ ├── __init__.pyi │ │ │ └── py31compat.pyi │ │ └── setuptools │ │ │ ├── __init__.pyi │ │ │ ├── _deprecation_warning.pyi │ │ │ ├── _distutils │ │ │ ├── __init__.pyi │ │ │ ├── archive_util.pyi │ │ │ ├── bcppcompiler.pyi │ │ │ ├── ccompiler.pyi │ │ │ ├── cmd.pyi │ │ │ ├── command │ │ │ │ ├── __init__.pyi │ │ │ │ ├── bdist.pyi │ │ │ │ ├── bdist_dumb.pyi │ │ │ │ ├── bdist_msi.pyi │ │ │ │ ├── bdist_rpm.pyi │ │ │ │ ├── build.pyi │ │ │ │ ├── build_clib.pyi │ │ │ │ ├── build_ext.pyi │ │ │ │ ├── build_py.pyi │ │ │ │ ├── build_scripts.pyi │ │ │ │ ├── check.pyi │ │ │ │ ├── clean.pyi │ │ │ │ ├── config.pyi │ │ │ │ ├── install.pyi │ │ │ │ ├── install_data.pyi │ │ │ │ ├── install_egg_info.pyi │ │ │ │ ├── install_headers.pyi │ │ │ │ ├── install_lib.pyi │ │ │ │ ├── install_scripts.pyi │ │ │ │ ├── py37compat.pyi │ │ │ │ ├── register.pyi │ │ │ │ ├── sdist.pyi │ │ │ │ └── upload.pyi │ │ │ ├── config.pyi │ │ │ ├── core.pyi │ │ │ ├── cygwinccompiler.pyi │ │ │ ├── debug.pyi │ │ │ ├── dep_util.pyi │ │ │ ├── dir_util.pyi │ │ │ ├── dist.pyi │ │ │ ├── errors.pyi │ │ │ ├── extension.pyi │ │ │ ├── fancy_getopt.pyi │ │ │ ├── file_util.pyi │ │ │ ├── filelist.pyi │ │ │ ├── log.pyi │ │ │ ├── msvccompiler.pyi │ │ │ ├── spawn.pyi │ │ │ ├── sysconfig.pyi │ │ │ ├── text_file.pyi │ │ │ ├── unixccompiler.pyi │ │ │ ├── util.pyi │ │ │ └── version.pyi │ │ │ ├── archive_util.pyi │ │ │ ├── build_meta.pyi │ │ │ ├── command │ │ │ ├── __init__.pyi │ │ │ ├── alias.pyi │ │ │ ├── bdist_egg.pyi │ │ │ ├── bdist_rpm.pyi │ │ │ ├── build_clib.pyi │ │ │ ├── build_ext.pyi │ │ │ ├── build_py.pyi │ │ │ ├── develop.pyi │ │ │ ├── dist_info.pyi │ │ │ ├── easy_install.pyi │ │ │ ├── egg_info.pyi │ │ │ ├── install.pyi │ │ │ ├── install_egg_info.pyi │ │ │ ├── install_lib.pyi │ │ │ ├── install_scripts.pyi │ │ │ ├── py36compat.pyi │ │ │ ├── register.pyi │ │ │ ├── rotate.pyi │ │ │ ├── saveopts.pyi │ │ │ ├── sdist.pyi │ │ │ ├── setopt.pyi │ │ │ ├── test.pyi │ │ │ ├── upload.pyi │ │ │ └── upload_docs.pyi │ │ │ ├── config.pyi │ │ │ ├── dep_util.pyi │ │ │ ├── depends.pyi │ │ │ ├── dist.pyi │ │ │ ├── errors.pyi │ │ │ ├── extension.pyi │ │ │ ├── extern │ │ │ └── __init__.pyi │ │ │ ├── glob.pyi │ │ │ ├── installer.pyi │ │ │ ├── launch.pyi │ │ │ ├── monkey.pyi │ │ │ ├── msvc.pyi │ │ │ ├── namespaces.pyi │ │ │ ├── package_index.pyi │ │ │ ├── sandbox.pyi │ │ │ ├── unicode_utils.pyi │ │ │ ├── version.pyi │ │ │ ├── wheel.pyi │ │ │ └── windows_support.pyi │ │ ├── simplejson │ │ ├── METADATA.toml │ │ └── simplejson │ │ │ ├── __init__.pyi │ │ │ ├── decoder.pyi │ │ │ ├── encoder.pyi │ │ │ ├── errors.pyi │ │ │ ├── raw_json.pyi │ │ │ └── scanner.pyi │ │ ├── singledispatch │ │ ├── METADATA.toml │ │ └── singledispatch.pyi │ │ ├── six │ │ ├── METADATA.toml │ │ └── six │ │ │ ├── __init__.pyi │ │ │ └── moves │ │ │ ├── BaseHTTPServer.pyi │ │ │ ├── CGIHTTPServer.pyi │ │ │ ├── SimpleHTTPServer.pyi │ │ │ ├── __init__.pyi │ │ │ ├── _dummy_thread.pyi │ │ │ ├── _thread.pyi │ │ │ ├── builtins.pyi │ │ │ ├── cPickle.pyi │ │ │ ├── collections_abc.pyi │ │ │ ├── configparser.pyi │ │ │ ├── copyreg.pyi │ │ │ ├── email_mime_base.pyi │ │ │ ├── email_mime_multipart.pyi │ │ │ ├── email_mime_nonmultipart.pyi │ │ │ ├── email_mime_text.pyi │ │ │ ├── html_entities.pyi │ │ │ ├── html_parser.pyi │ │ │ ├── http_client.pyi │ │ │ ├── http_cookiejar.pyi │ │ │ ├── http_cookies.pyi │ │ │ ├── queue.pyi │ │ │ ├── reprlib.pyi │ │ │ ├── socketserver.pyi │ │ │ ├── tkinter.pyi │ │ │ ├── tkinter_commondialog.pyi │ │ │ ├── tkinter_constants.pyi │ │ │ ├── tkinter_dialog.pyi │ │ │ ├── tkinter_filedialog.pyi │ │ │ ├── tkinter_tkfiledialog.pyi │ │ │ ├── tkinter_ttk.pyi │ │ │ ├── urllib │ │ │ ├── __init__.pyi │ │ │ ├── error.pyi │ │ │ ├── parse.pyi │ │ │ ├── request.pyi │ │ │ ├── response.pyi │ │ │ └── robotparser.pyi │ │ │ ├── urllib_error.pyi │ │ │ ├── urllib_parse.pyi │ │ │ ├── urllib_request.pyi │ │ │ ├── urllib_response.pyi │ │ │ └── urllib_robotparser.pyi │ │ ├── slumber │ │ ├── METADATA.toml │ │ └── slumber │ │ │ ├── __init__.pyi │ │ │ ├── exceptions.pyi │ │ │ ├── serialize.pyi │ │ │ └── utils.pyi │ │ ├── stdlib-list │ │ ├── METADATA.toml │ │ └── stdlib_list │ │ │ ├── __init__.pyi │ │ │ ├── _version.pyi │ │ │ └── base.pyi │ │ ├── stripe │ │ ├── METADATA.toml │ │ └── stripe │ │ │ ├── __init__.pyi │ │ │ ├── api_requestor.pyi │ │ │ ├── api_resources │ │ │ ├── __init__.pyi │ │ │ ├── abstract │ │ │ │ ├── __init__.pyi │ │ │ │ ├── api_resource.pyi │ │ │ │ ├── createable_api_resource.pyi │ │ │ │ ├── custom_method.pyi │ │ │ │ ├── deletable_api_resource.pyi │ │ │ │ ├── listable_api_resource.pyi │ │ │ │ ├── nested_resource_class_methods.pyi │ │ │ │ ├── singleton_api_resource.pyi │ │ │ │ ├── updateable_api_resource.pyi │ │ │ │ └── verify_mixin.pyi │ │ │ ├── account.pyi │ │ │ ├── account_link.pyi │ │ │ ├── alipay_account.pyi │ │ │ ├── apple_pay_domain.pyi │ │ │ ├── application_fee.pyi │ │ │ ├── application_fee_refund.pyi │ │ │ ├── balance.pyi │ │ │ ├── balance_transaction.pyi │ │ │ ├── bank_account.pyi │ │ │ ├── billing_portal │ │ │ │ ├── __init__.pyi │ │ │ │ ├── configuration.pyi │ │ │ │ └── session.pyi │ │ │ ├── bitcoin_receiver.pyi │ │ │ ├── bitcoin_transaction.pyi │ │ │ ├── capability.pyi │ │ │ ├── card.pyi │ │ │ ├── charge.pyi │ │ │ ├── checkout │ │ │ │ ├── __init__.pyi │ │ │ │ └── session.pyi │ │ │ ├── country_spec.pyi │ │ │ ├── coupon.pyi │ │ │ ├── credit_note.pyi │ │ │ ├── credit_note_line_item.pyi │ │ │ ├── customer.pyi │ │ │ ├── customer_balance_transaction.pyi │ │ │ ├── dispute.pyi │ │ │ ├── ephemeral_key.pyi │ │ │ ├── error_object.pyi │ │ │ ├── event.pyi │ │ │ ├── exchange_rate.pyi │ │ │ ├── file.pyi │ │ │ ├── file_link.pyi │ │ │ ├── identity │ │ │ │ ├── __init__.pyi │ │ │ │ ├── verification_report.pyi │ │ │ │ └── verification_session.pyi │ │ │ ├── invoice.pyi │ │ │ ├── invoice_item.pyi │ │ │ ├── invoice_line_item.pyi │ │ │ ├── issuer_fraud_record.pyi │ │ │ ├── issuing │ │ │ │ ├── __init__.pyi │ │ │ │ ├── authorization.pyi │ │ │ │ ├── card.pyi │ │ │ │ ├── card_details.pyi │ │ │ │ ├── cardholder.pyi │ │ │ │ ├── dispute.pyi │ │ │ │ └── transaction.pyi │ │ │ ├── line_item.pyi │ │ │ ├── list_object.pyi │ │ │ ├── login_link.pyi │ │ │ ├── mandate.pyi │ │ │ ├── order.pyi │ │ │ ├── payment_intent.pyi │ │ │ ├── payment_method.pyi │ │ │ ├── payout.pyi │ │ │ ├── person.pyi │ │ │ ├── plan.pyi │ │ │ ├── price.pyi │ │ │ ├── product.pyi │ │ │ ├── promotion_code.pyi │ │ │ ├── quote.pyi │ │ │ ├── radar │ │ │ │ ├── __init__.pyi │ │ │ │ ├── early_fraud_warning.pyi │ │ │ │ ├── value_list.pyi │ │ │ │ └── value_list_item.pyi │ │ │ ├── recipient.pyi │ │ │ ├── recipient_transfer.pyi │ │ │ ├── refund.pyi │ │ │ ├── reporting │ │ │ │ ├── __init__.pyi │ │ │ │ ├── report_run.pyi │ │ │ │ └── report_type.pyi │ │ │ ├── reversal.pyi │ │ │ ├── review.pyi │ │ │ ├── setup_attempt.pyi │ │ │ ├── setup_intent.pyi │ │ │ ├── sigma │ │ │ │ ├── __init__.pyi │ │ │ │ └── scheduled_query_run.pyi │ │ │ ├── sku.pyi │ │ │ ├── source.pyi │ │ │ ├── source_transaction.pyi │ │ │ ├── subscription.pyi │ │ │ ├── subscription_item.pyi │ │ │ ├── subscription_schedule.pyi │ │ │ ├── tax_code.pyi │ │ │ ├── tax_id.pyi │ │ │ ├── tax_rate.pyi │ │ │ ├── terminal │ │ │ │ ├── __init__.pyi │ │ │ │ ├── connection_token.pyi │ │ │ │ ├── location.pyi │ │ │ │ └── reader.pyi │ │ │ ├── three_d_secure.pyi │ │ │ ├── token.pyi │ │ │ ├── topup.pyi │ │ │ ├── transfer.pyi │ │ │ ├── usage_record.pyi │ │ │ ├── usage_record_summary.pyi │ │ │ └── webhook_endpoint.pyi │ │ │ ├── error.pyi │ │ │ ├── http_client.pyi │ │ │ ├── multipart_data_generator.pyi │ │ │ ├── oauth.pyi │ │ │ ├── oauth_error.pyi │ │ │ ├── object_classes.pyi │ │ │ ├── request_metrics.pyi │ │ │ ├── stripe_object.pyi │ │ │ ├── stripe_response.pyi │ │ │ ├── util.pyi │ │ │ ├── version.pyi │ │ │ └── webhook.pyi │ │ ├── tabulate │ │ ├── METADATA.toml │ │ └── tabulate.pyi │ │ ├── termcolor │ │ ├── METADATA.toml │ │ └── termcolor.pyi │ │ ├── toml │ │ ├── METADATA.toml │ │ └── toml │ │ │ ├── __init__.pyi │ │ │ ├── decoder.pyi │ │ │ ├── encoder.pyi │ │ │ ├── ordered.pyi │ │ │ └── tz.pyi │ │ ├── toposort │ │ ├── METADATA.toml │ │ └── toposort.pyi │ │ ├── tqdm │ │ ├── METADATA.toml │ │ └── tqdm │ │ │ ├── __init__.pyi │ │ │ ├── _dist_ver.pyi │ │ │ ├── _main.pyi │ │ │ ├── _monitor.pyi │ │ │ ├── _tqdm.pyi │ │ │ ├── _tqdm_gui.pyi │ │ │ ├── _tqdm_notebook.pyi │ │ │ ├── _tqdm_pandas.pyi │ │ │ ├── _utils.pyi │ │ │ ├── asyncio.pyi │ │ │ ├── auto.pyi │ │ │ ├── autonotebook.pyi │ │ │ ├── cli.pyi │ │ │ ├── contrib │ │ │ ├── __init__.pyi │ │ │ ├── bells.pyi │ │ │ ├── concurrent.pyi │ │ │ ├── discord.pyi │ │ │ ├── itertools.pyi │ │ │ ├── logging.pyi │ │ │ ├── slack.pyi │ │ │ ├── telegram.pyi │ │ │ └── utils_worker.pyi │ │ │ ├── dask.pyi │ │ │ ├── gui.pyi │ │ │ ├── keras.pyi │ │ │ ├── notebook.pyi │ │ │ ├── rich.pyi │ │ │ ├── std.pyi │ │ │ ├── tk.pyi │ │ │ ├── utils.pyi │ │ │ └── version.pyi │ │ ├── tree-sitter-languages │ │ ├── METADATA.toml │ │ └── tree_sitter_languages │ │ │ ├── __init__.pyi │ │ │ └── core.pyi │ │ ├── tree-sitter │ │ ├── METADATA.toml │ │ └── tree_sitter │ │ │ ├── __init__.pyi │ │ │ └── binding.pyi │ │ ├── ttkthemes │ │ ├── METADATA.toml │ │ └── ttkthemes │ │ │ ├── __init__.pyi │ │ │ ├── _imgops.pyi │ │ │ ├── _utils.pyi │ │ │ ├── _widget.pyi │ │ │ ├── themed_style.pyi │ │ │ └── themed_tk.pyi │ │ ├── typed-ast │ │ ├── METADATA.toml │ │ └── typed_ast │ │ │ ├── __init__.pyi │ │ │ ├── ast27.pyi │ │ │ ├── ast3.pyi │ │ │ └── conversions.pyi │ │ ├── tzlocal │ │ ├── METADATA.toml │ │ └── tzlocal │ │ │ ├── __init__.pyi │ │ │ ├── utils.pyi │ │ │ └── windows_tz.pyi │ │ ├── ujson │ │ ├── METADATA.toml │ │ └── ujson.pyi │ │ ├── urllib3 │ │ ├── METADATA.toml │ │ └── urllib3 │ │ │ ├── __init__.pyi │ │ │ ├── _collections.pyi │ │ │ ├── connection.pyi │ │ │ ├── connectionpool.pyi │ │ │ ├── contrib │ │ │ ├── __init__.pyi │ │ │ └── socks.pyi │ │ │ ├── exceptions.pyi │ │ │ ├── fields.pyi │ │ │ ├── filepost.pyi │ │ │ ├── packages │ │ │ ├── __init__.pyi │ │ │ └── ssl_match_hostname │ │ │ │ ├── __init__.pyi │ │ │ │ └── _implementation.pyi │ │ │ ├── poolmanager.pyi │ │ │ ├── request.pyi │ │ │ ├── response.pyi │ │ │ └── util │ │ │ ├── __init__.pyi │ │ │ ├── connection.pyi │ │ │ ├── queue.pyi │ │ │ ├── request.pyi │ │ │ ├── response.pyi │ │ │ ├── retry.pyi │ │ │ ├── ssl_.pyi │ │ │ ├── timeout.pyi │ │ │ └── url.pyi │ │ ├── vobject │ │ ├── METADATA.toml │ │ └── vobject │ │ │ ├── __init__.pyi │ │ │ ├── base.pyi │ │ │ ├── behavior.pyi │ │ │ ├── change_tz.pyi │ │ │ ├── hcalendar.pyi │ │ │ ├── icalendar.pyi │ │ │ ├── ics_diff.pyi │ │ │ ├── vcard.pyi │ │ │ └── win32tz.pyi │ │ ├── waitress │ │ ├── METADATA.toml │ │ └── waitress │ │ │ ├── __init__.pyi │ │ │ ├── adjustments.pyi │ │ │ ├── buffers.pyi │ │ │ ├── channel.pyi │ │ │ ├── compat.pyi │ │ │ ├── parser.pyi │ │ │ ├── proxy_headers.pyi │ │ │ ├── receiver.pyi │ │ │ ├── rfc7230.pyi │ │ │ ├── runner.pyi │ │ │ ├── server.pyi │ │ │ ├── task.pyi │ │ │ ├── trigger.pyi │ │ │ ├── utilities.pyi │ │ │ └── wasyncore.pyi │ │ ├── whatthepatch │ │ ├── METADATA.toml │ │ └── whatthepatch │ │ │ ├── __init__.pyi │ │ │ ├── apply.pyi │ │ │ ├── exceptions.pyi │ │ │ ├── patch.pyi │ │ │ └── snippets.pyi │ │ ├── xmltodict │ │ ├── METADATA.toml │ │ └── xmltodict.pyi │ │ ├── xxhash │ │ ├── METADATA.toml │ │ └── xxhash │ │ │ ├── __init__.pyi │ │ │ └── version.pyi │ │ └── zxcvbn │ │ ├── METADATA.toml │ │ └── zxcvbn │ │ ├── __init__.pyi │ │ ├── adjacency_graphs.pyi │ │ ├── feedback.pyi │ │ ├── frequency_lists.pyi │ │ ├── matching.pyi │ │ ├── scoring.pyi │ │ └── time_estimates.pyi ├── pyright │ ├── .gitignore │ ├── index.js │ ├── langserver.index.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── langserver.ts │ │ └── pyright.ts │ ├── tsconfig.json │ └── webpack.config.js └── vscode-pyright │ ├── .vscodeignore │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── build │ ├── checkPackage.js │ └── renamePackage.js │ ├── images │ └── pyright-icon.png │ ├── package-lock.json │ ├── package.json │ ├── schemas │ └── pyrightconfig.schema.json │ ├── src │ ├── cancellationUtils.ts │ ├── compiler.ts │ ├── cythonServices.ts │ ├── extension.ts │ ├── installer.ts │ ├── semanticTokens.ts │ ├── server.ts │ └── statusBar.ts │ ├── tsconfig.json │ └── webpack.config.js ├── specs └── dataclass_transforms.md └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/.github/workflows/validation.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/SECURITY.md -------------------------------------------------------------------------------- /docs/build-debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/docs/build-debug.md -------------------------------------------------------------------------------- /docs/builtins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/docs/builtins.md -------------------------------------------------------------------------------- /docs/ci-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/docs/ci-integration.md -------------------------------------------------------------------------------- /docs/command-line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/docs/command-line.md -------------------------------------------------------------------------------- /docs/commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/docs/commands.md -------------------------------------------------------------------------------- /docs/comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/docs/comments.md -------------------------------------------------------------------------------- /docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/docs/configuration.md -------------------------------------------------------------------------------- /docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/docs/getting-started.md -------------------------------------------------------------------------------- /docs/img/CreateTypeStub1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/docs/img/CreateTypeStub1.png -------------------------------------------------------------------------------- /docs/img/CreateTypeStub2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/docs/img/CreateTypeStub2.png -------------------------------------------------------------------------------- /docs/img/PyrightLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/docs/img/PyrightLarge.png -------------------------------------------------------------------------------- /docs/import-resolution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/docs/import-resolution.md -------------------------------------------------------------------------------- /docs/internals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/docs/internals.md -------------------------------------------------------------------------------- /docs/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/docs/settings.md -------------------------------------------------------------------------------- /docs/type-concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/docs/type-concepts.md -------------------------------------------------------------------------------- /docs/type-inference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/docs/type-inference.md -------------------------------------------------------------------------------- /docs/type-stubs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/docs/type-stubs.md -------------------------------------------------------------------------------- /docs/typed-libraries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/docs/typed-libraries.md -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/lerna.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/package.json -------------------------------------------------------------------------------- /packages/pyright-internal/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/jest.config.js -------------------------------------------------------------------------------- /packages/pyright-internal/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/package-lock.json -------------------------------------------------------------------------------- /packages/pyright-internal/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/package.json -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/analysis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/analyzer/analysis.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/analyzerFileInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/analyzer/analyzerFileInfo.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/analyzerNodeInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/analyzer/analyzerNodeInfo.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/binder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/analyzer/binder.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/checker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/analyzer/checker.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/codeFlowEngine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/analyzer/codeFlowEngine.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/codeFlowTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/analyzer/codeFlowTypes.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/codeFlowUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/analyzer/codeFlowUtils.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/commentUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/analyzer/commentUtils.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/constraintSolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/analyzer/constraintSolver.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/cythonTransform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/analyzer/cythonTransform.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/dataClasses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/analyzer/dataClasses.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/declaration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/analyzer/declaration.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/declarationUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/analyzer/declarationUtils.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/docStringUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/analyzer/docStringUtils.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/analyzer/enums.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/importResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/analyzer/importResolver.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/importResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/analyzer/importResult.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/namedTuples.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/analyzer/namedTuples.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/parseTreeCleaner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/analyzer/parseTreeCleaner.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/parseTreeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/analyzer/parseTreeUtils.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/parseTreeWalker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/analyzer/parseTreeWalker.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/patternMatching.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/analyzer/patternMatching.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/program.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/analyzer/program.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/properties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/analyzer/properties.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/protocols.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/analyzer/protocols.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/pyTypedUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/analyzer/pyTypedUtils.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/pythonPathUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/analyzer/pythonPathUtils.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/scope.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/analyzer/scope.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/scopeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/analyzer/scopeUtils.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/analyzer/service.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/sourceFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/analyzer/sourceFile.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/sourceMapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/analyzer/sourceMapper.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/symbol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/analyzer/symbol.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/symbolNameUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/analyzer/symbolNameUtils.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/symbolUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/analyzer/symbolUtils.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/testWalker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/analyzer/testWalker.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/tracePrinter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/analyzer/tracePrinter.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/typeCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/analyzer/typeCache.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/typeEvaluator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/analyzer/typeEvaluator.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/typeGuards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/analyzer/typeGuards.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/typePrinter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/analyzer/typePrinter.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/typeStubWriter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/analyzer/typeStubWriter.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/typeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/analyzer/typeUtils.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/typeVarContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/analyzer/typeVarContext.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/typedDicts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/analyzer/typedDicts.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/analyzer/types.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/backgroundAnalysis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/backgroundAnalysis.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/backgroundAnalysisBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/backgroundAnalysisBase.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/backgroundThreadBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/backgroundThreadBase.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/commands/commandResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/commands/commandResult.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/commands/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/commands/commands.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/commands/createTypeStub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/commands/createTypeStub.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/commands/restartServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/commands/restartServer.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/cancellationUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/common/cancellationUtils.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/collectionUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/common/collectionUtils.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/commandLineOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/common/commandLineOptions.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/configOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/common/configOptions.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/console.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/common/console.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/common/core.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/crypto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/common/crypto.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/common/debug.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/deferred.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/common/deferred.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/diagnostic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/common/diagnostic.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/diagnosticRules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/common/diagnosticRules.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/diagnosticSink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/common/diagnosticSink.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/editAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/common/editAction.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/envVarUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/common/envVarUtils.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/extensibility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/common/extensibility.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/extensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/common/extensions.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/fileSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/common/fileSystem.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/fullAccessHost.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/common/fullAccessHost.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/host.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/common/host.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/logTracker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/common/logTracker.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/lspUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/common/lspUtils.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/memUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/common/memUtils.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/pathConsts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/common/pathConsts.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/pathUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/common/pathUtils.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/positionUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/common/positionUtils.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/progressReporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/common/progressReporter.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/pythonVersion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/common/pythonVersion.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/realFileSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/common/realFileSystem.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/stringUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/common/stringUtils.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/textEditUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/common/textEditUtils.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/textRange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/common/textRange.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/timing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/common/timing.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/uriParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/common/uriParser.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/workspaceEditUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/common/workspaceEditUtils.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/languageServerBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/languageServerBase.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/localization/localize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/localization/localize.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/localization/package.nls.de.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/localization/package.nls.es.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/localization/package.nls.fr.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/localization/package.nls.ja.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/localization/package.nls.ru.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/localization/package.nls.zh-cn.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/localization/package.nls.zh-tw.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/nodeMain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/nodeMain.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/nodeServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/nodeServer.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/parser/characterStream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/parser/characterStream.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/parser/characters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/parser/characters.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/parser/parseNodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/parser/parseNodes.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/parser/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/parser/parser.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/parser/stringTokenUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/parser/stringTokenUtils.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/parser/tokenizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/parser/tokenizer.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/parser/tokenizerTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/parser/tokenizerTypes.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/parser/unicode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/parser/unicode.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/pyright.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/pyright.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/pyrightFileSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/pyrightFileSystem.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/server.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests-cython/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests-cython/jest.config.js -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests-cython/tests/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests-cython/tests/utils.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/checker.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/checker.test.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/common.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/common.test.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/config.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/config.test.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/debug.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/debug.test.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/deferred.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/deferred.test.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/docStringUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/docStringUtils.test.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/filesystem.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/filesystem.test.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/fourslash/fourslash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/fourslash/fourslash.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/harness/testHost.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/harness/testHost.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/harness/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/harness/utils.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/harness/vfs/factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/harness/vfs/factory.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/importAdder.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/importAdder.test.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/importResolver.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/importResolver.test.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/ipythonMode.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/ipythonMode.test.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/localizer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/localizer.test.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/parseTreeUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/parseTreeUtils.test.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/parser.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/parser.test.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/pathUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/pathUtils.test.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/annotated1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/annotated1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/assert1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/assert1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/assertType1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/assertType1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/assignment1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/assignment1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/assignment2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/assignment2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/assignment3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/assignment3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/assignment4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/assignment4.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/assignment5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/assignment5.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/assignment6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/assignment6.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/assignment7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/assignment7.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/assignment8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/assignment8.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/assignment9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/assignment9.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/async1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/async1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/await1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/await1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/await2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/await2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/badToken1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/badToken1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/builtins1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/builtins1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/call1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/call1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/call2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/call2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/call3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/call3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/call4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/call4.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/call5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/call5.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/call6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/call6.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/call7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/call7.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/callSite1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/callSite1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/callSite2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/callSite2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/callable1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/callable1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/callable2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/callable2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/callable3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/callable3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/callable4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/callable4.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/callable5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/callable5.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/callable6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/callable6.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/circular1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/circular1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/circular2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/circular2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/classVar1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/classVar1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/classVar2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/classVar2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/classVar3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/classVar3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/classVar4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/classVar4.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/classes1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/classes1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/classes3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/classes3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/classes4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/classes4.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/classes5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/classes5.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/classes6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/classes6.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/classes7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/classes7.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/classes8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/classes8.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/codeFlow1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/codeFlow1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/codeFlow2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/codeFlow2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/codeFlow3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/codeFlow3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/codeFlow4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/codeFlow4.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/codeFlow5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/codeFlow5.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/codeFlow6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/codeFlow6.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/codeFlow7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/codeFlow7.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/comparison1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/comparison1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/comparison2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/comparison2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/complex1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/complex1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/constant1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/constant1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/constants1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/constants1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/coroutines1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/coroutines1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/coroutines2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/coroutines2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/coroutines3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/coroutines3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/dataclass1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/dataclass1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/dataclass10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/dataclass10.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/dataclass11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/dataclass11.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/dataclass12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/dataclass12.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/dataclass13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/dataclass13.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/dataclass14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/dataclass14.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/dataclass15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/dataclass15.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/dataclass16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/dataclass16.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/dataclass17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/dataclass17.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/dataclass18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/dataclass18.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/dataclass19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/dataclass19.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/dataclass2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/dataclass2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/dataclass20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/dataclass20.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/dataclass21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/dataclass21.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/dataclass22.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/dataclass22.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/dataclass23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/dataclass23.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/dataclass3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/dataclass3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/dataclass4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/dataclass4.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/dataclass5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/dataclass5.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/dataclass6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/dataclass6.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/dataclass7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/dataclass7.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/dataclass8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/dataclass8.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/dataclass9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/dataclass9.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/decorator1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/decorator1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/decorator2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/decorator2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/decorator3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/decorator3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/decorator4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/decorator4.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/decorator5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/decorator5.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/decorator6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/decorator6.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/del1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/del1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/enums1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/enums1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/enums2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/enums2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/enums3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/enums3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/enums4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/enums4.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/enums5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/enums5.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/enums6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/enums6.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/enums7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/enums7.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/enums8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/enums8.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/enums9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/enums9.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/final1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/final1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/final2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/final2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/final3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/final3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/final4.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/final4.pyi -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/final5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/final5.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/forLoop1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/forLoop1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/forLoop2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/forLoop2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/fstring1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/fstring1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/fstring2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/fstring2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/fstring3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/fstring3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/fstring4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/fstring4.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/fstring5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/fstring5.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/fstring6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/fstring6.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/function1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/function1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/function2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/function2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/function3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/function3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/function4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/function4.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/function6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/function6.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/function7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/function7.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/function8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/function8.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/function9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/function9.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/generic1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/generic1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/import1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/import1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/import10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/import10.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/import11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/import11.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/import12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/import12.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/import13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/import13.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/import14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/import14.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/import2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/import2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/import3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/import3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/import4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/import4.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/import5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/import5.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/import6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/import6.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/import7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/import7.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/import8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/import8.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/import9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/import9.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/index1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/index1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/initVar1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/initVar1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/lambda1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/lambda1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/lambda2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/lambda2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/lambda3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/lambda3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/lambda4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/lambda4.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/lambda5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/lambda5.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/lambda6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/lambda6.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/lines1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/lines1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/list1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/list1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/list2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/list2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/literals1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/literals1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/literals2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/literals2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/literals3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/literals3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/literals4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/literals4.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/literals5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/literals5.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/literals6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/literals6.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/literals7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/literals7.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loops1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/loops1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loops10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/loops10.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loops11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/loops11.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loops12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/loops12.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loops13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/loops13.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loops14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/loops14.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loops15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/loops15.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loops16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/loops16.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loops17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/loops17.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loops18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/loops18.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loops19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/loops19.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loops2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/loops2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loops20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/loops20.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loops21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/loops21.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loops22.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/loops22.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loops23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/loops23.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loops24.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/loops24.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loops25.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/loops25.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loops26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/loops26.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loops27.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/loops27.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loops3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/loops3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loops4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/loops4.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loops5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/loops5.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loops6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/loops6.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loops7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/loops7.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loops8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/loops8.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loops9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/loops9.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/match1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/match1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/match10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/match10.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/match2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/match2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/match3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/match3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/match4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/match4.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/match5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/match5.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/match6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/match6.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/match7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/match7.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/match8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/match8.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/match9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/match9.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/module1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/module1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/module2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/module2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/mro1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/mro1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/mro2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/mro2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/mro3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/mro3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/mro4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/mro4.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/never1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/never1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/never2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/never2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/newType1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/newType1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/newType2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/newType2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/newType3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/newType3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/newType4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/newType4.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/none1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/none1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/none2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/none2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/noreturn1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/noreturn1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/noreturn2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/noreturn2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/noreturn3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/noreturn3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/noreturn4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/noreturn4.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/optional1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/optional1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/optional2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/optional2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/overload1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/overload1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/overload2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/overload2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/overload3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/overload3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/overload4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/overload4.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/overload5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/overload5.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/overload6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/overload6.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/overload7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/overload7.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/overload8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/overload8.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/overload9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/overload9.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/package1/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | def foo(): 3 | pass 4 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/package1/sub.py: -------------------------------------------------------------------------------- 1 | 2 | def subfoo() -> str: 3 | return 'hello' 4 | 5 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/package1/sub.pyi: -------------------------------------------------------------------------------- 1 | 2 | def subfoo() -> int: ... 3 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/partial1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/partial1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/partial2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/partial2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/private1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/private1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/private2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/private2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/project1/sample1.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/project1/subfolder1/sample2.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/project1/subfolder1/subfolder1-1/sample3.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/project2/pyrightconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "files": "NotAnArray.py" 3 | } 4 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/project4/presentfile.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/project4/subfolder/presentfile2.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/project4/subfolder/presentfile3.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/project6/app1.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/project6/app2.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/project6/projectA/foo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/project6/projectA/foo/bar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/project6/projectB/foo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/project6/projectB/foo/baz/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/project_src/src/module1.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/project_src_is_pkg/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/project_src_is_pkg/src/module1.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/project_src_with_config_extra_paths/pyrightconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extraPaths": [] 3 | } 4 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/project_src_with_config_extra_paths/src/module1.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/project_src_with_config_no_extra_paths/pyrightconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/project_src_with_config_no_extra_paths/src/module1.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/project_src_with_extra_paths/src/_vendored/vendored1.py: -------------------------------------------------------------------------------- 1 | MSG = 'hello' 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/project_src_with_extra_paths/src/module1.py: -------------------------------------------------------------------------------- 1 | from vendored1 import MSG 2 | print(MSG) 3 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/project_with_venv_auto_detect_exclude/myvenv/Lib/site-packages/library1.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/project_with_venv_auto_detect_exclude/myvenv/pyvenv.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/project_with_venv_auto_detect_exclude/pyrightconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/project_with_venv_auto_detect_exclude/sample1.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/project_with_venv_auto_detect_exclude/subfolder1/sample2.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/project_with_venv_auto_detect_exclude/subfolder1/subfolder1-1/sample3.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/project_with_venv_auto_detect_include/excluded/excluded1.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/project_with_venv_auto_detect_include/myvenv/Lib/site-packages/library1.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/project_with_venv_auto_detect_include/myvenv/pyvenv.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/project_with_venv_auto_detect_include/sample1.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/project_with_venv_auto_detect_include/subfolder1/sample2.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/project_with_venv_auto_detect_include/subfolder1/subfolder1-1/sample3.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/protocol1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/protocol1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/protocol2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/protocol2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/protocol3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/protocol3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/protocol4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/protocol4.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/protocol5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/protocol5.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/protocol6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/protocol6.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/protocol7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/protocol7.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/protocol8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/protocol8.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/protocol9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/protocol9.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/python2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/python2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/required1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/required1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/required2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/required2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/required3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/required3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/sample1.py: -------------------------------------------------------------------------------- 1 | 2 | # This file should parse without errors 3 | a 4 | b 5 | c; d; e; 6 | f; g 7 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/self1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/self1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/self2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/self2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/self3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/self3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/self4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/self4.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/self5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/self5.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/slots1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/slots1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/slots2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/slots2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/slots3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/slots3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/strings1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/strings1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/suiteExpectedColon3.py: -------------------------------------------------------------------------------- 1 | # Error recovery should consume the whole line 2 | if True pass 3 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/super1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/super1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/super2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/super2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/super3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/super3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/super4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/super4.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/super5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/super5.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/super6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/super6.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/super7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/super7.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/super8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/super8.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/super9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/super9.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/test_file1.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/tuples1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/tuples1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/tuples10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/tuples10.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/tuples11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/tuples11.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/tuples12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/tuples12.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/tuples13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/tuples13.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/tuples15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/tuples15.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/tuples16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/tuples16.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/tuples2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/tuples2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/tuples3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/tuples3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/tuples4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/tuples4.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/tuples5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/tuples5.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/tuples6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/tuples6.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/tuples7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/tuples7.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/tuples8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/tuples8.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/tuples9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/tuples9.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/typeVar1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/typeVar1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/typeVar10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/typeVar10.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/typeVar11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/typeVar11.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/typeVar2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/typeVar2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/typeVar3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/typeVar3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/typeVar4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/typeVar4.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/typeVar5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/typeVar5.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/typeVar6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/typeVar6.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/typeVar7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/typeVar7.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/typeVar8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/typeVar8.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/typeVar9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/typeVar9.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/unbound1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/unbound1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/unbound2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/unbound2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/unbound3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/unbound3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/unbound4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/unbound4.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/unicode1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/unicode1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/unions1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/unions1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/unions2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/unions2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/unions3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/unions3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/unions4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/unions4.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/unions5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/unions5.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/unions6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/unions6.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/unpack1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/unpack1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/unpack2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/unpack2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/unpack3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/unpack3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/unpack4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/unpack4.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/with1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/with1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/with2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/with2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/with3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/with3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/with4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/with4.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/with5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/samples/with5.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/zipfs/bad.egg: -------------------------------------------------------------------------------- 1 | This file isn't a zip. 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/zipfs/bad.zip: -------------------------------------------------------------------------------- 1 | This file isn't a zip. 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/zipfs/corrupt.egg: -------------------------------------------------------------------------------- 1 | PKThis is a corrupt zip file -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/zipfs/corrupt.zip: -------------------------------------------------------------------------------- 1 | PKThis is a corrupt zip file -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/sourceFile.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/sourceFile.test.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/stringUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/stringUtils.test.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/testState.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/testState.test.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/testStateUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/testStateUtils.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/testUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/testUtils.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/tokenizer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/tokenizer.test.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/zipfs.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/tests/zipfs.test.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/workspaceMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/src/workspaceMap.ts -------------------------------------------------------------------------------- /packages/pyright-internal/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/tsconfig.json -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/typeshed-fallback/LICENSE -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright-internal/typeshed-fallback/README.md -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/commit.txt: -------------------------------------------------------------------------------- 1 | 8e4b89a707f2508e4938e0691b714e235d1719fd 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stdlib/__main__.pyi: -------------------------------------------------------------------------------- 1 | from typing import Any 2 | 3 | def __getattr__(name: str) -> Any: ... 4 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stdlib/concurrent/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stdlib/cython/cimports/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stdlib/cython/cimports/libc/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stdlib/cython/cimports/libc/math.pyi: -------------------------------------------------------------------------------- 1 | from math import * -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stdlib/distutils/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stdlib/distutils/command/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stdlib/distutils/command/bdist_packager.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stdlib/distutils/debug.pyi: -------------------------------------------------------------------------------- 1 | DEBUG: bool | None 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stdlib/email/mime/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stdlib/json/tool.pyi: -------------------------------------------------------------------------------- 1 | def main() -> None: ... 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stdlib/lib2to3/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stdlib/pydoc_data/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stdlib/pydoc_data/topics.pyi: -------------------------------------------------------------------------------- 1 | topics: dict[str, str] 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stdlib/sqlite3/__init__.pyi: -------------------------------------------------------------------------------- 1 | from sqlite3.dbapi2 import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stdlib/stat.pyi: -------------------------------------------------------------------------------- 1 | from _stat import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stdlib/urllib/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stdlib/wsgiref/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stdlib/xml/etree/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stdlib/xml/etree/cElementTree.pyi: -------------------------------------------------------------------------------- 1 | from xml.etree.ElementTree import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stdlib/xml/parsers/expat/__init__.pyi: -------------------------------------------------------------------------------- 1 | from pyexpat import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stdlib/xml/parsers/expat/errors.pyi: -------------------------------------------------------------------------------- 1 | from pyexpat.errors import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stdlib/xml/parsers/expat/model.pyi: -------------------------------------------------------------------------------- 1 | from pyexpat.model import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stdlib/xmlrpc/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/Flask-Cors/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "3.0.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/Flask-Cors/flask_cors/version.pyi: -------------------------------------------------------------------------------- 1 | __version__: str 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/Flask-SQLAlchemy/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "2.5.*" 2 | requires = ["types-SQLAlchemy"] 3 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/JACK-Client/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "0.5.*" 2 | 3 | [tool.stubtest] 4 | apt_dependencies = ["libjack-dev"] 5 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/Markdown/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "3.4.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/Pillow/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "9.2.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/Pillow/PIL/PdfImagePlugin.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/Pillow/PIL/_util.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/Pillow/PIL/_version.pyi: -------------------------------------------------------------------------------- 1 | __version__: str 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/PyMySQL/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "1.0.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/PyMySQL/pymysql/constants/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/SQLAlchemy/sqlalchemy/connectors/__init__.pyi: -------------------------------------------------------------------------------- 1 | class Connector: ... 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/SQLAlchemy/sqlalchemy/dialects/mssql/provision.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/SQLAlchemy/sqlalchemy/dialects/mysql/provision.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/SQLAlchemy/sqlalchemy/dialects/oracle/provision.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/SQLAlchemy/sqlalchemy/dialects/postgresql/provision.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/SQLAlchemy/sqlalchemy/dialects/sqlite/provision.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/SQLAlchemy/sqlalchemy/event/legacy.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/SQLAlchemy/sqlalchemy/ext/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/SQLAlchemy/sqlalchemy/ext/mypy/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/SQLAlchemy/sqlalchemy/future/orm/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/SQLAlchemy/sqlalchemy/testing/asyncio.pyi: -------------------------------------------------------------------------------- 1 | ENABLE_ASYNCIO: bool 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/SQLAlchemy/sqlalchemy/testing/mock.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/SQLAlchemy/sqlalchemy/testing/plugin/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/Send2Trash/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "1.8.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/aiofiles/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "0.8.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/atomicwrites/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "1.4.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/aws-xray-sdk/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "2.10.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/aws-xray-sdk/aws_xray_sdk/core/emitters/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/aws-xray-sdk/aws_xray_sdk/core/exceptions/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/aws-xray-sdk/aws_xray_sdk/core/models/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/aws-xray-sdk/aws_xray_sdk/core/plugins/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/aws-xray-sdk/aws_xray_sdk/core/sampling/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/aws-xray-sdk/aws_xray_sdk/core/sampling/local/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/aws-xray-sdk/aws_xray_sdk/core/streaming/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/aws-xray-sdk/aws_xray_sdk/core/utils/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/aws-xray-sdk/aws_xray_sdk/version.pyi: -------------------------------------------------------------------------------- 1 | VERSION: str 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/babel/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "2.10.*" 2 | requires = ["types-pytz"] 3 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/babel/babel/localtime/_unix.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/babel/babel/messages/__init__.pyi: -------------------------------------------------------------------------------- 1 | from babel.messages.catalog import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/beautifulsoup4/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "4.11.*" 2 | 3 | [tool.stubtest] 4 | extras = ["lxml", "html5lib"] 5 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/bleach/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "5.0.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/boto/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "2.49.*" 2 | requires = ["types-six"] 3 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/braintree/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "4.16.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/braintree/braintree/exceptions/braintree_error.pyi: -------------------------------------------------------------------------------- 1 | class BraintreeError(Exception): ... 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/braintree/braintree/version.pyi: -------------------------------------------------------------------------------- 1 | Version: str 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/caldav/caldav/elements/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/caldav/caldav/lib/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/caldav/caldav/lib/vcal.pyi: -------------------------------------------------------------------------------- 1 | def fix(event): ... 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/chardet/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "5.0.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/chardet/chardet/version.pyi: -------------------------------------------------------------------------------- 1 | __version__: str 2 | VERSION: list[str] 3 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/chevron/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "0.14.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/chevron/chevron/metadata.pyi: -------------------------------------------------------------------------------- 1 | version: str 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/colorama/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "0.4.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/commonmark/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "0.9.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/commonmark/commonmark/cmark.pyi: -------------------------------------------------------------------------------- 1 | def main() -> None: ... 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/commonmark/commonmark/normalize_reference.pyi: -------------------------------------------------------------------------------- 1 | def normalize_reference(string): ... 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/commonmark/commonmark/render/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/cryptography/cryptography/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/cryptography/cryptography/hazmat/bindings/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/cryptography/cryptography/hazmat/bindings/openssl/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/cryptography/cryptography/hazmat/primitives/twofactor/__init__.pyi: -------------------------------------------------------------------------------- 1 | class InvalidToken(Exception): ... 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/dateparser/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "1.1.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/dateparser/dateparser/data/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/dateparser/dateparser/languages/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/dateparser/dateparser_data/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/decorator/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "5.1.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/docutils/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "0.19.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/entrypoints/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "0.4.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/flake8-2020/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "1.7.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/flake8-bugbear/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "22.8.23" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/flake8-builtins/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "1.5.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/flake8-docstrings/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "1.6.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/flake8-plugin-utils/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "1.3.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/flake8-rst-docstrings/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "0.2.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/flake8-simplify/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "0.19.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/flake8-typing-imports/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "1.13.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/fpdf2/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "2.5.*" 2 | requires = ["types-Pillow"] 3 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/google-cloud-ndb/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "1.11.*" 2 | requires = ["types-six"] 3 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/hdbcli/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "2.13.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/hdbcli/hdbcli/__init__.pyi: -------------------------------------------------------------------------------- 1 | __version__: str 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/html5lib/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "1.1.*" 2 | 3 | [tool.stubtest] 4 | extras = ["all"] 5 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/html5lib/html5lib/filters/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/html5lib/html5lib/treeadapters/genshi.pyi: -------------------------------------------------------------------------------- 1 | def to_genshi(walker) -> None: ... 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/httplib2/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "0.20.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/humanfriendly/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "10.0.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/humanfriendly/humanfriendly/decorators.pyi: -------------------------------------------------------------------------------- 1 | RESULTS_ATTRIBUTE: str 2 | 3 | def cached(function): ... 4 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/invoke/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "1.7.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/invoke/invoke/completion/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/jsonschema/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "4.15.*" 2 | 3 | [tool.stubtest] 4 | extras = ["format"] 5 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/ldap3/ldap3/core/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/ldap3/ldap3/extend/microsoft/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/ldap3/ldap3/extend/novell/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/ldap3/ldap3/extend/standard/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/ldap3/ldap3/operation/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/ldap3/ldap3/operation/unbind.pyi: -------------------------------------------------------------------------------- 1 | def unbind_operation(): ... 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/ldap3/ldap3/protocol/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/ldap3/ldap3/protocol/formatters/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/ldap3/ldap3/protocol/sasl/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/ldap3/ldap3/protocol/sasl/external.pyi: -------------------------------------------------------------------------------- 1 | def sasl_external(connection, controls): ... 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/ldap3/ldap3/protocol/sasl/plain.pyi: -------------------------------------------------------------------------------- 1 | def sasl_plain(connection, controls): ... 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/ldap3/ldap3/protocol/schemas/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/ldap3/ldap3/strategy/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/ldap3/ldap3/utils/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/ldap3/ldap3/utils/uri.pyi: -------------------------------------------------------------------------------- 1 | def parse_uri(uri): ... 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/mock/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "4.0.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/oauthlib/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "3.2.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/oauthlib/oauthlib/openid/connect/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/oauthlib/oauthlib/openid/connect/core/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/openpyxl/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "3.0.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/openpyxl/openpyxl/packaging/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/openpyxl/openpyxl/pivot/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/openpyxl/openpyxl/reader/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/openpyxl/openpyxl/reader/drawings.pyi: -------------------------------------------------------------------------------- 1 | def find_images(archive, path): ... 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/openpyxl/openpyxl/reader/strings.pyi: -------------------------------------------------------------------------------- 1 | def read_string_table(xml_source): ... 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/openpyxl/openpyxl/worksheet/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/openpyxl/openpyxl/writer/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/openpyxl/openpyxl/writer/theme.pyi: -------------------------------------------------------------------------------- 1 | theme_xml: str 2 | 3 | def write_theme(): ... 4 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/opentracing/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "2.4.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/opentracing/opentracing/ext/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/opentracing/opentracing/ext/tags.pyi: -------------------------------------------------------------------------------- 1 | from ..tags import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/opentracing/opentracing/harness/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/opentracing/opentracing/scope_managers/constants.pyi: -------------------------------------------------------------------------------- 1 | ACTIVE_ATTR: str 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/paramiko/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "2.11.*" 2 | requires = ["types-cryptography"] 3 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/parsimonious/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "0.9.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/passlib/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "1.7.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/passlib/passlib/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/passlib/passlib/crypto/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/passlib/passlib/crypto/scrypt/_gen_files.pyi: -------------------------------------------------------------------------------- 1 | def main() -> None: ... 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/passlib/passlib/crypto/scrypt/_salsa.pyi: -------------------------------------------------------------------------------- 1 | def salsa20(input): ... 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/passlib/passlib/ext/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/passlib/passlib/ext/django/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/passlib/passlib/handlers/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/passpy/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "1.0.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pep8-naming/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "0.13.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/polib/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "1.1.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/protobuf/google/protobuf/__init__.pyi: -------------------------------------------------------------------------------- 1 | __version__: str 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/protobuf/google/protobuf/compiler/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/protobuf/google/protobuf/internal/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/protobuf/google/protobuf/util/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/psutil/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "5.9.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/psycopg2/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "2.9.*" -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pyOpenSSL/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "22.0.*" 2 | requires = ["types-cryptography"] 3 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pyOpenSSL/OpenSSL/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pyRFC3339/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pyaudio/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "0.2.*" 2 | 3 | [tool.stubtest] 4 | apt_dependencies = ["portaudio19-dev"] 5 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pyflakes/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "2.5.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pyflakes/pyflakes/__init__.pyi: -------------------------------------------------------------------------------- 1 | __version__: str 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pytest-lazy-fixture/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "0.6.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/python-dateutil/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "2.8.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/python-dateutil/dateutil/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/python-nmap/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "0.7.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/python-nmap/nmap/__init__.pyi: -------------------------------------------------------------------------------- 1 | from .nmap import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/python-slugify/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "6.1.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pytz/pytz/tzfile.pyi: -------------------------------------------------------------------------------- 1 | def build_tzinfo(zone, fp): ... 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pyvmomi/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "7.0.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pyvmomi/pyVmomi/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/redis/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "4.3.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/regex/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "2022.8.17" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/regex/regex/__init__.pyi: -------------------------------------------------------------------------------- 1 | from .regex import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/selenium/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "3.141.*" 2 | obsolete_since = "4.1.2" 3 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/selenium/selenium/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/selenium/selenium/webdriver/android/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/selenium/selenium/webdriver/blackberry/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/selenium/selenium/webdriver/chrome/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/selenium/selenium/webdriver/common/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/selenium/selenium/webdriver/common/actions/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/selenium/selenium/webdriver/common/html5/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/selenium/selenium/webdriver/edge/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/selenium/selenium/webdriver/firefox/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/selenium/selenium/webdriver/ie/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/selenium/selenium/webdriver/opera/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/selenium/selenium/webdriver/phantomjs/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/selenium/selenium/webdriver/remote/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/selenium/selenium/webdriver/safari/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/selenium/selenium/webdriver/safari/permissions.pyi: -------------------------------------------------------------------------------- 1 | class Permission: 2 | GET_USER_MEDIA: str 3 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/selenium/selenium/webdriver/support/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/selenium/selenium/webdriver/webkitgtk/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/setuptools/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "65.3.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/setuptools/setuptools/_distutils/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/setuptools/setuptools/_distutils/command/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/setuptools/setuptools/_distutils/debug.pyi: -------------------------------------------------------------------------------- 1 | DEBUG: bool | None 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/setuptools/setuptools/command/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/setuptools/setuptools/command/py36compat.pyi: -------------------------------------------------------------------------------- 1 | class sdist_add_defaults: ... 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/setuptools/setuptools/launch.pyi: -------------------------------------------------------------------------------- 1 | def run() -> None: ... 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/setuptools/setuptools/version.pyi: -------------------------------------------------------------------------------- 1 | __version__: str 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/simplejson/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "3.17.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/singledispatch/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "3.7.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/six/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "1.16.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/six/six/moves/BaseHTTPServer.pyi: -------------------------------------------------------------------------------- 1 | from http.server import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/six/six/moves/CGIHTTPServer.pyi: -------------------------------------------------------------------------------- 1 | from http.server import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/six/six/moves/SimpleHTTPServer.pyi: -------------------------------------------------------------------------------- 1 | from http.server import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/six/six/moves/_thread.pyi: -------------------------------------------------------------------------------- 1 | from _thread import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/six/six/moves/builtins.pyi: -------------------------------------------------------------------------------- 1 | from builtins import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/six/six/moves/cPickle.pyi: -------------------------------------------------------------------------------- 1 | from pickle import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/six/six/moves/collections_abc.pyi: -------------------------------------------------------------------------------- 1 | from collections.abc import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/six/six/moves/copyreg.pyi: -------------------------------------------------------------------------------- 1 | from copyreg import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/six/six/moves/email_mime_base.pyi: -------------------------------------------------------------------------------- 1 | from email.mime.base import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/six/six/moves/email_mime_multipart.pyi: -------------------------------------------------------------------------------- 1 | from email.mime.multipart import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/six/six/moves/email_mime_nonmultipart.pyi: -------------------------------------------------------------------------------- 1 | from email.mime.nonmultipart import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/six/six/moves/email_mime_text.pyi: -------------------------------------------------------------------------------- 1 | from email.mime.text import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/six/six/moves/html_entities.pyi: -------------------------------------------------------------------------------- 1 | from html.entities import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/six/six/moves/html_parser.pyi: -------------------------------------------------------------------------------- 1 | from html.parser import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/six/six/moves/http_cookiejar.pyi: -------------------------------------------------------------------------------- 1 | from http.cookiejar import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/six/six/moves/queue.pyi: -------------------------------------------------------------------------------- 1 | from queue import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/six/six/moves/reprlib.pyi: -------------------------------------------------------------------------------- 1 | from reprlib import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/six/six/moves/socketserver.pyi: -------------------------------------------------------------------------------- 1 | from socketserver import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/six/six/moves/tkinter.pyi: -------------------------------------------------------------------------------- 1 | from tkinter import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/six/six/moves/tkinter_commondialog.pyi: -------------------------------------------------------------------------------- 1 | from tkinter.commondialog import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/six/six/moves/tkinter_constants.pyi: -------------------------------------------------------------------------------- 1 | from tkinter.constants import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/six/six/moves/tkinter_dialog.pyi: -------------------------------------------------------------------------------- 1 | from tkinter.dialog import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/six/six/moves/tkinter_filedialog.pyi: -------------------------------------------------------------------------------- 1 | from tkinter.filedialog import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/six/six/moves/tkinter_tkfiledialog.pyi: -------------------------------------------------------------------------------- 1 | from tkinter.filedialog import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/six/six/moves/tkinter_ttk.pyi: -------------------------------------------------------------------------------- 1 | from tkinter.ttk import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/six/six/moves/urllib_error.pyi: -------------------------------------------------------------------------------- 1 | from urllib.error import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/six/six/moves/urllib_parse.pyi: -------------------------------------------------------------------------------- 1 | from urllib.parse import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/six/six/moves/urllib_request.pyi: -------------------------------------------------------------------------------- 1 | from .urllib.request import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/six/six/moves/urllib_response.pyi: -------------------------------------------------------------------------------- 1 | from .urllib.response import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/six/six/moves/urllib_robotparser.pyi: -------------------------------------------------------------------------------- 1 | from urllib.robotparser import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/stripe/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "3.5.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/stripe/stripe/version.pyi: -------------------------------------------------------------------------------- 1 | VERSION: str 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/toml/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "0.10.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/tqdm/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "4.64.*" 2 | 3 | [tool.stubtest] 4 | extras = ["slack", "telegram"] 5 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/tqdm/tqdm/_dist_ver.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/tqdm/tqdm/_main.pyi: -------------------------------------------------------------------------------- 1 | from .cli import * 2 | 3 | # Names in __all__ with no definition: 4 | # main 5 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/tqdm/tqdm/version.pyi: -------------------------------------------------------------------------------- 1 | __version__: str 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/ttkthemes/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "3.2.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/typed-ast/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "1.5.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/typed-ast/typed_ast/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/urllib3/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "1.26.*" 2 | 3 | [tool.stubtest] 4 | extras = ["socks"] 5 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/urllib3/urllib3/contrib/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/urllib3/urllib3/packages/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/urllib3/urllib3/util/response.pyi: -------------------------------------------------------------------------------- 1 | def is_fp_closed(obj): ... 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/vobject/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "0.9.*" 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/waitress/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "2.1.*" 2 | requires = [] 3 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/zxcvbn/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "4.4.*" 2 | -------------------------------------------------------------------------------- /packages/pyright/.gitignore: -------------------------------------------------------------------------------- 1 | # Copied from the root directory during publish. 2 | README.md 3 | LICENSE.txt 4 | -------------------------------------------------------------------------------- /packages/pyright/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright/index.js -------------------------------------------------------------------------------- /packages/pyright/langserver.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright/langserver.index.js -------------------------------------------------------------------------------- /packages/pyright/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright/package-lock.json -------------------------------------------------------------------------------- /packages/pyright/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright/package.json -------------------------------------------------------------------------------- /packages/pyright/src/langserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright/src/langserver.ts -------------------------------------------------------------------------------- /packages/pyright/src/pyright.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright/src/pyright.ts -------------------------------------------------------------------------------- /packages/pyright/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright/tsconfig.json -------------------------------------------------------------------------------- /packages/pyright/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/pyright/webpack.config.js -------------------------------------------------------------------------------- /packages/vscode-pyright/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/vscode-pyright/.vscodeignore -------------------------------------------------------------------------------- /packages/vscode-pyright/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/vscode-pyright/CHANGELOG.md -------------------------------------------------------------------------------- /packages/vscode-pyright/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/vscode-pyright/LICENSE.txt -------------------------------------------------------------------------------- /packages/vscode-pyright/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/vscode-pyright/README.md -------------------------------------------------------------------------------- /packages/vscode-pyright/build/checkPackage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/vscode-pyright/build/checkPackage.js -------------------------------------------------------------------------------- /packages/vscode-pyright/build/renamePackage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/vscode-pyright/build/renamePackage.js -------------------------------------------------------------------------------- /packages/vscode-pyright/images/pyright-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/vscode-pyright/images/pyright-icon.png -------------------------------------------------------------------------------- /packages/vscode-pyright/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/vscode-pyright/package-lock.json -------------------------------------------------------------------------------- /packages/vscode-pyright/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/vscode-pyright/package.json -------------------------------------------------------------------------------- /packages/vscode-pyright/src/cancellationUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/vscode-pyright/src/cancellationUtils.ts -------------------------------------------------------------------------------- /packages/vscode-pyright/src/compiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/vscode-pyright/src/compiler.ts -------------------------------------------------------------------------------- /packages/vscode-pyright/src/cythonServices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/vscode-pyright/src/cythonServices.ts -------------------------------------------------------------------------------- /packages/vscode-pyright/src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/vscode-pyright/src/extension.ts -------------------------------------------------------------------------------- /packages/vscode-pyright/src/installer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/vscode-pyright/src/installer.ts -------------------------------------------------------------------------------- /packages/vscode-pyright/src/semanticTokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/vscode-pyright/src/semanticTokens.ts -------------------------------------------------------------------------------- /packages/vscode-pyright/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/vscode-pyright/src/server.ts -------------------------------------------------------------------------------- /packages/vscode-pyright/src/statusBar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/vscode-pyright/src/statusBar.ts -------------------------------------------------------------------------------- /packages/vscode-pyright/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/vscode-pyright/tsconfig.json -------------------------------------------------------------------------------- /packages/vscode-pyright/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/packages/vscode-pyright/webpack.config.js -------------------------------------------------------------------------------- /specs/dataclass_transforms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/specs/dataclass_transforms.md -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/cyright/HEAD/tsconfig.json --------------------------------------------------------------------------------