├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── actions │ ├── cfs-npm-authenticate │ │ └── action.yml │ ├── cfs-npm-cache │ │ └── action.yml │ ├── cfs-npm-install │ │ └── action.yml │ ├── choose-npm-install │ │ └── action.yml │ └── standard-npm-install │ │ └── action.yml └── workflows │ ├── build.yml │ ├── mypy_primer_comment.yaml │ ├── mypy_primer_pr.yaml │ ├── mypy_primer_push.yaml │ └── validation.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── docs ├── .nojekyll ├── README.md ├── _navbar.md ├── _sidebar.md ├── build-debug.md ├── builtins.md ├── ci-integration.md ├── command-line.md ├── commands.md ├── comments.md ├── configuration.md ├── features.md ├── getting-started.md ├── img │ ├── CreateTypeStub1.png │ ├── CreateTypeStub2.png │ ├── PyrightLarge.png │ ├── PyrightSmall.png │ └── pyright_badge.svg ├── import-resolution.md ├── import-statements.md ├── index.html ├── installation.md ├── internals.md ├── mypy-comparison.md ├── settings.md ├── type-concepts-advanced.md ├── type-concepts.md ├── type-inference.md ├── type-stubs.md └── typed-libraries.md ├── lerna.json ├── package.json ├── packages ├── pyright-internal │ ├── debug.js │ ├── jest.config.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── analyzer │ │ │ ├── analysis.ts │ │ │ ├── analyzerFileInfo.ts │ │ │ ├── analyzerNodeInfo.ts │ │ │ ├── backgroundAnalysisProgram.ts │ │ │ ├── binder.ts │ │ │ ├── cacheManager.ts │ │ │ ├── checker.ts │ │ │ ├── circularDependency.ts │ │ │ ├── codeFlowEngine.ts │ │ │ ├── codeFlowTypes.ts │ │ │ ├── codeFlowUtils.ts │ │ │ ├── commentUtils.ts │ │ │ ├── constraintSolution.ts │ │ │ ├── constraintSolver.ts │ │ │ ├── constraintTracker.ts │ │ │ ├── constructorTransform.ts │ │ │ ├── constructors.ts │ │ │ ├── dataClasses.ts │ │ │ ├── declaration.ts │ │ │ ├── declarationUtils.ts │ │ │ ├── decorators.ts │ │ │ ├── deprecatedSymbols.ts │ │ │ ├── docStringConversion.ts │ │ │ ├── docStringUtils.ts │ │ │ ├── enums.ts │ │ │ ├── functionTransform.ts │ │ │ ├── importLogger.ts │ │ │ ├── importResolver.ts │ │ │ ├── importResult.ts │ │ │ ├── importStatementUtils.ts │ │ │ ├── namedTuples.ts │ │ │ ├── operations.ts │ │ │ ├── packageTypeReport.ts │ │ │ ├── packageTypeVerifier.ts │ │ │ ├── parameterUtils.ts │ │ │ ├── parentDirectoryCache.ts │ │ │ ├── parseTreeCleaner.ts │ │ │ ├── parseTreeUtils.ts │ │ │ ├── parseTreeWalker.ts │ │ │ ├── patternMatching.ts │ │ │ ├── program.ts │ │ │ ├── programTypes.ts │ │ │ ├── properties.ts │ │ │ ├── protocols.ts │ │ │ ├── pyTypedUtils.ts │ │ │ ├── pythonPathUtils.ts │ │ │ ├── scope.ts │ │ │ ├── scopeUtils.ts │ │ │ ├── sentinel.ts │ │ │ ├── service.ts │ │ │ ├── serviceUtils.ts │ │ │ ├── sourceEnumerator.ts │ │ │ ├── sourceFile.ts │ │ │ ├── sourceFileInfo.ts │ │ │ ├── sourceFileInfoUtils.ts │ │ │ ├── sourceMapper.ts │ │ │ ├── sourceMapperUtils.ts │ │ │ ├── staticExpressions.ts │ │ │ ├── symbol.ts │ │ │ ├── symbolNameUtils.ts │ │ │ ├── symbolUtils.ts │ │ │ ├── testWalker.ts │ │ │ ├── tracePrinter.ts │ │ │ ├── tuples.ts │ │ │ ├── typeCacheUtils.ts │ │ │ ├── typeComplexity.ts │ │ │ ├── typeDocStringUtils.ts │ │ │ ├── typeEvaluator.ts │ │ │ ├── typeEvaluatorTypes.ts │ │ │ ├── typeEvaluatorWithTracker.ts │ │ │ ├── typeGuards.ts │ │ │ ├── typePrinter.ts │ │ │ ├── typePrinterUtils.ts │ │ │ ├── typeStubWriter.ts │ │ │ ├── typeUtils.ts │ │ │ ├── typeWalker.ts │ │ │ ├── typedDicts.ts │ │ │ └── types.ts │ │ ├── backgroundAnalysis.ts │ │ ├── backgroundAnalysisBase.ts │ │ ├── backgroundThreadBase.ts │ │ ├── commands │ │ │ ├── commandController.ts │ │ │ ├── commandResult.ts │ │ │ ├── commands.ts │ │ │ ├── createTypeStub.ts │ │ │ ├── dumpFileDebugInfoCommand.ts │ │ │ ├── quickActionCommand.ts │ │ │ └── restartServer.ts │ │ ├── common │ │ │ ├── asyncInitialization.ts │ │ │ ├── cancellationUtils.ts │ │ │ ├── caseSensitivityDetector.ts │ │ │ ├── charCodes.ts │ │ │ ├── chokidarFileWatcherProvider.ts │ │ │ ├── collectionUtils.ts │ │ │ ├── commandLineOptions.ts │ │ │ ├── commandUtils.ts │ │ │ ├── configOptions.ts │ │ │ ├── console.ts │ │ │ ├── core.ts │ │ │ ├── crypto.ts │ │ │ ├── debug.ts │ │ │ ├── deferred.ts │ │ │ ├── diagnostic.ts │ │ │ ├── diagnosticRules.ts │ │ │ ├── diagnosticSink.ts │ │ │ ├── docRange.ts │ │ │ ├── docStringService.ts │ │ │ ├── editAction.ts │ │ │ ├── envVarUtils.ts │ │ │ ├── extensibility.ts │ │ │ ├── extensions.ts │ │ │ ├── fileBasedCancellationUtils.ts │ │ │ ├── fileSystem.ts │ │ │ ├── fileWatcher.ts │ │ │ ├── fullAccessHost.ts │ │ │ ├── host.ts │ │ │ ├── languageServerInterface.ts │ │ │ ├── logTracker.ts │ │ │ ├── lspUtils.ts │ │ │ ├── memUtils.ts │ │ │ ├── pathConsts.ts │ │ │ ├── pathUtils.ts │ │ │ ├── positionUtils.ts │ │ │ ├── processUtils.ts │ │ │ ├── progressReporter.ts │ │ │ ├── pythonVersion.ts │ │ │ ├── realFileSystem.ts │ │ │ ├── serviceKeys.ts │ │ │ ├── serviceProvider.ts │ │ │ ├── serviceProviderExtensions.ts │ │ │ ├── streamUtils.ts │ │ │ ├── stringUtils.ts │ │ │ ├── textEditTracker.ts │ │ │ ├── textRange.ts │ │ │ ├── textRangeCollection.ts │ │ │ ├── timing.ts │ │ │ ├── tomlUtils.ts │ │ │ ├── uri │ │ │ │ ├── baseUri.ts │ │ │ │ ├── constantUri.ts │ │ │ │ ├── emptyUri.ts │ │ │ │ ├── fileUri.ts │ │ │ │ ├── memoization.ts │ │ │ │ ├── uri.ts │ │ │ │ ├── uriMap.ts │ │ │ │ ├── uriUtils.ts │ │ │ │ └── webUri.ts │ │ │ └── workspaceEditUtils.ts │ │ ├── languageServerBase.ts │ │ ├── languageService │ │ │ ├── analyzerServiceExecutor.ts │ │ │ ├── autoImporter.ts │ │ │ ├── callHierarchyProvider.ts │ │ │ ├── codeActionProvider.ts │ │ │ ├── completionProvider.ts │ │ │ ├── completionProviderUtils.ts │ │ │ ├── definitionProvider.ts │ │ │ ├── documentHighlightProvider.ts │ │ │ ├── documentSymbolCollector.ts │ │ │ ├── documentSymbolProvider.ts │ │ │ ├── dynamicFeature.ts │ │ │ ├── fileWatcherDynamicFeature.ts │ │ │ ├── hoverProvider.ts │ │ │ ├── importSorter.ts │ │ │ ├── navigationUtils.ts │ │ │ ├── pullDiagnosticsDynamicFeature.ts │ │ │ ├── quickActions.ts │ │ │ ├── referencesProvider.ts │ │ │ ├── renameProvider.ts │ │ │ ├── signatureHelpProvider.ts │ │ │ ├── symbolIndexer.ts │ │ │ ├── tooltipUtils.ts │ │ │ └── workspaceSymbolProvider.ts │ │ ├── localization │ │ │ ├── localize.ts │ │ │ ├── package.nls.cs.json │ │ │ ├── package.nls.de.json │ │ │ ├── package.nls.en-us.json │ │ │ ├── package.nls.es.json │ │ │ ├── package.nls.fr.json │ │ │ ├── package.nls.it.json │ │ │ ├── package.nls.ja.json │ │ │ ├── package.nls.ko.json │ │ │ ├── package.nls.pl.json │ │ │ ├── package.nls.pt-br.json │ │ │ ├── package.nls.qps-ploc.json │ │ │ ├── package.nls.ru.json │ │ │ ├── package.nls.tr.json │ │ │ ├── package.nls.zh-cn.json │ │ │ └── package.nls.zh-tw.json │ │ ├── nodeMain.ts │ │ ├── nodeServer.ts │ │ ├── parser │ │ │ ├── characterStream.ts │ │ │ ├── characters.ts │ │ │ ├── parseNodeUtils.ts │ │ │ ├── parseNodes.ts │ │ │ ├── parser.ts │ │ │ ├── stringTokenUtils.ts │ │ │ ├── tokenizer.ts │ │ │ ├── tokenizerTypes.ts │ │ │ └── unicode.ts │ │ ├── partialStubService.ts │ │ ├── pprof │ │ │ └── profiler.ts │ │ ├── pyright.ts │ │ ├── pyrightFileSystem.ts │ │ ├── readonlyAugmentedFileSystem.ts │ │ ├── server.ts │ │ ├── tests │ │ │ ├── cacheManager.test.ts │ │ │ ├── chainedSourceFiles.test.ts │ │ │ ├── checker.test.ts │ │ │ ├── classDeclaration.test.ts │ │ │ ├── collectionUtils.test.ts │ │ │ ├── common.test.ts │ │ │ ├── completions.test.ts │ │ │ ├── config.test.ts │ │ │ ├── debug.test.ts │ │ │ ├── deferred.test.ts │ │ │ ├── diagnosticOverrides.test.ts │ │ │ ├── diagnostics.test.ts │ │ │ ├── docStringConversion.test.ts │ │ │ ├── documentSymbolCollector.test.ts │ │ │ ├── envVarUtils.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.autoimport.unicode.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.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.dunderNew.Inheritance.fourslash.ts │ │ │ │ ├── completions.dunderNew.fourslash.ts │ │ │ │ ├── completions.enums.members.fourslash.ts │ │ │ │ ├── completions.errorNodes.fourslash.ts │ │ │ │ ├── completions.excluded.fourslash.ts │ │ │ │ ├── completions.fourslash.ts │ │ │ │ ├── completions.fstring.fourslash.ts │ │ │ │ ├── completions.fstring.stringLiteral.fourslash.ts │ │ │ │ ├── completions.fuzzyMatching.fourslash.ts │ │ │ │ ├── completions.import.dunderNames.fourslash.ts │ │ │ │ ├── completions.import.duplicates.fourslash.ts │ │ │ │ ├── completions.import.exactMatch.fourslash.ts │ │ │ │ ├── completions.import.excludeAlreadyImported.fourslash.ts │ │ │ │ ├── completions.import.interimFile.fourslash.disabled.ts │ │ │ │ ├── completions.import.privateNoPytyped.fourslash.ts │ │ │ │ ├── completions.import.pytyped.fourslash.ts │ │ │ │ ├── completions.import.pytypedLocal.fourslash.ts │ │ │ │ ├── completions.import.submodule.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.dataclasses.converter.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.namespaceImportWithInit.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 │ │ │ │ ├── highlightreferences.attributes.fourslash.ts │ │ │ │ ├── hover.async.fourslash.ts │ │ │ │ ├── hover.builtinDocstrings.builtinInheritedByBuiltin.fourslash.ts │ │ │ │ ├── hover.builtinDocstrings.builtinInheritedByUserCode.fourslash.ts │ │ │ │ ├── hover.builtinDocstrings.fourslash.ts │ │ │ │ ├── hover.class.docString.fourslash.ts │ │ │ │ ├── hover.classNoInit.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.stringFormat.fourslash.ts │ │ │ │ ├── hover.docFromSrc.stubs-package.fourslash.ts │ │ │ │ ├── hover.docFromSrc.typeshed.fourslash.ts │ │ │ │ ├── hover.docstring.alias.fourslash.ts │ │ │ │ ├── hover.docstring.links.fourslash.ts │ │ │ │ ├── hover.docstring.overloads.fourslash.ts │ │ │ │ ├── hover.docstring.parameter.fourslash.ts │ │ │ │ ├── hover.docstring.split.fourslash.ts │ │ │ │ ├── hover.dunderNew.basic.fourslash.ts │ │ │ │ ├── hover.dunderNew.inheritance.fourslash.ts │ │ │ │ ├── hover.dunderNew.inheritance2.fourslash.ts │ │ │ │ ├── hover.dunderNew.overloads.fourslash.ts │ │ │ │ ├── hover.dunderNew.withInit.fourslash.ts │ │ │ │ ├── hover.formatted.fourslash.ts │ │ │ │ ├── hover.fourslash.ts │ │ │ │ ├── hover.import.django.view.fourslash.ts │ │ │ │ ├── hover.import.fourslash.ts │ │ │ │ ├── hover.inferred.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.overloadedFunction.fourslash.ts │ │ │ │ ├── hover.plainText.fourslash.ts │ │ │ │ ├── hover.slots.fourslash.ts │ │ │ │ ├── hover.typedDict.get.fourslash.ts │ │ │ │ ├── hover.typedDict.key.fourslash.ts │ │ │ │ ├── hover.unpackedTypedDict.key.fourslash.ts │ │ │ │ ├── hover.variable.docString.fourslash.ts │ │ │ │ ├── hover.wildcardimports.fourslash.ts │ │ │ │ ├── import.multipart.fourslash.ts │ │ │ │ ├── import.multipart2.fourslash.ts │ │ │ │ ├── import.nameconflict.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.command.trycatchImport.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.function.untitledFile.fourslash.ts │ │ │ │ ├── rename.init.fourslash.ts │ │ │ │ ├── rename.library.fourslash.ts │ │ │ │ ├── rename.library.sourceAndStub.fourslash.ts │ │ │ │ ├── rename.multipleDecl.fourslash.ts │ │ │ │ ├── rename.parens.fourslash.ts │ │ │ │ ├── rename.sourceAndStub.fourslash.ts │ │ │ │ ├── rename.string.excluded.fourslash.ts │ │ │ │ ├── rename.string.fourslash.ts │ │ │ │ ├── rename.typeParams.fourslash.ts │ │ │ │ ├── showcallhierarchy.incomingCalls.aliasedFunction.fourslash.ts │ │ │ │ ├── showcallhierarchy.incomingCalls.aliasedVariable.fourslash.ts │ │ │ │ ├── showcallhierarchy.incomingCalls.function.fourslash.ts │ │ │ │ ├── showcallhierarchy.outgoingCalls.aliasedFunction1.fourslash.ts │ │ │ │ ├── showcallhierarchy.outgoingCalls.aliasedFunction2.fourslash.ts │ │ │ │ ├── showcallhierarchy.outgoingCalls.function.fourslash.ts │ │ │ │ ├── signature.builtinDocstrings.fourslash.ts │ │ │ │ ├── signature.complicated.fourslash.ts │ │ │ │ ├── signature.cornercases.fourslash.ts │ │ │ │ ├── signature.dataclassAlias.fourslash.ts │ │ │ │ ├── signature.docstrings.fourslash.ts │ │ │ │ ├── signature.docstrings.overloaded.fourslash.ts │ │ │ │ ├── signature.docstrings.wildcardimports.fourslash.ts │ │ │ │ ├── signature.dunderNew.fourslash.ts │ │ │ │ ├── signature.overload.fourslash.ts │ │ │ │ ├── signature.simple.fourslash.ts │ │ │ │ ├── tsconfig.json │ │ │ │ ├── typeVerifier.fourslash.ts │ │ │ │ └── typings │ │ │ │ │ └── fourslash.d.ts │ │ │ ├── harness │ │ │ │ ├── fourslash │ │ │ │ │ ├── fourSlashParser.ts │ │ │ │ │ ├── fourSlashTypes.ts │ │ │ │ │ ├── runner.ts │ │ │ │ │ ├── testLanguageService.ts │ │ │ │ │ ├── testState.Consts.ts │ │ │ │ │ ├── testState.ts │ │ │ │ │ ├── testStateUtils.ts │ │ │ │ │ └── workspaceEditTestUtils.ts │ │ │ │ ├── testAccessHost.ts │ │ │ │ ├── testHost.ts │ │ │ │ ├── utils.ts │ │ │ │ └── vfs │ │ │ │ │ ├── factory.ts │ │ │ │ │ ├── filesystem.ts │ │ │ │ │ └── pathValidation.ts │ │ │ ├── hoverProvider.test.ts │ │ │ ├── importResolver.test.ts │ │ │ ├── importStatementUtils.test.ts │ │ │ ├── ipythonMode.test.ts │ │ │ ├── languageServer.test.ts │ │ │ ├── localizer.test.ts │ │ │ ├── logger.test.ts │ │ │ ├── lsp │ │ │ │ ├── customLsp.ts │ │ │ │ ├── languageServer.ts │ │ │ │ ├── languageServerTestUtils.ts │ │ │ │ ├── main.ts │ │ │ │ └── webpack.testserver.config.js │ │ │ ├── parseTreeUtils.test.ts │ │ │ ├── parser.test.ts │ │ │ ├── pathUtils.test.ts │ │ │ ├── positionUtils.test.ts │ │ │ ├── pyrightFileSystem.test.ts │ │ │ ├── samples │ │ │ │ ├── abstractClass1.py │ │ │ │ ├── abstractClass10.py │ │ │ │ ├── abstractClass11.py │ │ │ │ ├── abstractClass2.py │ │ │ │ ├── abstractClass3.py │ │ │ │ ├── abstractClass4.py │ │ │ │ ├── abstractClass5.py │ │ │ │ ├── abstractClass6.py │ │ │ │ ├── abstractClass7.py │ │ │ │ ├── abstractClass8.py │ │ │ │ ├── abstractClass9.py │ │ │ │ ├── annotated1.py │ │ │ │ ├── annotated2.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 │ │ │ │ ├── any1.py │ │ │ │ ├── assert1.py │ │ │ │ ├── assertType1.py │ │ │ │ ├── assignment1.py │ │ │ │ ├── assignment10.py │ │ │ │ ├── assignment11.py │ │ │ │ ├── assignment12.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 │ │ │ │ ├── autoVariance3.py │ │ │ │ ├── autoVariance4.py │ │ │ │ ├── autoVariance5.py │ │ │ │ ├── await1.py │ │ │ │ ├── await2.py │ │ │ │ ├── await3.py │ │ │ │ ├── badToken1.py │ │ │ │ ├── builtins1.py │ │ │ │ ├── builtins2.py │ │ │ │ ├── call1.py │ │ │ │ ├── call10.py │ │ │ │ ├── call11.py │ │ │ │ ├── call12.py │ │ │ │ ├── call13.py │ │ │ │ ├── call14.py │ │ │ │ ├── call15.py │ │ │ │ ├── call16.py │ │ │ │ ├── call17.py │ │ │ │ ├── call2.py │ │ │ │ ├── call3.py │ │ │ │ ├── call4.py │ │ │ │ ├── call5.py │ │ │ │ ├── call6.py │ │ │ │ ├── call7.py │ │ │ │ ├── call8.py │ │ │ │ ├── call9.py │ │ │ │ ├── callSite1.py │ │ │ │ ├── callSite2.py │ │ │ │ ├── callSite3.py │ │ │ │ ├── callable1.py │ │ │ │ ├── callable2.py │ │ │ │ ├── callable3.py │ │ │ │ ├── callable4.py │ │ │ │ ├── callable5.py │ │ │ │ ├── callable6.py │ │ │ │ ├── callable7.py │ │ │ │ ├── callbackProtocol1.py │ │ │ │ ├── callbackProtocol10.py │ │ │ │ ├── callbackProtocol11.py │ │ │ │ ├── callbackProtocol2.py │ │ │ │ ├── callbackProtocol3.py │ │ │ │ ├── callbackProtocol4.py │ │ │ │ ├── callbackProtocol5.py │ │ │ │ ├── callbackProtocol6.py │ │ │ │ ├── callbackProtocol7.py │ │ │ │ ├── callbackProtocol8.py │ │ │ │ ├── callbackProtocol9.py │ │ │ │ ├── capturedVariable1.py │ │ │ │ ├── capturedVariable2.py │ │ │ │ ├── circular1.py │ │ │ │ ├── circular2.py │ │ │ │ ├── circularBaseClass.py │ │ │ │ ├── classGetItem1.py │ │ │ │ ├── classVar1.py │ │ │ │ ├── classVar2.py │ │ │ │ ├── classVar3.py │ │ │ │ ├── classVar4.py │ │ │ │ ├── classVar5.py │ │ │ │ ├── classVar6.py │ │ │ │ ├── classVar7.py │ │ │ │ ├── classes1.py │ │ │ │ ├── classes10.py │ │ │ │ ├── classes11.py │ │ │ │ ├── classes3.py │ │ │ │ ├── classes4.py │ │ │ │ ├── classes5.py │ │ │ │ ├── classes6.py │ │ │ │ ├── classes7.py │ │ │ │ ├── classes8.py │ │ │ │ ├── classes9.py │ │ │ │ ├── codeFlow1.py │ │ │ │ ├── codeFlow2.py │ │ │ │ ├── codeFlow3.py │ │ │ │ ├── codeFlow4.py │ │ │ │ ├── codeFlow5.py │ │ │ │ ├── codeFlow6.py │ │ │ │ ├── codeFlow7.py │ │ │ │ ├── codeFlow8.py │ │ │ │ ├── codeFlow9.py │ │ │ │ ├── comparison1.py │ │ │ │ ├── comparison2.py │ │ │ │ ├── complex1.py │ │ │ │ ├── comprehension1.py │ │ │ │ ├── comprehension10.py │ │ │ │ ├── comprehension11.py │ │ │ │ ├── comprehension2.py │ │ │ │ ├── comprehension3.py │ │ │ │ ├── comprehension4.py │ │ │ │ ├── comprehension5.py │ │ │ │ ├── comprehension6.py │ │ │ │ ├── comprehension7.py │ │ │ │ ├── comprehension8.py │ │ │ │ ├── comprehension9.py │ │ │ │ ├── conditional1.py │ │ │ │ ├── constant1.py │ │ │ │ ├── constants1.py │ │ │ │ ├── constrainedTypeVar1.py │ │ │ │ ├── constrainedTypeVar10.py │ │ │ │ ├── constrainedTypeVar11.py │ │ │ │ ├── constrainedTypeVar12.py │ │ │ │ ├── constrainedTypeVar13.py │ │ │ │ ├── constrainedTypeVar14.py │ │ │ │ ├── constrainedTypeVar15.py │ │ │ │ ├── constrainedTypeVar16.py │ │ │ │ ├── constrainedTypeVar17.py │ │ │ │ ├── constrainedTypeVar18.py │ │ │ │ ├── constrainedTypeVar19.py │ │ │ │ ├── constrainedTypeVar2.py │ │ │ │ ├── constrainedTypeVar20.py │ │ │ │ ├── constrainedTypeVar3.py │ │ │ │ ├── constrainedTypeVar4.py │ │ │ │ ├── constrainedTypeVar5.py │ │ │ │ ├── constrainedTypeVar6.py │ │ │ │ ├── constrainedTypeVar7.py │ │ │ │ ├── constrainedTypeVar8.py │ │ │ │ ├── constrainedTypeVar9.py │ │ │ │ ├── constructor1.py │ │ │ │ ├── constructor10.py │ │ │ │ ├── constructor11.py │ │ │ │ ├── constructor12.py │ │ │ │ ├── constructor13.py │ │ │ │ ├── constructor14.py │ │ │ │ ├── constructor15.py │ │ │ │ ├── constructor16.py │ │ │ │ ├── constructor17.py │ │ │ │ ├── constructor18.py │ │ │ │ ├── constructor19.py │ │ │ │ ├── constructor2.py │ │ │ │ ├── constructor20.py │ │ │ │ ├── constructor21.py │ │ │ │ ├── constructor22.py │ │ │ │ ├── constructor23.py │ │ │ │ ├── constructor24.py │ │ │ │ ├── constructor25.py │ │ │ │ ├── constructor26.py │ │ │ │ ├── constructor27.py │ │ │ │ ├── constructor28.py │ │ │ │ ├── constructor29.py │ │ │ │ ├── constructor3.py │ │ │ │ ├── constructor30.py │ │ │ │ ├── constructor31.py │ │ │ │ ├── constructor32.py │ │ │ │ ├── constructor33.py │ │ │ │ ├── constructor4.py │ │ │ │ ├── constructor5.py │ │ │ │ ├── constructor6.py │ │ │ │ ├── constructor7.py │ │ │ │ ├── constructor9.py │ │ │ │ ├── constructorCallable1.py │ │ │ │ ├── constructorCallable2.py │ │ │ │ ├── coroutines1.py │ │ │ │ ├── coroutines2.py │ │ │ │ ├── coroutines3.py │ │ │ │ ├── coroutines4.py │ │ │ │ ├── dataclass1.py │ │ │ │ ├── dataclass10.py │ │ │ │ ├── dataclass11.py │ │ │ │ ├── dataclass12.py │ │ │ │ ├── dataclass13.py │ │ │ │ ├── dataclass14.py │ │ │ │ ├── dataclass15.py │ │ │ │ ├── dataclass16.py │ │ │ │ ├── dataclass17.py │ │ │ │ ├── dataclass18.py │ │ │ │ ├── dataclass2.py │ │ │ │ ├── dataclass3.py │ │ │ │ ├── dataclass4.py │ │ │ │ ├── dataclass5.py │ │ │ │ ├── dataclass6.py │ │ │ │ ├── dataclass7.py │ │ │ │ ├── dataclass8.py │ │ │ │ ├── dataclass9.py │ │ │ │ ├── dataclassConverter1.py │ │ │ │ ├── dataclassConverter2.py │ │ │ │ ├── dataclassConverter3.py │ │ │ │ ├── dataclassDescriptors1.py │ │ │ │ ├── dataclassDescriptors2.py │ │ │ │ ├── dataclassFrozen1.py │ │ │ │ ├── dataclassHash1.py │ │ │ │ ├── dataclassKwOnly1.py │ │ │ │ ├── dataclassNamedTuple1.py │ │ │ │ ├── dataclassNamedTuple2.py │ │ │ │ ├── dataclassPostInit1.py │ │ │ │ ├── dataclassReplace1.py │ │ │ │ ├── dataclassSlots1.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 │ │ │ │ ├── del2.py │ │ │ │ ├── deprecated2.py │ │ │ │ ├── deprecated3.py │ │ │ │ ├── deprecated4.py │ │ │ │ ├── deprecated5.py │ │ │ │ ├── deprecated6.py │ │ │ │ ├── deprecated7.py │ │ │ │ ├── deprecated8.py │ │ │ │ ├── deprecatedAlias1.py │ │ │ │ ├── deprecatedAlias2.py │ │ │ │ ├── descriptor1.py │ │ │ │ ├── descriptor2.py │ │ │ │ ├── descriptor3.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 │ │ │ │ ├── enum1.py │ │ │ │ ├── enum10.py │ │ │ │ ├── enum11.py │ │ │ │ ├── enum12.py │ │ │ │ ├── enum13.py │ │ │ │ ├── enum14.py │ │ │ │ ├── enum2.py │ │ │ │ ├── enum3.py │ │ │ │ ├── enum4.py │ │ │ │ ├── enum5.py │ │ │ │ ├── enum6.py │ │ │ │ ├── enum7.py │ │ │ │ ├── enum8.py │ │ │ │ ├── enum9.py │ │ │ │ ├── enumAuto1.py │ │ │ │ ├── enumGenNextValue1.py │ │ │ │ ├── exceptionGroup1.py │ │ │ │ ├── expression1.py │ │ │ │ ├── expression2.py │ │ │ │ ├── expression3.py │ │ │ │ ├── expression4.py │ │ │ │ ├── expression5.py │ │ │ │ ├── expression6.py │ │ │ │ ├── expression7.py │ │ │ │ ├── expression8.py │ │ │ │ ├── expression9.py │ │ │ │ ├── final1.py │ │ │ │ ├── final2.py │ │ │ │ ├── final3.py │ │ │ │ ├── final4.pyi │ │ │ │ ├── final5.py │ │ │ │ ├── final6.pyi │ │ │ │ ├── final7.py │ │ │ │ ├── final8.py │ │ │ │ ├── finallyExit1.py │ │ │ │ ├── forLoop1.py │ │ │ │ ├── forLoop2.py │ │ │ │ ├── fstring1.py │ │ │ │ ├── fstring2.py │ │ │ │ ├── fstring3.py │ │ │ │ ├── fstring4.py │ │ │ │ ├── fstring5.py │ │ │ │ ├── fstring6.py │ │ │ │ ├── function1.py │ │ │ │ ├── function10.py │ │ │ │ ├── function2.py │ │ │ │ ├── function3.py │ │ │ │ ├── function5.py │ │ │ │ ├── function6.py │ │ │ │ ├── function7.py │ │ │ │ ├── function8.py │ │ │ │ ├── function9.py │ │ │ │ ├── functionAnnotation1.py │ │ │ │ ├── functionAnnotation2.py │ │ │ │ ├── functionAnnotation3.py │ │ │ │ ├── functionAnnotation4.py │ │ │ │ ├── functionMember1.py │ │ │ │ ├── functionMember2.py │ │ │ │ ├── futureImport1.py │ │ │ │ ├── futureImport2.py │ │ │ │ ├── futureImport3.py │ │ │ │ ├── generator1.py │ │ │ │ ├── generator10.py │ │ │ │ ├── generator11.py │ │ │ │ ├── generator12.py │ │ │ │ ├── generator13.py │ │ │ │ ├── generator14.py │ │ │ │ ├── generator15.py │ │ │ │ ├── generator16.py │ │ │ │ ├── generator2.py │ │ │ │ ├── generator3.py │ │ │ │ ├── generator4.py │ │ │ │ ├── generator5.py │ │ │ │ ├── generator6.py │ │ │ │ ├── generator7.py │ │ │ │ ├── generator8.py │ │ │ │ ├── generator9.py │ │ │ │ ├── generic1.py │ │ │ │ ├── generic2.py │ │ │ │ ├── generic3.py │ │ │ │ ├── genericType1.py │ │ │ │ ├── genericType10.py │ │ │ │ ├── genericType11.py │ │ │ │ ├── genericType12.py │ │ │ │ ├── genericType13.py │ │ │ │ ├── genericType14.py │ │ │ │ ├── genericType15.py │ │ │ │ ├── genericType16.py │ │ │ │ ├── genericType17.py │ │ │ │ ├── genericType18.py │ │ │ │ ├── genericType19.py │ │ │ │ ├── genericType2.py │ │ │ │ ├── genericType20.py │ │ │ │ ├── genericType21.py │ │ │ │ ├── genericType22.py │ │ │ │ ├── genericType23.py │ │ │ │ ├── genericType24.py │ │ │ │ ├── genericType25.py │ │ │ │ ├── genericType26.py │ │ │ │ ├── genericType27.py │ │ │ │ ├── genericType28.py │ │ │ │ ├── genericType29.py │ │ │ │ ├── genericType3.py │ │ │ │ ├── genericType30.py │ │ │ │ ├── genericType31.py │ │ │ │ ├── genericType32.py │ │ │ │ ├── genericType33.py │ │ │ │ ├── genericType34.py │ │ │ │ ├── genericType35.py │ │ │ │ ├── genericType36.py │ │ │ │ ├── genericType37.py │ │ │ │ ├── genericType38.py │ │ │ │ ├── genericType39.py │ │ │ │ ├── genericType4.py │ │ │ │ ├── genericType40.py │ │ │ │ ├── genericType41.py │ │ │ │ ├── genericType42.py │ │ │ │ ├── genericType43.py │ │ │ │ ├── genericType44.py │ │ │ │ ├── genericType45.py │ │ │ │ ├── genericType46.py │ │ │ │ ├── genericType47.py │ │ │ │ ├── genericType5.py │ │ │ │ ├── genericType6.py │ │ │ │ ├── genericType7.py │ │ │ │ ├── genericType8.py │ │ │ │ ├── genericType9.py │ │ │ │ ├── hashability1.py │ │ │ │ ├── hashability2.py │ │ │ │ ├── hashability3.py │ │ │ │ ├── import1.py │ │ │ │ ├── import10.py │ │ │ │ ├── import11.py │ │ │ │ ├── import12.py │ │ │ │ ├── import13.py │ │ │ │ ├── import14.py │ │ │ │ ├── import15.py │ │ │ │ ├── import16.py │ │ │ │ ├── import17.py │ │ │ │ ├── import18.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 │ │ │ │ ├── inferredTypes2.py │ │ │ │ ├── inferredTypes3.py │ │ │ │ ├── initVar1.py │ │ │ │ ├── initsubclass1.py │ │ │ │ ├── initsubclass2.py │ │ │ │ ├── initsubclass3.py │ │ │ │ ├── isinstance1.py │ │ │ │ ├── isinstance2.py │ │ │ │ ├── isinstance3.py │ │ │ │ ├── isinstance4.py │ │ │ │ ├── isinstance5.py │ │ │ │ ├── isinstance6.py │ │ │ │ ├── kwargsUnpack1.py │ │ │ │ ├── lambda1.py │ │ │ │ ├── lambda10.py │ │ │ │ ├── lambda11.py │ │ │ │ ├── lambda12.py │ │ │ │ ├── lambda13.py │ │ │ │ ├── lambda14.py │ │ │ │ ├── lambda15.py │ │ │ │ ├── lambda2.py │ │ │ │ ├── lambda3.py │ │ │ │ ├── lambda4.py │ │ │ │ ├── lambda5.py │ │ │ │ ├── lambda6.py │ │ │ │ ├── lambda7.py │ │ │ │ ├── lambda8.py │ │ │ │ ├── lambda9.py │ │ │ │ ├── lines1.py │ │ │ │ ├── list1.py │ │ │ │ ├── list2.py │ │ │ │ ├── list3.py │ │ │ │ ├── literalString1.py │ │ │ │ ├── literalString2.py │ │ │ │ ├── literalString3.py │ │ │ │ ├── literals1.py │ │ │ │ ├── literals2.py │ │ │ │ ├── literals3.py │ │ │ │ ├── literals4.py │ │ │ │ ├── literals5.py │ │ │ │ ├── literals6.py │ │ │ │ ├── literals7.py │ │ │ │ ├── loop1.py │ │ │ │ ├── loop10.py │ │ │ │ ├── loop11.py │ │ │ │ ├── loop12.py │ │ │ │ ├── loop13.py │ │ │ │ ├── loop14.py │ │ │ │ ├── loop15.py │ │ │ │ ├── loop16.py │ │ │ │ ├── loop17.py │ │ │ │ ├── loop18.py │ │ │ │ ├── loop19.py │ │ │ │ ├── loop2.py │ │ │ │ ├── loop20.py │ │ │ │ ├── loop21.py │ │ │ │ ├── loop22.py │ │ │ │ ├── loop23.py │ │ │ │ ├── loop24.py │ │ │ │ ├── loop25.py │ │ │ │ ├── loop26.py │ │ │ │ ├── loop27.py │ │ │ │ ├── loop28.py │ │ │ │ ├── loop29.py │ │ │ │ ├── loop3.py │ │ │ │ ├── loop30.py │ │ │ │ ├── loop31.py │ │ │ │ ├── loop32.py │ │ │ │ ├── loop33.py │ │ │ │ ├── loop34.py │ │ │ │ ├── loop35.py │ │ │ │ ├── loop36.py │ │ │ │ ├── loop37.py │ │ │ │ ├── loop38.py │ │ │ │ ├── loop39.py │ │ │ │ ├── loop4.py │ │ │ │ ├── loop40.py │ │ │ │ ├── loop41.py │ │ │ │ ├── loop42.py │ │ │ │ ├── loop43.py │ │ │ │ ├── loop44.py │ │ │ │ ├── loop45.py │ │ │ │ ├── loop46.py │ │ │ │ ├── loop47.py │ │ │ │ ├── loop48.py │ │ │ │ ├── loop49.py │ │ │ │ ├── loop5.py │ │ │ │ ├── loop50.py │ │ │ │ ├── loop51.py │ │ │ │ ├── loop52.py │ │ │ │ ├── loop6.py │ │ │ │ ├── loop7.py │ │ │ │ ├── loop8.py │ │ │ │ ├── loop9.py │ │ │ │ ├── match1.py │ │ │ │ ├── match2.py │ │ │ │ ├── match3.py │ │ │ │ ├── matchClass1.py │ │ │ │ ├── matchClass2.py │ │ │ │ ├── matchClass3.py │ │ │ │ ├── matchClass4.py │ │ │ │ ├── matchClass5.py │ │ │ │ ├── matchClass6.py │ │ │ │ ├── matchClass7.py │ │ │ │ ├── matchClass8.py │ │ │ │ ├── matchExhaustion1.py │ │ │ │ ├── matchLiteral1.py │ │ │ │ ├── matchLiteral2.py │ │ │ │ ├── matchMapping1.py │ │ │ │ ├── matchSequence1.py │ │ │ │ ├── matchSequence2.py │ │ │ │ ├── matchUnnecessary1.py │ │ │ │ ├── matchValue1.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 │ │ │ │ ├── memberAccess21.py │ │ │ │ ├── memberAccess22.py │ │ │ │ ├── memberAccess23.py │ │ │ │ ├── memberAccess24.py │ │ │ │ ├── memberAccess25.py │ │ │ │ ├── memberAccess26.py │ │ │ │ ├── memberAccess27.py │ │ │ │ ├── memberAccess28.py │ │ │ │ ├── memberAccess3.py │ │ │ │ ├── memberAccess4.py │ │ │ │ ├── memberAccess5.py │ │ │ │ ├── memberAccess6.py │ │ │ │ ├── memberAccess7.py │ │ │ │ ├── memberAccess8.py │ │ │ │ ├── memberAccess9.py │ │ │ │ ├── metaclass1.py │ │ │ │ ├── metaclass10.py │ │ │ │ ├── metaclass11.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 │ │ │ │ ├── methodOverride5.py │ │ │ │ ├── methodOverride6.py │ │ │ │ ├── methods1.py │ │ │ │ ├── missingSuper1.py │ │ │ │ ├── missingTypeArg1.py │ │ │ │ ├── module1.py │ │ │ │ ├── module2.py │ │ │ │ ├── module3.py │ │ │ │ ├── mro1.py │ │ │ │ ├── mro2.py │ │ │ │ ├── mro3.py │ │ │ │ ├── mro4.py │ │ │ │ ├── nameBinding1.py │ │ │ │ ├── nameBinding2.py │ │ │ │ ├── nameBinding3.py │ │ │ │ ├── nameBinding4.py │ │ │ │ ├── nameBinding5.py │ │ │ │ ├── namedTuple1.py │ │ │ │ ├── namedTuple10.py │ │ │ │ ├── namedTuple11.py │ │ │ │ ├── namedTuple2.py │ │ │ │ ├── namedTuple3.py │ │ │ │ ├── namedTuple4.py │ │ │ │ ├── namedTuple5.py │ │ │ │ ├── namedTuple6.py │ │ │ │ ├── namedTuple7.py │ │ │ │ ├── namedTuple8.py │ │ │ │ ├── namedTuple9.py │ │ │ │ ├── never1.py │ │ │ │ ├── never2.py │ │ │ │ ├── newType1.py │ │ │ │ ├── newType2.py │ │ │ │ ├── newType3.py │ │ │ │ ├── newType4.py │ │ │ │ ├── newType5.py │ │ │ │ ├── newType6.py │ │ │ │ ├── newType7.py │ │ │ │ ├── noTypeCheck1.py │ │ │ │ ├── none1.py │ │ │ │ ├── none2.py │ │ │ │ ├── noreturn1.py │ │ │ │ ├── noreturn2.py │ │ │ │ ├── noreturn3.py │ │ │ │ ├── noreturn4.py │ │ │ │ ├── operator1.py │ │ │ │ ├── operator10.py │ │ │ │ ├── operator11.py │ │ │ │ ├── operator12.py │ │ │ │ ├── operator2.py │ │ │ │ ├── operator3.py │ │ │ │ ├── operator4.py │ │ │ │ ├── operator5.py │ │ │ │ ├── operator6.py │ │ │ │ ├── operator7.py │ │ │ │ ├── operator8.py │ │ │ │ ├── operator9.py │ │ │ │ ├── optional1.py │ │ │ │ ├── optional2.py │ │ │ │ ├── overload1.py │ │ │ │ ├── overload2.py │ │ │ │ ├── overload3.py │ │ │ │ ├── overload4.py │ │ │ │ ├── overload5.py │ │ │ │ ├── overloadCall1.py │ │ │ │ ├── overloadCall10.py │ │ │ │ ├── overloadCall2.py │ │ │ │ ├── overloadCall3.py │ │ │ │ ├── overloadCall4.py │ │ │ │ ├── overloadCall5.py │ │ │ │ ├── overloadCall6.py │ │ │ │ ├── overloadCall7.py │ │ │ │ ├── overloadCall8.py │ │ │ │ ├── overloadCall9.py │ │ │ │ ├── overloadImpl1.py │ │ │ │ ├── overloadImpl2.py │ │ │ │ ├── overloadOverlap1.py │ │ │ │ ├── overloadOverride1.py │ │ │ │ ├── override1.py │ │ │ │ ├── override2.py │ │ │ │ ├── package1 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── psyche.py │ │ │ │ │ ├── psyche │ │ │ │ │ │ └── pysche.py │ │ │ │ │ ├── sub.py │ │ │ │ │ ├── sub.pyi │ │ │ │ │ └── sub │ │ │ │ │ │ └── __init__.py │ │ │ │ ├── package2 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── module1.py │ │ │ │ │ ├── module2.py │ │ │ │ │ └── module3.py │ │ │ │ ├── paramInference1.py │ │ │ │ ├── paramInference2.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 │ │ │ │ ├── paramSpec39.py │ │ │ │ ├── paramSpec4.py │ │ │ │ ├── paramSpec40.py │ │ │ │ ├── paramSpec41.py │ │ │ │ ├── paramSpec42.py │ │ │ │ ├── paramSpec43.py │ │ │ │ ├── paramSpec44.py │ │ │ │ ├── paramSpec45.py │ │ │ │ ├── paramSpec46.py │ │ │ │ ├── paramSpec47.py │ │ │ │ ├── paramSpec48.py │ │ │ │ ├── paramSpec49.py │ │ │ │ ├── paramSpec5.py │ │ │ │ ├── paramSpec50.py │ │ │ │ ├── paramSpec51.py │ │ │ │ ├── paramSpec52.py │ │ │ │ ├── paramSpec53.py │ │ │ │ ├── paramSpec54.py │ │ │ │ ├── paramSpec55.py │ │ │ │ ├── paramSpec6.py │ │ │ │ ├── paramSpec7.py │ │ │ │ ├── paramSpec8.py │ │ │ │ ├── paramSpec9.py │ │ │ │ ├── paramType1.py │ │ │ │ ├── parameters1.py │ │ │ │ ├── parser1.py │ │ │ │ ├── parser2.py │ │ │ │ ├── parserRecovery1.py │ │ │ │ ├── parserRecovery2.py │ │ │ │ ├── parserRecovery3.py │ │ │ │ ├── partial1.py │ │ │ │ ├── partial2.py │ │ │ │ ├── partial3.py │ │ │ │ ├── partial4.py │ │ │ │ ├── partial5.py │ │ │ │ ├── partial6.py │ │ │ │ ├── partial7.py │ │ │ │ ├── partial8.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_all_config │ │ │ │ │ └── pyrightconfig.json │ │ │ │ ├── project_with_extended_config │ │ │ │ │ ├── baseconfig1.toml │ │ │ │ │ ├── pyproject.toml │ │ │ │ │ ├── sub2 │ │ │ │ │ │ └── baseconfig2.json │ │ │ │ │ ├── sub3 │ │ │ │ │ │ ├── baseconfig3.json │ │ │ │ │ │ └── stubs │ │ │ │ │ │ │ └── sample.pyi │ │ │ │ │ └── test.py │ │ │ │ ├── project_with_pyproject_toml │ │ │ │ │ └── pyproject.toml │ │ │ │ ├── project_with_pyproject_toml_platform │ │ │ │ │ └── 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 │ │ │ │ ├── property1.py │ │ │ │ ├── property10.py │ │ │ │ ├── property11.py │ │ │ │ ├── property12.py │ │ │ │ ├── property13.py │ │ │ │ ├── property14.py │ │ │ │ ├── property15.py │ │ │ │ ├── property16.py │ │ │ │ ├── property17.py │ │ │ │ ├── property18.py │ │ │ │ ├── property2.py │ │ │ │ ├── property3.py │ │ │ │ ├── property4.py │ │ │ │ ├── property5.py │ │ │ │ ├── property6.py │ │ │ │ ├── property7.py │ │ │ │ ├── property8.py │ │ │ │ ├── property9.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 │ │ │ │ ├── protocol28.py │ │ │ │ ├── protocol29.py │ │ │ │ ├── protocol3.py │ │ │ │ ├── protocol30.py │ │ │ │ ├── protocol31.py │ │ │ │ ├── protocol32.py │ │ │ │ ├── protocol33.py │ │ │ │ ├── protocol34.py │ │ │ │ ├── protocol35.py │ │ │ │ ├── protocol36.py │ │ │ │ ├── protocol37.py │ │ │ │ ├── protocol38.py │ │ │ │ ├── protocol39.py │ │ │ │ ├── protocol4.py │ │ │ │ ├── protocol40.py │ │ │ │ ├── protocol41.py │ │ │ │ ├── protocol42.py │ │ │ │ ├── protocol43.py │ │ │ │ ├── protocol44.py │ │ │ │ ├── protocol45.py │ │ │ │ ├── protocol46.py │ │ │ │ ├── protocol47.py │ │ │ │ ├── protocol48.py │ │ │ │ ├── protocol49.py │ │ │ │ ├── protocol5.py │ │ │ │ ├── protocol50.py │ │ │ │ ├── protocol51.py │ │ │ │ ├── protocol52.py │ │ │ │ ├── protocol53.py │ │ │ │ ├── protocol6.py │ │ │ │ ├── protocol7.py │ │ │ │ ├── protocol8.py │ │ │ │ ├── protocol9.py │ │ │ │ ├── protocolExplicit1.py │ │ │ │ ├── protocolExplicit2.pyi │ │ │ │ ├── protocolExplicit3.py │ │ │ │ ├── protocolModule1.py │ │ │ │ ├── protocolModule2.py │ │ │ │ ├── protocolModule3.py │ │ │ │ ├── protocolModule4.py │ │ │ │ ├── pseudoGeneric1.py │ │ │ │ ├── pseudoGeneric2.py │ │ │ │ ├── pseudoGeneric3.py │ │ │ │ ├── pyrightComment1.py │ │ │ │ ├── pyrightIgnore1.py │ │ │ │ ├── pyrightIgnore2.py │ │ │ │ ├── python2.py │ │ │ │ ├── recursiveTypeAlias1.py │ │ │ │ ├── recursiveTypeAlias10.py │ │ │ │ ├── recursiveTypeAlias11.py │ │ │ │ ├── recursiveTypeAlias12.py │ │ │ │ ├── recursiveTypeAlias13.py │ │ │ │ ├── recursiveTypeAlias14.py │ │ │ │ ├── recursiveTypeAlias15.py │ │ │ │ ├── recursiveTypeAlias16.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 │ │ │ │ ├── self1.py │ │ │ │ ├── self10.py │ │ │ │ ├── self11.py │ │ │ │ ├── self2.py │ │ │ │ ├── self3.py │ │ │ │ ├── self4.py │ │ │ │ ├── self5.py │ │ │ │ ├── self6.py │ │ │ │ ├── self7.py │ │ │ │ ├── self8.py │ │ │ │ ├── self9.py │ │ │ │ ├── sentinel1.py │ │ │ │ ├── slice1.py │ │ │ │ ├── slots1.py │ │ │ │ ├── slots2.py │ │ │ │ ├── slots3.py │ │ │ │ ├── slots4.py │ │ │ │ ├── solver1.py │ │ │ │ ├── solver10.py │ │ │ │ ├── solver11.py │ │ │ │ ├── solver12.py │ │ │ │ ├── solver13.py │ │ │ │ ├── solver14.py │ │ │ │ ├── solver15.py │ │ │ │ ├── solver16.py │ │ │ │ ├── solver17.py │ │ │ │ ├── solver18.py │ │ │ │ ├── solver19.py │ │ │ │ ├── solver2.py │ │ │ │ ├── solver20.py │ │ │ │ ├── solver21.py │ │ │ │ ├── solver22.py │ │ │ │ ├── solver23.py │ │ │ │ ├── solver24.py │ │ │ │ ├── solver25.py │ │ │ │ ├── solver26.py │ │ │ │ ├── solver27.py │ │ │ │ ├── solver28.py │ │ │ │ ├── solver29.py │ │ │ │ ├── solver3.py │ │ │ │ ├── solver30.py │ │ │ │ ├── solver31.py │ │ │ │ ├── solver32.py │ │ │ │ ├── solver33.py │ │ │ │ ├── solver34.py │ │ │ │ ├── solver35.py │ │ │ │ ├── solver36.py │ │ │ │ ├── solver37.py │ │ │ │ ├── solver38.py │ │ │ │ ├── solver39.py │ │ │ │ ├── solver4.py │ │ │ │ ├── solver40.py │ │ │ │ ├── solver41.py │ │ │ │ ├── solver42.py │ │ │ │ ├── solver43.py │ │ │ │ ├── solver44.py │ │ │ │ ├── solver45.py │ │ │ │ ├── solver5.py │ │ │ │ ├── solver6.py │ │ │ │ ├── solver7.py │ │ │ │ ├── solver8.py │ │ │ │ ├── solver9.py │ │ │ │ ├── solverHigherOrder1.py │ │ │ │ ├── solverHigherOrder10.py │ │ │ │ ├── solverHigherOrder11.py │ │ │ │ ├── solverHigherOrder12.py │ │ │ │ ├── solverHigherOrder13.py │ │ │ │ ├── solverHigherOrder14.py │ │ │ │ ├── solverHigherOrder2.py │ │ │ │ ├── solverHigherOrder3.py │ │ │ │ ├── solverHigherOrder4.py │ │ │ │ ├── solverHigherOrder5.py │ │ │ │ ├── solverHigherOrder6.py │ │ │ │ ├── solverHigherOrder7.py │ │ │ │ ├── solverHigherOrder8.py │ │ │ │ ├── solverHigherOrder9.py │ │ │ │ ├── solverLiteral1.py │ │ │ │ ├── solverLiteral2.py │ │ │ │ ├── solverScoring1.py │ │ │ │ ├── solverScoring2.py │ │ │ │ ├── solverScoring3.py │ │ │ │ ├── solverScoring4.py │ │ │ │ ├── solverUnknown1.py │ │ │ │ ├── specialForm1.py │ │ │ │ ├── specialForm2.py │ │ │ │ ├── specialForm3.py │ │ │ │ ├── specialForm4.py │ │ │ │ ├── specialization1.py │ │ │ │ ├── specialization2.py │ │ │ │ ├── staticExpression1.py │ │ │ │ ├── staticExpression2.py │ │ │ │ ├── strings1.py │ │ │ │ ├── strings2.py │ │ │ │ ├── stubs │ │ │ │ │ └── placeholder.txt │ │ │ │ ├── subscript1.py │ │ │ │ ├── subscript2.py │ │ │ │ ├── subscript3.py │ │ │ │ ├── subscript4.py │ │ │ │ ├── suiteExpectedColon1.py │ │ │ │ ├── suiteExpectedColon2.py │ │ │ │ ├── suiteExpectedColon3.py │ │ │ │ ├── super1.py │ │ │ │ ├── super10.py │ │ │ │ ├── super11.py │ │ │ │ ├── super12.py │ │ │ │ ├── super13.py │ │ │ │ ├── super2.py │ │ │ │ ├── super3.py │ │ │ │ ├── super4.py │ │ │ │ ├── super5.py │ │ │ │ ├── super6.py │ │ │ │ ├── super7.py │ │ │ │ ├── super8.py │ │ │ │ ├── super9.py │ │ │ │ ├── test_file1.py │ │ │ │ ├── totalOrdering1.py │ │ │ │ ├── tryExcept1.py │ │ │ │ ├── tryExcept10.py │ │ │ │ ├── tryExcept11.py │ │ │ │ ├── tryExcept12.py │ │ │ │ ├── tryExcept2.py │ │ │ │ ├── tryExcept3.py │ │ │ │ ├── tryExcept4.py │ │ │ │ ├── tryExcept5.py │ │ │ │ ├── tryExcept6.py │ │ │ │ ├── tryExcept7.py │ │ │ │ ├── tryExcept8.py │ │ │ │ ├── tryExcept9.py │ │ │ │ ├── tstring1.py │ │ │ │ ├── tstring2.py │ │ │ │ ├── tuple1.py │ │ │ │ ├── tuple10.py │ │ │ │ ├── tuple11.py │ │ │ │ ├── tuple12.py │ │ │ │ ├── tuple13.py │ │ │ │ ├── tuple15.py │ │ │ │ ├── tuple16.py │ │ │ │ ├── tuple17.py │ │ │ │ ├── tuple18.py │ │ │ │ ├── tuple19.py │ │ │ │ ├── tuple2.py │ │ │ │ ├── tuple3.py │ │ │ │ ├── tuple4.py │ │ │ │ ├── tuple5.py │ │ │ │ ├── tuple6.py │ │ │ │ ├── tuple7.py │ │ │ │ ├── tuple8.py │ │ │ │ ├── tuple9.py │ │ │ │ ├── tupleUnpack1.py │ │ │ │ ├── tupleUnpack2.py │ │ │ │ ├── tupleUnpack3.py │ │ │ │ ├── tupleUnpack4.py │ │ │ │ ├── tupleUnpack5.py │ │ │ │ ├── type1.py │ │ │ │ ├── typeAlias1.py │ │ │ │ ├── typeAlias10.py │ │ │ │ ├── typeAlias11.py │ │ │ │ ├── typeAlias12.py │ │ │ │ ├── typeAlias13.py │ │ │ │ ├── typeAlias14.py │ │ │ │ ├── typeAlias15.py │ │ │ │ ├── typeAlias16.py │ │ │ │ ├── typeAlias17.py │ │ │ │ ├── typeAlias18.py │ │ │ │ ├── typeAlias19.py │ │ │ │ ├── typeAlias2.py │ │ │ │ ├── typeAlias20.py │ │ │ │ ├── typeAlias21.py │ │ │ │ ├── typeAlias22.py │ │ │ │ ├── typeAlias3.py │ │ │ │ ├── typeAlias4.py │ │ │ │ ├── typeAlias5.py │ │ │ │ ├── typeAlias6.py │ │ │ │ ├── typeAlias7.py │ │ │ │ ├── typeAlias8.py │ │ │ │ ├── typeAlias9.py │ │ │ │ ├── typeAliasStatement1.py │ │ │ │ ├── typeAliasStatement2.py │ │ │ │ ├── typeAliasStatement3.py │ │ │ │ ├── typeAliasStatement4.py │ │ │ │ ├── typeAliasStatement5.py │ │ │ │ ├── typeAliasType1.py │ │ │ │ ├── typeAliasType2.py │ │ │ │ ├── typeCheckOnly1.py │ │ │ │ ├── typeForm1.py │ │ │ │ ├── typeForm2.py │ │ │ │ ├── typeForm3.py │ │ │ │ ├── typeForm4.py │ │ │ │ ├── typeForm5.py │ │ │ │ ├── typeForm6.py │ │ │ │ ├── typeForm7.py │ │ │ │ ├── typeGuard1.py │ │ │ │ ├── typeGuard2.py │ │ │ │ ├── typeGuard3.py │ │ │ │ ├── typeIgnore1.py │ │ │ │ ├── typeIgnore2.py │ │ │ │ ├── typeIgnore3.py │ │ │ │ ├── typeIgnore4.py │ │ │ │ ├── typeIgnore5.py │ │ │ │ ├── typeIs1.py │ │ │ │ ├── typeIs2.py │ │ │ │ ├── typeIs3.py │ │ │ │ ├── typeIs4.py │ │ │ │ ├── typeNarrowing1.py │ │ │ │ ├── typeNarrowing2.py │ │ │ │ ├── typeNarrowing3.py │ │ │ │ ├── typeNarrowing4.py │ │ │ │ ├── typeNarrowing5.py │ │ │ │ ├── typeNarrowing6.py │ │ │ │ ├── typeNarrowing7.py │ │ │ │ ├── typeNarrowing8.py │ │ │ │ ├── typeNarrowingAssert1.py │ │ │ │ ├── typeNarrowingCallable1.py │ │ │ │ ├── typeNarrowingEnum1.py │ │ │ │ ├── typeNarrowingEnum2.py │ │ │ │ ├── typeNarrowingFalsy1.py │ │ │ │ ├── typeNarrowingIn1.py │ │ │ │ ├── typeNarrowingIn2.py │ │ │ │ ├── typeNarrowingIsClass1.py │ │ │ │ ├── typeNarrowingIsEllipsis1.py │ │ │ │ ├── typeNarrowingIsNone1.py │ │ │ │ ├── typeNarrowingIsNone2.py │ │ │ │ ├── typeNarrowingIsNoneTuple1.py │ │ │ │ ├── typeNarrowingIsNoneTuple2.py │ │ │ │ ├── typeNarrowingIsinstance1.py │ │ │ │ ├── typeNarrowingIsinstance10.py │ │ │ │ ├── typeNarrowingIsinstance11.py │ │ │ │ ├── typeNarrowingIsinstance12.py │ │ │ │ ├── typeNarrowingIsinstance13.py │ │ │ │ ├── typeNarrowingIsinstance14.py │ │ │ │ ├── typeNarrowingIsinstance15.py │ │ │ │ ├── typeNarrowingIsinstance16.py │ │ │ │ ├── typeNarrowingIsinstance17.py │ │ │ │ ├── typeNarrowingIsinstance18.py │ │ │ │ ├── typeNarrowingIsinstance19.py │ │ │ │ ├── typeNarrowingIsinstance2.py │ │ │ │ ├── typeNarrowingIsinstance20.py │ │ │ │ ├── typeNarrowingIsinstance21.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 │ │ │ │ ├── typeNarrowingTypeEquals1.py │ │ │ │ ├── typeNarrowingTypeIs1.py │ │ │ │ ├── typeNarrowingTypedDict1.py │ │ │ │ ├── typeNarrowingTypedDict2.py │ │ │ │ ├── typeNarrowingTypedDict3.py │ │ │ │ ├── typeParams1.py │ │ │ │ ├── typeParams2.py │ │ │ │ ├── typeParams3.py │ │ │ │ ├── typeParams4.py │ │ │ │ ├── typeParams5.py │ │ │ │ ├── typeParams6.py │ │ │ │ ├── typeParams7.py │ │ │ │ ├── typeParams8.py │ │ │ │ ├── typePrinter1.py │ │ │ │ ├── typePrinter2.py │ │ │ │ ├── typePrinter3.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 │ │ │ │ ├── typeVarDefault1.py │ │ │ │ ├── typeVarDefault2.py │ │ │ │ ├── typeVarDefault3.py │ │ │ │ ├── typeVarDefault4.py │ │ │ │ ├── typeVarDefault5.py │ │ │ │ ├── typeVarDefaultClass1.py │ │ │ │ ├── typeVarDefaultClass2.py │ │ │ │ ├── typeVarDefaultClass3.py │ │ │ │ ├── typeVarDefaultClass4.py │ │ │ │ ├── typeVarDefaultFunction1.py │ │ │ │ ├── typeVarDefaultFunction2.py │ │ │ │ ├── typeVarDefaultFunction3.py │ │ │ │ ├── typeVarDefaultTypeAlias1.py │ │ │ │ ├── typeVarDefaultTypeAlias2.py │ │ │ │ ├── typeVarDefaultTypeAlias3.py │ │ │ │ ├── typeVarTuple1.py │ │ │ │ ├── typeVarTuple10.py │ │ │ │ ├── typeVarTuple11.py │ │ │ │ ├── typeVarTuple12.py │ │ │ │ ├── typeVarTuple13.py │ │ │ │ ├── typeVarTuple14.py │ │ │ │ ├── typeVarTuple15.py │ │ │ │ ├── typeVarTuple16.py │ │ │ │ ├── typeVarTuple17.py │ │ │ │ ├── typeVarTuple18.py │ │ │ │ ├── typeVarTuple19.py │ │ │ │ ├── typeVarTuple2.py │ │ │ │ ├── typeVarTuple20.py │ │ │ │ ├── typeVarTuple21.py │ │ │ │ ├── typeVarTuple22.py │ │ │ │ ├── typeVarTuple23.py │ │ │ │ ├── typeVarTuple24.py │ │ │ │ ├── typeVarTuple25.py │ │ │ │ ├── typeVarTuple26.py │ │ │ │ ├── typeVarTuple27.py │ │ │ │ ├── typeVarTuple28.py │ │ │ │ ├── typeVarTuple29.py │ │ │ │ ├── typeVarTuple3.py │ │ │ │ ├── typeVarTuple30.py │ │ │ │ ├── typeVarTuple4.py │ │ │ │ ├── typeVarTuple5.py │ │ │ │ ├── typeVarTuple6.py │ │ │ │ ├── typeVarTuple7.py │ │ │ │ ├── typeVarTuple8.py │ │ │ │ ├── typeVarTuple9.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 │ │ │ │ ├── typedDict22.py │ │ │ │ ├── typedDict23.py │ │ │ │ ├── typedDict24.py │ │ │ │ ├── typedDict25.py │ │ │ │ ├── typedDict3.py │ │ │ │ ├── typedDict4.py │ │ │ │ ├── typedDict5.py │ │ │ │ ├── typedDict6.py │ │ │ │ ├── typedDict7.py │ │ │ │ ├── typedDict8.py │ │ │ │ ├── typedDict9.py │ │ │ │ ├── typedDictClosed1.py │ │ │ │ ├── typedDictClosed10.py │ │ │ │ ├── typedDictClosed2.py │ │ │ │ ├── typedDictClosed3.py │ │ │ │ ├── typedDictClosed4.py │ │ │ │ ├── typedDictClosed5.py │ │ │ │ ├── typedDictClosed6.py │ │ │ │ ├── typedDictClosed7.py │ │ │ │ ├── typedDictClosed8.py │ │ │ │ ├── typedDictClosed9.py │ │ │ │ ├── typedDictInline1.py │ │ │ │ ├── typedDictReadOnly1.py │ │ │ │ ├── typedDictReadOnly2.py │ │ │ │ ├── unbound1.py │ │ │ │ ├── unbound2.py │ │ │ │ ├── unbound3.py │ │ │ │ ├── unbound4.py │ │ │ │ ├── unbound5.py │ │ │ │ ├── unbound6.py │ │ │ │ ├── unicode1.py │ │ │ │ ├── uninitializedVariable1.py │ │ │ │ ├── uninitializedVariable2.py │ │ │ │ ├── uninitializedVariable3.py │ │ │ │ ├── unions1.py │ │ │ │ ├── unions2.py │ │ │ │ ├── unions3.py │ │ │ │ ├── unions4.py │ │ │ │ ├── unions5.py │ │ │ │ ├── unions6.py │ │ │ │ ├── unnecessaryCast1.py │ │ │ │ ├── unnecessaryContains1.py │ │ │ │ ├── unnecessaryIsInstance1.py │ │ │ │ ├── unnecessaryIsInstance2.py │ │ │ │ ├── unnecessaryIsSubclass1.py │ │ │ │ ├── unpack1.py │ │ │ │ ├── unpack2.py │ │ │ │ ├── unpack3.py │ │ │ │ ├── unpack4.py │ │ │ │ ├── unpack5.py │ │ │ │ ├── unreachable1.py │ │ │ │ ├── unusedCallResult1.py │ │ │ │ ├── unusedCoroutine1.py │ │ │ │ ├── unusedExpression1.py │ │ │ │ ├── unusedImport1.py │ │ │ │ ├── unusedImport2.py │ │ │ │ ├── unusedVariable1.py │ │ │ │ ├── with1.py │ │ │ │ ├── with2.py │ │ │ │ ├── with3.py │ │ │ │ ├── with4.py │ │ │ │ ├── with5.py │ │ │ │ ├── with6.py │ │ │ │ └── zipfs │ │ │ │ │ ├── bad.egg │ │ │ │ │ ├── bad.jar │ │ │ │ │ ├── bad.zip │ │ │ │ │ ├── basic.egg │ │ │ │ │ ├── basic.jar │ │ │ │ │ ├── basic.zip │ │ │ │ │ ├── corrupt.egg │ │ │ │ │ ├── corrupt.jar │ │ │ │ │ └── corrupt.zip │ │ │ ├── serialization.test.ts │ │ │ ├── service.test.ts │ │ │ ├── signatureHelp.test.ts │ │ │ ├── sourceFile.test.ts │ │ │ ├── sourceMapperUtils.test.ts │ │ │ ├── stringUtils.test.ts │ │ │ ├── symbolNameUtils.test.ts │ │ │ ├── testState.test.ts │ │ │ ├── testStateUtils.ts │ │ │ ├── testUtils.ts │ │ │ ├── textEditUtil.test.ts │ │ │ ├── textRange.test.ts │ │ │ ├── tokenizer.test.ts │ │ │ ├── typeEvaluator1.test.ts │ │ │ ├── typeEvaluator2.test.ts │ │ │ ├── typeEvaluator3.test.ts │ │ │ ├── typeEvaluator4.test.ts │ │ │ ├── typeEvaluator5.test.ts │ │ │ ├── typeEvaluator6.test.ts │ │ │ ├── typeEvaluator7.test.ts │ │ │ ├── typeEvaluator8.test.ts │ │ │ ├── typePrinter.test.ts │ │ │ ├── uri.test.ts │ │ │ ├── workspaceEditUtils.test.ts │ │ │ └── zipfs.test.ts │ │ ├── types.ts │ │ └── workspaceFactory.ts │ ├── tsconfig.json │ ├── typeshed-fallback │ │ ├── LICENSE │ │ ├── README.md │ │ ├── commit.txt │ │ ├── stdlib │ │ │ ├── VERSIONS │ │ │ ├── __future__.pyi │ │ │ ├── __main__.pyi │ │ │ ├── _ast.pyi │ │ │ ├── _asyncio.pyi │ │ │ ├── _bisect.pyi │ │ │ ├── _blake2.pyi │ │ │ ├── _bootlocale.pyi │ │ │ ├── _bz2.pyi │ │ │ ├── _codecs.pyi │ │ │ ├── _collections_abc.pyi │ │ │ ├── _compat_pickle.pyi │ │ │ ├── _compression.pyi │ │ │ ├── _contextvars.pyi │ │ │ ├── _csv.pyi │ │ │ ├── _ctypes.pyi │ │ │ ├── _curses.pyi │ │ │ ├── _curses_panel.pyi │ │ │ ├── _dbm.pyi │ │ │ ├── _decimal.pyi │ │ │ ├── _frozen_importlib.pyi │ │ │ ├── _frozen_importlib_external.pyi │ │ │ ├── _gdbm.pyi │ │ │ ├── _hashlib.pyi │ │ │ ├── _heapq.pyi │ │ │ ├── _imp.pyi │ │ │ ├── _interpchannels.pyi │ │ │ ├── _interpqueues.pyi │ │ │ ├── _interpreters.pyi │ │ │ ├── _io.pyi │ │ │ ├── _json.pyi │ │ │ ├── _locale.pyi │ │ │ ├── _lsprof.pyi │ │ │ ├── _lzma.pyi │ │ │ ├── _markupbase.pyi │ │ │ ├── _msi.pyi │ │ │ ├── _multibytecodec.pyi │ │ │ ├── _operator.pyi │ │ │ ├── _osx_support.pyi │ │ │ ├── _pickle.pyi │ │ │ ├── _posixsubprocess.pyi │ │ │ ├── _py_abc.pyi │ │ │ ├── _pydecimal.pyi │ │ │ ├── _queue.pyi │ │ │ ├── _random.pyi │ │ │ ├── _sitebuiltins.pyi │ │ │ ├── _socket.pyi │ │ │ ├── _sqlite3.pyi │ │ │ ├── _ssl.pyi │ │ │ ├── _stat.pyi │ │ │ ├── _struct.pyi │ │ │ ├── _thread.pyi │ │ │ ├── _threading_local.pyi │ │ │ ├── _tkinter.pyi │ │ │ ├── _tracemalloc.pyi │ │ │ ├── _typeshed │ │ │ │ ├── README.md │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _type_checker_internals.pyi │ │ │ │ ├── dbapi.pyi │ │ │ │ ├── importlib.pyi │ │ │ │ ├── wsgi.pyi │ │ │ │ └── xml.pyi │ │ │ ├── _warnings.pyi │ │ │ ├── _weakref.pyi │ │ │ ├── _weakrefset.pyi │ │ │ ├── _winapi.pyi │ │ │ ├── _zstd.pyi │ │ │ ├── abc.pyi │ │ │ ├── aifc.pyi │ │ │ ├── annotationlib.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 │ │ │ │ ├── graph.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 │ │ │ │ ├── tools.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 │ │ │ ├── compression │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _common │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── _streams.pyi │ │ │ │ ├── bz2.pyi │ │ │ │ ├── gzip.pyi │ │ │ │ ├── lzma.pyi │ │ │ │ ├── zlib.pyi │ │ │ │ └── zstd │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── _zstdfile.pyi │ │ │ ├── concurrent │ │ │ │ ├── __init__.pyi │ │ │ │ ├── futures │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _base.pyi │ │ │ │ │ ├── interpreter.pyi │ │ │ │ │ ├── process.pyi │ │ │ │ │ └── thread.pyi │ │ │ │ └── interpreters │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _crossinterp.pyi │ │ │ │ │ └── _queues.pyi │ │ │ ├── configparser.pyi │ │ │ ├── contextlib.pyi │ │ │ ├── contextvars.pyi │ │ │ ├── copy.pyi │ │ │ ├── copyreg.pyi │ │ │ ├── crypt.pyi │ │ │ ├── csv.pyi │ │ │ ├── ctypes │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _endian.pyi │ │ │ │ ├── macholib │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── dyld.pyi │ │ │ │ │ ├── dylib.pyi │ │ │ │ │ └── framework.pyi │ │ │ │ ├── util.pyi │ │ │ │ └── wintypes.pyi │ │ │ ├── curses │ │ │ │ ├── __init__.pyi │ │ │ │ ├── ascii.pyi │ │ │ │ ├── has_key.pyi │ │ │ │ ├── panel.pyi │ │ │ │ └── textpad.pyi │ │ │ ├── dataclasses.pyi │ │ │ ├── datetime.pyi │ │ │ ├── dbm │ │ │ │ ├── __init__.pyi │ │ │ │ ├── dumb.pyi │ │ │ │ ├── gnu.pyi │ │ │ │ ├── ndbm.pyi │ │ │ │ └── sqlite3.pyi │ │ │ ├── decimal.pyi │ │ │ ├── difflib.pyi │ │ │ ├── dis.pyi │ │ │ ├── distutils │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _msvccompiler.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 │ │ │ ├── email │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _header_value_parser.pyi │ │ │ │ ├── _policybase.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 │ │ │ │ ├── aliases.pyi │ │ │ │ ├── ascii.pyi │ │ │ │ ├── base64_codec.pyi │ │ │ │ ├── big5.pyi │ │ │ │ ├── big5hkscs.pyi │ │ │ │ ├── bz2_codec.pyi │ │ │ │ ├── charmap.pyi │ │ │ │ ├── cp037.pyi │ │ │ │ ├── cp1006.pyi │ │ │ │ ├── cp1026.pyi │ │ │ │ ├── cp1125.pyi │ │ │ │ ├── cp1140.pyi │ │ │ │ ├── cp1250.pyi │ │ │ │ ├── cp1251.pyi │ │ │ │ ├── cp1252.pyi │ │ │ │ ├── cp1253.pyi │ │ │ │ ├── cp1254.pyi │ │ │ │ ├── cp1255.pyi │ │ │ │ ├── cp1256.pyi │ │ │ │ ├── cp1257.pyi │ │ │ │ ├── cp1258.pyi │ │ │ │ ├── cp273.pyi │ │ │ │ ├── cp424.pyi │ │ │ │ ├── cp437.pyi │ │ │ │ ├── cp500.pyi │ │ │ │ ├── cp720.pyi │ │ │ │ ├── cp737.pyi │ │ │ │ ├── cp775.pyi │ │ │ │ ├── cp850.pyi │ │ │ │ ├── cp852.pyi │ │ │ │ ├── cp855.pyi │ │ │ │ ├── cp856.pyi │ │ │ │ ├── cp857.pyi │ │ │ │ ├── cp858.pyi │ │ │ │ ├── cp860.pyi │ │ │ │ ├── cp861.pyi │ │ │ │ ├── cp862.pyi │ │ │ │ ├── cp863.pyi │ │ │ │ ├── cp864.pyi │ │ │ │ ├── cp865.pyi │ │ │ │ ├── cp866.pyi │ │ │ │ ├── cp869.pyi │ │ │ │ ├── cp874.pyi │ │ │ │ ├── cp875.pyi │ │ │ │ ├── cp932.pyi │ │ │ │ ├── cp949.pyi │ │ │ │ ├── cp950.pyi │ │ │ │ ├── euc_jis_2004.pyi │ │ │ │ ├── euc_jisx0213.pyi │ │ │ │ ├── euc_jp.pyi │ │ │ │ ├── euc_kr.pyi │ │ │ │ ├── gb18030.pyi │ │ │ │ ├── gb2312.pyi │ │ │ │ ├── gbk.pyi │ │ │ │ ├── hex_codec.pyi │ │ │ │ ├── hp_roman8.pyi │ │ │ │ ├── hz.pyi │ │ │ │ ├── idna.pyi │ │ │ │ ├── iso2022_jp.pyi │ │ │ │ ├── iso2022_jp_1.pyi │ │ │ │ ├── iso2022_jp_2.pyi │ │ │ │ ├── iso2022_jp_2004.pyi │ │ │ │ ├── iso2022_jp_3.pyi │ │ │ │ ├── iso2022_jp_ext.pyi │ │ │ │ ├── iso2022_kr.pyi │ │ │ │ ├── iso8859_1.pyi │ │ │ │ ├── iso8859_10.pyi │ │ │ │ ├── iso8859_11.pyi │ │ │ │ ├── iso8859_13.pyi │ │ │ │ ├── iso8859_14.pyi │ │ │ │ ├── iso8859_15.pyi │ │ │ │ ├── iso8859_16.pyi │ │ │ │ ├── iso8859_2.pyi │ │ │ │ ├── iso8859_3.pyi │ │ │ │ ├── iso8859_4.pyi │ │ │ │ ├── iso8859_5.pyi │ │ │ │ ├── iso8859_6.pyi │ │ │ │ ├── iso8859_7.pyi │ │ │ │ ├── iso8859_8.pyi │ │ │ │ ├── iso8859_9.pyi │ │ │ │ ├── johab.pyi │ │ │ │ ├── koi8_r.pyi │ │ │ │ ├── koi8_t.pyi │ │ │ │ ├── koi8_u.pyi │ │ │ │ ├── kz1048.pyi │ │ │ │ ├── latin_1.pyi │ │ │ │ ├── mac_arabic.pyi │ │ │ │ ├── mac_croatian.pyi │ │ │ │ ├── mac_cyrillic.pyi │ │ │ │ ├── mac_farsi.pyi │ │ │ │ ├── mac_greek.pyi │ │ │ │ ├── mac_iceland.pyi │ │ │ │ ├── mac_latin2.pyi │ │ │ │ ├── mac_roman.pyi │ │ │ │ ├── mac_romanian.pyi │ │ │ │ ├── mac_turkish.pyi │ │ │ │ ├── mbcs.pyi │ │ │ │ ├── oem.pyi │ │ │ │ ├── palmos.pyi │ │ │ │ ├── ptcp154.pyi │ │ │ │ ├── punycode.pyi │ │ │ │ ├── quopri_codec.pyi │ │ │ │ ├── raw_unicode_escape.pyi │ │ │ │ ├── rot_13.pyi │ │ │ │ ├── shift_jis.pyi │ │ │ │ ├── shift_jis_2004.pyi │ │ │ │ ├── shift_jisx0213.pyi │ │ │ │ ├── tis_620.pyi │ │ │ │ ├── undefined.pyi │ │ │ │ ├── unicode_escape.pyi │ │ │ │ ├── utf_16.pyi │ │ │ │ ├── utf_16_be.pyi │ │ │ │ ├── utf_16_le.pyi │ │ │ │ ├── utf_32.pyi │ │ │ │ ├── utf_32_be.pyi │ │ │ │ ├── utf_32_le.pyi │ │ │ │ ├── utf_7.pyi │ │ │ │ ├── utf_8.pyi │ │ │ │ ├── utf_8_sig.pyi │ │ │ │ ├── uu_codec.pyi │ │ │ │ └── zlib_codec.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 │ │ │ │ ├── _bootstrap.pyi │ │ │ │ ├── _bootstrap_external.pyi │ │ │ │ ├── abc.pyi │ │ │ │ ├── machinery.pyi │ │ │ │ ├── metadata │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _meta.pyi │ │ │ │ │ └── diagnose.pyi │ │ │ │ ├── readers.pyi │ │ │ │ ├── resources │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _common.pyi │ │ │ │ │ ├── _functional.pyi │ │ │ │ │ ├── abc.pyi │ │ │ │ │ ├── readers.pyi │ │ │ │ │ └── simple.pyi │ │ │ │ ├── simple.pyi │ │ │ │ └── util.pyi │ │ │ ├── inspect.pyi │ │ │ ├── io.pyi │ │ │ ├── ipaddress.pyi │ │ │ ├── itertools.pyi │ │ │ ├── json │ │ │ │ ├── __init__.pyi │ │ │ │ ├── decoder.pyi │ │ │ │ ├── encoder.pyi │ │ │ │ ├── scanner.pyi │ │ │ │ └── tool.pyi │ │ │ ├── keyword.pyi │ │ │ ├── lib2to3 │ │ │ │ ├── __init__.pyi │ │ │ │ ├── btm_matcher.pyi │ │ │ │ ├── fixer_base.pyi │ │ │ │ ├── fixes │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── fix_apply.pyi │ │ │ │ │ ├── fix_asserts.pyi │ │ │ │ │ ├── fix_basestring.pyi │ │ │ │ │ ├── fix_buffer.pyi │ │ │ │ │ ├── fix_dict.pyi │ │ │ │ │ ├── fix_except.pyi │ │ │ │ │ ├── fix_exec.pyi │ │ │ │ │ ├── fix_execfile.pyi │ │ │ │ │ ├── fix_exitfunc.pyi │ │ │ │ │ ├── fix_filter.pyi │ │ │ │ │ ├── fix_funcattrs.pyi │ │ │ │ │ ├── fix_future.pyi │ │ │ │ │ ├── fix_getcwdu.pyi │ │ │ │ │ ├── fix_has_key.pyi │ │ │ │ │ ├── fix_idioms.pyi │ │ │ │ │ ├── fix_import.pyi │ │ │ │ │ ├── fix_imports.pyi │ │ │ │ │ ├── fix_imports2.pyi │ │ │ │ │ ├── fix_input.pyi │ │ │ │ │ ├── fix_intern.pyi │ │ │ │ │ ├── fix_isinstance.pyi │ │ │ │ │ ├── fix_itertools.pyi │ │ │ │ │ ├── fix_itertools_imports.pyi │ │ │ │ │ ├── fix_long.pyi │ │ │ │ │ ├── fix_map.pyi │ │ │ │ │ ├── fix_metaclass.pyi │ │ │ │ │ ├── fix_methodattrs.pyi │ │ │ │ │ ├── fix_ne.pyi │ │ │ │ │ ├── fix_next.pyi │ │ │ │ │ ├── fix_nonzero.pyi │ │ │ │ │ ├── fix_numliterals.pyi │ │ │ │ │ ├── fix_operator.pyi │ │ │ │ │ ├── fix_paren.pyi │ │ │ │ │ ├── fix_print.pyi │ │ │ │ │ ├── fix_raise.pyi │ │ │ │ │ ├── fix_raw_input.pyi │ │ │ │ │ ├── fix_reduce.pyi │ │ │ │ │ ├── fix_reload.pyi │ │ │ │ │ ├── fix_renames.pyi │ │ │ │ │ ├── fix_repr.pyi │ │ │ │ │ ├── fix_set_literal.pyi │ │ │ │ │ ├── fix_standarderror.pyi │ │ │ │ │ ├── fix_sys_exc.pyi │ │ │ │ │ ├── fix_throw.pyi │ │ │ │ │ ├── fix_tuple_params.pyi │ │ │ │ │ ├── fix_types.pyi │ │ │ │ │ ├── fix_unicode.pyi │ │ │ │ │ ├── fix_urllib.pyi │ │ │ │ │ ├── fix_ws_comma.pyi │ │ │ │ │ ├── fix_xrange.pyi │ │ │ │ │ ├── fix_xreadlines.pyi │ │ │ │ │ └── fix_zip.pyi │ │ │ │ ├── main.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 │ │ │ ├── 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 │ │ │ ├── nt.pyi │ │ │ ├── ntpath.pyi │ │ │ ├── nturl2path.pyi │ │ │ ├── numbers.pyi │ │ │ ├── opcode.pyi │ │ │ ├── operator.pyi │ │ │ ├── optparse.pyi │ │ │ ├── os │ │ │ │ ├── __init__.pyi │ │ │ │ └── path.pyi │ │ │ ├── ossaudiodev.pyi │ │ │ ├── parser.pyi │ │ │ ├── pathlib │ │ │ │ ├── __init__.pyi │ │ │ │ └── types.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 │ │ │ │ └── dump.pyi │ │ │ ├── sre_compile.pyi │ │ │ ├── sre_constants.pyi │ │ │ ├── sre_parse.pyi │ │ │ ├── ssl.pyi │ │ │ ├── stat.pyi │ │ │ ├── statistics.pyi │ │ │ ├── string │ │ │ │ ├── __init__.pyi │ │ │ │ └── templatelib.pyi │ │ │ ├── stringprep.pyi │ │ │ ├── struct.pyi │ │ │ ├── subprocess.pyi │ │ │ ├── sunau.pyi │ │ │ ├── symbol.pyi │ │ │ ├── symtable.pyi │ │ │ ├── sys │ │ │ │ ├── __init__.pyi │ │ │ │ └── _monitoring.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 │ │ │ │ │ ├── _exceptions.pyi │ │ │ │ │ ├── expatreader.pyi │ │ │ │ │ ├── handler.pyi │ │ │ │ │ ├── saxutils.pyi │ │ │ │ │ └── xmlreader.pyi │ │ │ ├── xmlrpc │ │ │ │ ├── __init__.pyi │ │ │ │ ├── client.pyi │ │ │ │ └── server.pyi │ │ │ ├── xxlimited.pyi │ │ │ ├── zipapp.pyi │ │ │ ├── zipfile │ │ │ │ ├── __init__.pyi │ │ │ │ └── _path │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── glob.pyi │ │ │ ├── zipimport.pyi │ │ │ ├── zlib.pyi │ │ │ └── zoneinfo │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _common.pyi │ │ │ │ └── _tzpath.pyi │ │ └── stubs │ │ │ ├── Authlib │ │ │ ├── METADATA.toml │ │ │ └── authlib │ │ │ │ ├── __init__.pyi │ │ │ │ ├── common │ │ │ │ ├── __init__.pyi │ │ │ │ ├── encoding.pyi │ │ │ │ ├── errors.pyi │ │ │ │ ├── security.pyi │ │ │ │ └── urls.pyi │ │ │ │ ├── consts.pyi │ │ │ │ ├── deprecate.pyi │ │ │ │ ├── integrations │ │ │ │ ├── __init__.pyi │ │ │ │ └── base_client │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── async_app.pyi │ │ │ │ │ ├── async_openid.pyi │ │ │ │ │ ├── errors.pyi │ │ │ │ │ ├── framework_integration.pyi │ │ │ │ │ ├── registry.pyi │ │ │ │ │ ├── sync_app.pyi │ │ │ │ │ └── sync_openid.pyi │ │ │ │ ├── jose │ │ │ │ ├── __init__.pyi │ │ │ │ ├── drafts │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _jwe_algorithms.pyi │ │ │ │ │ ├── _jwe_enc_cryptodome.pyi │ │ │ │ │ └── _jwe_enc_cryptography.pyi │ │ │ │ ├── errors.pyi │ │ │ │ ├── jwk.pyi │ │ │ │ ├── rfc7515 │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── jws.pyi │ │ │ │ │ └── models.pyi │ │ │ │ ├── rfc7516 │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── jwe.pyi │ │ │ │ │ └── models.pyi │ │ │ │ ├── rfc7517 │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── _cryptography_key.pyi │ │ │ │ │ ├── asymmetric_key.pyi │ │ │ │ │ ├── base_key.pyi │ │ │ │ │ ├── jwk.pyi │ │ │ │ │ └── key_set.pyi │ │ │ │ ├── rfc7518 │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── ec_key.pyi │ │ │ │ │ ├── jwe_algs.pyi │ │ │ │ │ ├── jwe_encs.pyi │ │ │ │ │ ├── jwe_zips.pyi │ │ │ │ │ ├── jws_algs.pyi │ │ │ │ │ ├── oct_key.pyi │ │ │ │ │ ├── rsa_key.pyi │ │ │ │ │ └── util.pyi │ │ │ │ ├── rfc7519 │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── claims.pyi │ │ │ │ │ └── jwt.pyi │ │ │ │ ├── rfc8037 │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── jws_eddsa.pyi │ │ │ │ │ └── okp_key.pyi │ │ │ │ └── util.pyi │ │ │ │ ├── oauth1 │ │ │ │ ├── __init__.pyi │ │ │ │ ├── client.pyi │ │ │ │ ├── errors.pyi │ │ │ │ └── rfc5849 │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── authorization_server.pyi │ │ │ │ │ ├── base_server.pyi │ │ │ │ │ ├── client_auth.pyi │ │ │ │ │ ├── errors.pyi │ │ │ │ │ ├── models.pyi │ │ │ │ │ ├── parameters.pyi │ │ │ │ │ ├── resource_protector.pyi │ │ │ │ │ ├── rsa.pyi │ │ │ │ │ ├── signature.pyi │ │ │ │ │ ├── util.pyi │ │ │ │ │ └── wrapper.pyi │ │ │ │ ├── oauth2 │ │ │ │ ├── __init__.pyi │ │ │ │ ├── auth.pyi │ │ │ │ ├── base.pyi │ │ │ │ ├── client.pyi │ │ │ │ ├── rfc6749 │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── authenticate_client.pyi │ │ │ │ │ ├── authorization_server.pyi │ │ │ │ │ ├── errors.pyi │ │ │ │ │ ├── grants │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── authorization_code.pyi │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ ├── client_credentials.pyi │ │ │ │ │ │ ├── implicit.pyi │ │ │ │ │ │ ├── refresh_token.pyi │ │ │ │ │ │ └── resource_owner_password_credentials.pyi │ │ │ │ │ ├── hooks.pyi │ │ │ │ │ ├── models.pyi │ │ │ │ │ ├── parameters.pyi │ │ │ │ │ ├── requests.pyi │ │ │ │ │ ├── resource_protector.pyi │ │ │ │ │ ├── token_endpoint.pyi │ │ │ │ │ ├── util.pyi │ │ │ │ │ └── wrappers.pyi │ │ │ │ ├── rfc6750 │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── errors.pyi │ │ │ │ │ ├── parameters.pyi │ │ │ │ │ ├── token.pyi │ │ │ │ │ └── validator.pyi │ │ │ │ ├── rfc7009 │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── parameters.pyi │ │ │ │ │ └── revocation.pyi │ │ │ │ ├── rfc7521 │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── client.pyi │ │ │ │ ├── rfc7523 │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── assertion.pyi │ │ │ │ │ ├── auth.pyi │ │ │ │ │ ├── client.pyi │ │ │ │ │ ├── jwt_bearer.pyi │ │ │ │ │ ├── token.pyi │ │ │ │ │ └── validator.pyi │ │ │ │ ├── rfc7591 │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── claims.pyi │ │ │ │ │ ├── endpoint.pyi │ │ │ │ │ └── errors.pyi │ │ │ │ ├── rfc7592 │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── endpoint.pyi │ │ │ │ ├── rfc7636 │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── challenge.pyi │ │ │ │ ├── rfc7662 │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── introspection.pyi │ │ │ │ │ ├── models.pyi │ │ │ │ │ └── token_validator.pyi │ │ │ │ ├── rfc8414 │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── models.pyi │ │ │ │ │ └── well_known.pyi │ │ │ │ ├── rfc8628 │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── device_code.pyi │ │ │ │ │ ├── endpoint.pyi │ │ │ │ │ ├── errors.pyi │ │ │ │ │ └── models.pyi │ │ │ │ ├── rfc8693 │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── rfc9068 │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── claims.pyi │ │ │ │ │ ├── introspection.pyi │ │ │ │ │ ├── revocation.pyi │ │ │ │ │ ├── token.pyi │ │ │ │ │ └── token_validator.pyi │ │ │ │ ├── rfc9101 │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── authorization_server.pyi │ │ │ │ │ ├── discovery.pyi │ │ │ │ │ ├── errors.pyi │ │ │ │ │ └── registration.pyi │ │ │ │ └── rfc9207 │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── parameter.pyi │ │ │ │ └── oidc │ │ │ │ ├── __init__.pyi │ │ │ │ ├── core │ │ │ │ ├── __init__.pyi │ │ │ │ ├── claims.pyi │ │ │ │ ├── errors.pyi │ │ │ │ ├── grants │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── code.pyi │ │ │ │ │ ├── hybrid.pyi │ │ │ │ │ ├── implicit.pyi │ │ │ │ │ └── util.pyi │ │ │ │ ├── models.pyi │ │ │ │ ├── userinfo.pyi │ │ │ │ └── util.pyi │ │ │ │ ├── discovery │ │ │ │ ├── __init__.pyi │ │ │ │ ├── models.pyi │ │ │ │ └── well_known.pyi │ │ │ │ └── registration │ │ │ │ ├── __init__.pyi │ │ │ │ └── claims.pyi │ │ │ ├── Deprecated │ │ │ ├── METADATA.toml │ │ │ └── deprecated │ │ │ │ ├── __init__.pyi │ │ │ │ ├── classic.pyi │ │ │ │ └── sphinx.pyi │ │ │ ├── ExifRead │ │ │ ├── METADATA.toml │ │ │ └── exifread │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _types.pyi │ │ │ │ ├── classes.pyi │ │ │ │ ├── exceptions.pyi │ │ │ │ ├── exif_log.pyi │ │ │ │ ├── heic.pyi │ │ │ │ ├── jpeg.pyi │ │ │ │ ├── tags │ │ │ │ ├── __init__.pyi │ │ │ │ ├── exif.pyi │ │ │ │ └── makernote │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── apple.pyi │ │ │ │ │ ├── canon.pyi │ │ │ │ │ ├── casio.pyi │ │ │ │ │ ├── fujifilm.pyi │ │ │ │ │ ├── nikon.pyi │ │ │ │ │ └── olympus.pyi │ │ │ │ └── utils.pyi │ │ │ ├── Flask-Cors │ │ │ ├── METADATA.toml │ │ │ └── flask_cors │ │ │ │ ├── __init__.pyi │ │ │ │ ├── core.pyi │ │ │ │ ├── decorator.pyi │ │ │ │ ├── extension.pyi │ │ │ │ └── version.pyi │ │ │ ├── Flask-Migrate │ │ │ ├── METADATA.toml │ │ │ └── flask_migrate │ │ │ │ └── __init__.pyi │ │ │ ├── Flask-SocketIO │ │ │ ├── METADATA.toml │ │ │ └── flask_socketio │ │ │ │ ├── __init__.pyi │ │ │ │ ├── namespace.pyi │ │ │ │ └── test_client.pyi │ │ │ ├── JACK-Client │ │ │ ├── METADATA.toml │ │ │ └── jack │ │ │ │ └── __init__.pyi │ │ │ ├── Jetson.GPIO │ │ │ ├── Jetson │ │ │ │ ├── GPIO │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── constants.pyi │ │ │ │ │ ├── gpio.pyi │ │ │ │ │ ├── gpio_cdev.pyi │ │ │ │ │ ├── gpio_event.pyi │ │ │ │ │ ├── gpio_pin_data.pyi │ │ │ │ │ └── gpio_pinmux_lookup.pyi │ │ │ │ └── __init__.pyi │ │ │ └── METADATA.toml │ │ │ ├── Markdown │ │ │ ├── METADATA.toml │ │ │ └── markdown │ │ │ │ ├── __init__.pyi │ │ │ │ ├── __main__.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 │ │ │ │ ├── htmlparser.pyi │ │ │ │ ├── inlinepatterns.pyi │ │ │ │ ├── postprocessors.pyi │ │ │ │ ├── preprocessors.pyi │ │ │ │ ├── serializers.pyi │ │ │ │ ├── test_tools.pyi │ │ │ │ ├── treeprocessors.pyi │ │ │ │ └── util.pyi │ │ │ ├── PyAutoGUI │ │ │ ├── METADATA.toml │ │ │ └── pyautogui │ │ │ │ └── __init__.pyi │ │ │ ├── PyMeeus │ │ │ ├── METADATA.toml │ │ │ └── pymeeus │ │ │ │ ├── Angle.pyi │ │ │ │ ├── Coordinates.pyi │ │ │ │ ├── CurveFitting.pyi │ │ │ │ ├── Earth.pyi │ │ │ │ ├── Epoch.pyi │ │ │ │ ├── Interpolation.pyi │ │ │ │ ├── Jupiter.pyi │ │ │ │ ├── JupiterMoons.pyi │ │ │ │ ├── Mars.pyi │ │ │ │ ├── Mercury.pyi │ │ │ │ ├── Minor.pyi │ │ │ │ ├── Moon.pyi │ │ │ │ ├── Neptune.pyi │ │ │ │ ├── Pluto.pyi │ │ │ │ ├── Saturn.pyi │ │ │ │ ├── Sun.pyi │ │ │ │ ├── Uranus.pyi │ │ │ │ ├── Venus.pyi │ │ │ │ ├── __init__.pyi │ │ │ │ └── base.pyi │ │ │ ├── PyMySQL │ │ │ ├── METADATA.toml │ │ │ └── pymysql │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _auth.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 │ │ │ │ ├── optionfile.pyi │ │ │ │ ├── protocol.pyi │ │ │ │ └── times.pyi │ │ │ ├── PyScreeze │ │ │ ├── METADATA.toml │ │ │ └── pyscreeze │ │ │ │ └── __init__.pyi │ │ │ ├── PySocks │ │ │ ├── METADATA.toml │ │ │ ├── socks.pyi │ │ │ └── sockshandler.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 │ │ │ │ ├── javascript.pyi │ │ │ │ ├── jsx.pyi │ │ │ │ ├── kusto.pyi │ │ │ │ ├── ldap.pyi │ │ │ │ ├── lean.pyi │ │ │ │ ├── lisp.pyi │ │ │ │ ├── prql.pyi │ │ │ │ ├── vip.pyi │ │ │ │ └── vyper.pyi │ │ │ │ ├── modeline.pyi │ │ │ │ ├── plugin.pyi │ │ │ │ ├── regexopt.pyi │ │ │ │ ├── scanner.pyi │ │ │ │ ├── sphinxext.pyi │ │ │ │ ├── style.pyi │ │ │ │ ├── styles │ │ │ │ └── __init__.pyi │ │ │ │ ├── token.pyi │ │ │ │ ├── unistring.pyi │ │ │ │ └── util.pyi │ │ │ ├── RPi.GPIO │ │ │ ├── METADATA.toml │ │ │ └── RPi │ │ │ │ ├── GPIO │ │ │ │ └── __init__.pyi │ │ │ │ └── __init__.pyi │ │ │ ├── Send2Trash │ │ │ ├── METADATA.toml │ │ │ └── send2trash │ │ │ │ ├── __init__.pyi │ │ │ │ ├── __main__.pyi │ │ │ │ ├── exceptions.pyi │ │ │ │ └── util.pyi │ │ │ ├── TgCrypto │ │ │ ├── METADATA.toml │ │ │ └── tgcrypto │ │ │ │ └── __init__.pyi │ │ │ ├── WTForms │ │ │ ├── METADATA.toml │ │ │ └── wtforms │ │ │ │ ├── __init__.pyi │ │ │ │ ├── csrf │ │ │ │ ├── __init__.pyi │ │ │ │ ├── core.pyi │ │ │ │ └── session.pyi │ │ │ │ ├── fields │ │ │ │ ├── __init__.pyi │ │ │ │ ├── choices.pyi │ │ │ │ ├── core.pyi │ │ │ │ ├── datetime.pyi │ │ │ │ ├── form.pyi │ │ │ │ ├── list.pyi │ │ │ │ ├── numeric.pyi │ │ │ │ └── simple.pyi │ │ │ │ ├── form.pyi │ │ │ │ ├── i18n.pyi │ │ │ │ ├── meta.pyi │ │ │ │ ├── utils.pyi │ │ │ │ ├── validators.pyi │ │ │ │ └── widgets │ │ │ │ ├── __init__.pyi │ │ │ │ └── core.pyi │ │ │ ├── WebOb │ │ │ ├── METADATA.toml │ │ │ └── webob │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _types.pyi │ │ │ │ ├── acceptparse.pyi │ │ │ │ ├── byterange.pyi │ │ │ │ ├── cachecontrol.pyi │ │ │ │ ├── client.pyi │ │ │ │ ├── compat.pyi │ │ │ │ ├── cookies.pyi │ │ │ │ ├── datetime_utils.pyi │ │ │ │ ├── dec.pyi │ │ │ │ ├── descriptors.pyi │ │ │ │ ├── etag.pyi │ │ │ │ ├── exc.pyi │ │ │ │ ├── headers.pyi │ │ │ │ ├── multidict.pyi │ │ │ │ ├── request.pyi │ │ │ │ ├── response.pyi │ │ │ │ ├── static.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 │ │ │ ├── antlr4-python3-runtime │ │ │ ├── METADATA.toml │ │ │ └── antlr4 │ │ │ │ ├── BufferedTokenStream.pyi │ │ │ │ ├── CommonTokenFactory.pyi │ │ │ │ ├── CommonTokenStream.pyi │ │ │ │ ├── FileStream.pyi │ │ │ │ ├── InputStream.pyi │ │ │ │ ├── IntervalSet.pyi │ │ │ │ ├── LL1Analyzer.pyi │ │ │ │ ├── Lexer.pyi │ │ │ │ ├── ListTokenSource.pyi │ │ │ │ ├── Parser.pyi │ │ │ │ ├── ParserInterpreter.pyi │ │ │ │ ├── ParserRuleContext.pyi │ │ │ │ ├── PredictionContext.pyi │ │ │ │ ├── Recognizer.pyi │ │ │ │ ├── RuleContext.pyi │ │ │ │ ├── StdinStream.pyi │ │ │ │ ├── Token.pyi │ │ │ │ ├── TokenStreamRewriter.pyi │ │ │ │ ├── Utils.pyi │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _pygrun.pyi │ │ │ │ ├── atn │ │ │ │ ├── ATN.pyi │ │ │ │ ├── ATNConfig.pyi │ │ │ │ ├── ATNConfigSet.pyi │ │ │ │ ├── ATNDeserializationOptions.pyi │ │ │ │ ├── ATNDeserializer.pyi │ │ │ │ ├── ATNSimulator.pyi │ │ │ │ ├── ATNState.pyi │ │ │ │ ├── ATNType.pyi │ │ │ │ ├── LexerATNSimulator.pyi │ │ │ │ ├── LexerAction.pyi │ │ │ │ ├── LexerActionExecutor.pyi │ │ │ │ ├── ParserATNSimulator.pyi │ │ │ │ ├── PredictionMode.pyi │ │ │ │ ├── SemanticContext.pyi │ │ │ │ ├── Transition.pyi │ │ │ │ └── __init__.pyi │ │ │ │ ├── dfa │ │ │ │ ├── DFA.pyi │ │ │ │ ├── DFASerializer.pyi │ │ │ │ ├── DFAState.pyi │ │ │ │ └── __init__.pyi │ │ │ │ ├── error │ │ │ │ ├── DiagnosticErrorListener.pyi │ │ │ │ ├── ErrorListener.pyi │ │ │ │ ├── ErrorStrategy.pyi │ │ │ │ ├── Errors.pyi │ │ │ │ └── __init__.pyi │ │ │ │ ├── tree │ │ │ │ ├── Chunk.pyi │ │ │ │ ├── ParseTreeMatch.pyi │ │ │ │ ├── ParseTreePattern.pyi │ │ │ │ ├── ParseTreePatternMatcher.pyi │ │ │ │ ├── RuleTagToken.pyi │ │ │ │ ├── TokenTagToken.pyi │ │ │ │ ├── Tree.pyi │ │ │ │ ├── Trees.pyi │ │ │ │ └── __init__.pyi │ │ │ │ └── xpath │ │ │ │ ├── XPath.pyi │ │ │ │ ├── XPathLexer.pyi │ │ │ │ └── __init__.pyi │ │ │ ├── assertpy │ │ │ ├── METADATA.toml │ │ │ └── assertpy │ │ │ │ ├── __init__.pyi │ │ │ │ ├── assertpy.pyi │ │ │ │ ├── base.pyi │ │ │ │ ├── collection.pyi │ │ │ │ ├── contains.pyi │ │ │ │ ├── date.pyi │ │ │ │ ├── dict.pyi │ │ │ │ ├── dynamic.pyi │ │ │ │ ├── exception.pyi │ │ │ │ ├── extracting.pyi │ │ │ │ ├── file.pyi │ │ │ │ ├── helpers.pyi │ │ │ │ ├── numeric.pyi │ │ │ │ ├── snapshot.pyi │ │ │ │ └── string.pyi │ │ │ ├── auth0-python │ │ │ ├── METADATA.toml │ │ │ └── auth0 │ │ │ │ ├── __init__.pyi │ │ │ │ ├── asyncify.pyi │ │ │ │ ├── authentication │ │ │ │ ├── __init__.pyi │ │ │ │ ├── async_token_verifier.pyi │ │ │ │ ├── back_channel_login.pyi │ │ │ │ ├── base.pyi │ │ │ │ ├── client_authentication.pyi │ │ │ │ ├── database.pyi │ │ │ │ ├── delegated.pyi │ │ │ │ ├── enterprise.pyi │ │ │ │ ├── get_token.pyi │ │ │ │ ├── passwordless.pyi │ │ │ │ ├── pushed_authorization_requests.pyi │ │ │ │ ├── revoke_token.pyi │ │ │ │ ├── social.pyi │ │ │ │ ├── token_verifier.pyi │ │ │ │ └── users.pyi │ │ │ │ ├── exceptions.pyi │ │ │ │ ├── management │ │ │ │ ├── __init__.pyi │ │ │ │ ├── actions.pyi │ │ │ │ ├── async_auth0.pyi │ │ │ │ ├── attack_protection.pyi │ │ │ │ ├── auth0.pyi │ │ │ │ ├── blacklists.pyi │ │ │ │ ├── branding.pyi │ │ │ │ ├── client_credentials.pyi │ │ │ │ ├── client_grants.pyi │ │ │ │ ├── clients.pyi │ │ │ │ ├── connections.pyi │ │ │ │ ├── custom_domains.pyi │ │ │ │ ├── device_credentials.pyi │ │ │ │ ├── email_templates.pyi │ │ │ │ ├── emails.pyi │ │ │ │ ├── grants.pyi │ │ │ │ ├── guardian.pyi │ │ │ │ ├── hooks.pyi │ │ │ │ ├── jobs.pyi │ │ │ │ ├── log_streams.pyi │ │ │ │ ├── logs.pyi │ │ │ │ ├── organizations.pyi │ │ │ │ ├── prompts.pyi │ │ │ │ ├── resource_servers.pyi │ │ │ │ ├── roles.pyi │ │ │ │ ├── rules.pyi │ │ │ │ ├── rules_configs.pyi │ │ │ │ ├── self_service_profiles.pyi │ │ │ │ ├── stats.pyi │ │ │ │ ├── tenants.pyi │ │ │ │ ├── tickets.pyi │ │ │ │ ├── user_blocks.pyi │ │ │ │ ├── users.pyi │ │ │ │ └── users_by_email.pyi │ │ │ │ ├── rest.pyi │ │ │ │ ├── rest_async.pyi │ │ │ │ ├── types.pyi │ │ │ │ └── utils.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 │ │ │ │ │ ├── sqs_message_helper.pyi │ │ │ │ │ └── stacktrace.pyi │ │ │ │ ├── ext │ │ │ │ ├── __init__.pyi │ │ │ │ ├── aiobotocore │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── patch.pyi │ │ │ │ ├── aiohttp │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── client.pyi │ │ │ │ │ └── middleware.pyi │ │ │ │ ├── boto_utils.pyi │ │ │ │ ├── botocore │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── patch.pyi │ │ │ │ ├── bottle │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── middleware.pyi │ │ │ │ ├── dbapi2.pyi │ │ │ │ ├── django │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── apps.pyi │ │ │ │ │ ├── conf.pyi │ │ │ │ │ ├── db.pyi │ │ │ │ │ ├── middleware.pyi │ │ │ │ │ └── templates.pyi │ │ │ │ ├── flask │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── middleware.pyi │ │ │ │ ├── flask_sqlalchemy │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── query.pyi │ │ │ │ ├── httplib │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── patch.pyi │ │ │ │ ├── httpx │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── patch.pyi │ │ │ │ ├── mysql │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── patch.pyi │ │ │ │ ├── pg8000 │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── patch.pyi │ │ │ │ ├── psycopg2 │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── patch.pyi │ │ │ │ ├── pymongo │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── patch.pyi │ │ │ │ ├── pymysql │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── patch.pyi │ │ │ │ ├── pynamodb │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── patch.pyi │ │ │ │ ├── requests │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── patch.pyi │ │ │ │ ├── sqlalchemy │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── query.pyi │ │ │ │ │ └── util │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── decorators.pyi │ │ │ │ ├── sqlalchemy_core │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── patch.pyi │ │ │ │ ├── sqlite3 │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── patch.pyi │ │ │ │ └── util.pyi │ │ │ │ ├── sdk_config.pyi │ │ │ │ └── version.pyi │ │ │ ├── binaryornot │ │ │ ├── METADATA.toml │ │ │ └── binaryornot │ │ │ │ ├── __init__.pyi │ │ │ │ ├── check.pyi │ │ │ │ └── helpers.pyi │ │ │ ├── bleach │ │ │ ├── METADATA.toml │ │ │ └── bleach │ │ │ │ ├── __init__.pyi │ │ │ │ ├── callbacks.pyi │ │ │ │ ├── css_sanitizer.pyi │ │ │ │ ├── html5lib_shim.pyi │ │ │ │ ├── linkifier.pyi │ │ │ │ ├── parse_shim.pyi │ │ │ │ └── sanitizer.pyi │ │ │ ├── boltons │ │ │ ├── METADATA.toml │ │ │ └── boltons │ │ │ │ ├── __init__.pyi │ │ │ │ ├── cacheutils.pyi │ │ │ │ ├── debugutils.pyi │ │ │ │ ├── deprutils.pyi │ │ │ │ ├── dictutils.pyi │ │ │ │ ├── easterutils.pyi │ │ │ │ ├── ecoutils.pyi │ │ │ │ ├── excutils.pyi │ │ │ │ ├── fileutils.pyi │ │ │ │ ├── formatutils.pyi │ │ │ │ ├── funcutils.pyi │ │ │ │ ├── gcutils.pyi │ │ │ │ ├── ioutils.pyi │ │ │ │ ├── iterutils.pyi │ │ │ │ ├── jsonutils.pyi │ │ │ │ ├── listutils.pyi │ │ │ │ ├── mathutils.pyi │ │ │ │ ├── mboxutils.pyi │ │ │ │ ├── namedutils.pyi │ │ │ │ ├── pathutils.pyi │ │ │ │ ├── queueutils.pyi │ │ │ │ ├── setutils.pyi │ │ │ │ ├── socketutils.pyi │ │ │ │ ├── statsutils.pyi │ │ │ │ ├── strutils.pyi │ │ │ │ ├── tableutils.pyi │ │ │ │ ├── tbutils.pyi │ │ │ │ ├── timeutils.pyi │ │ │ │ ├── typeutils.pyi │ │ │ │ └── urlutils.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 │ │ │ │ ├── bank_account_instant_verification_gateway.pyi │ │ │ │ ├── bank_account_instant_verification_jwt.pyi │ │ │ │ ├── bank_account_instant_verification_jwt_request.pyi │ │ │ │ ├── bin_data.pyi │ │ │ │ ├── blik_alias.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 │ │ │ │ ├── customer_session_gateway.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 │ │ │ │ ├── enriched_customer_data.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 │ │ │ │ ├── test_operation_performed_in_production_error.pyi │ │ │ │ ├── too_many_requests_error.pyi │ │ │ │ ├── unexpected_error.pyi │ │ │ │ └── upgrade_required_error.pyi │ │ │ │ ├── exchange_rate_quote.pyi │ │ │ │ ├── exchange_rate_quote_gateway.pyi │ │ │ │ ├── exchange_rate_quote_input.pyi │ │ │ │ ├── exchange_rate_quote_payload.pyi │ │ │ │ ├── exchange_rate_quote_request.pyi │ │ │ │ ├── facilitated_details.pyi │ │ │ │ ├── facilitator_details.pyi │ │ │ │ ├── granted_payment_instrument_update.pyi │ │ │ │ ├── graphql │ │ │ │ ├── __init__.pyi │ │ │ │ ├── enums │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── recommendations.pyi │ │ │ │ │ └── recommended_payment_option.pyi │ │ │ │ ├── inputs │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── create_customer_session_input.pyi │ │ │ │ │ ├── customer_recommendations_input.pyi │ │ │ │ │ ├── customer_session_input.pyi │ │ │ │ │ ├── monetary_amount_input.pyi │ │ │ │ │ ├── paypal_payee_input.pyi │ │ │ │ │ ├── paypal_purchase_unit_input.pyi │ │ │ │ │ ├── phone_input.pyi │ │ │ │ │ └── update_customer_session_input.pyi │ │ │ │ ├── types │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── customer_recommendations_payload.pyi │ │ │ │ │ ├── payment_options.pyi │ │ │ │ │ └── payment_recommendation.pyi │ │ │ │ └── unions │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── customer_recommendations.pyi │ │ │ │ ├── iban_bank_account.pyi │ │ │ │ ├── ids_search.pyi │ │ │ │ ├── liability_shift.pyi │ │ │ │ ├── local_payment.pyi │ │ │ │ ├── local_payment_completed.pyi │ │ │ │ ├── local_payment_expired.pyi │ │ │ │ ├── local_payment_funded.pyi │ │ │ │ ├── local_payment_reversed.pyi │ │ │ │ ├── masterpass_card.pyi │ │ │ │ ├── merchant.pyi │ │ │ │ ├── merchant_account │ │ │ │ ├── __init__.pyi │ │ │ │ ├── address_details.pyi │ │ │ │ └── merchant_account.pyi │ │ │ │ ├── merchant_account_gateway.pyi │ │ │ │ ├── merchant_gateway.pyi │ │ │ │ ├── meta_checkout_card.pyi │ │ │ │ ├── meta_checkout_token.pyi │ │ │ │ ├── modification.pyi │ │ │ │ ├── monetary_amount.pyi │ │ │ │ ├── oauth_access_revocation.pyi │ │ │ │ ├── oauth_credentials.pyi │ │ │ │ ├── oauth_gateway.pyi │ │ │ │ ├── package_details.pyi │ │ │ │ ├── paginated_collection.pyi │ │ │ │ ├── paginated_result.pyi │ │ │ │ ├── partner_merchant.pyi │ │ │ │ ├── payment_facilitator.pyi │ │ │ │ ├── payment_instrument_type.pyi │ │ │ │ ├── payment_method.pyi │ │ │ │ ├── payment_method_customer_data_updated_metadata.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 │ │ │ │ ├── paypal_payment_resource.pyi │ │ │ │ ├── paypal_payment_resource_gateway.pyi │ │ │ │ ├── plan.pyi │ │ │ │ ├── plan_gateway.pyi │ │ │ │ ├── processor_response_types.pyi │ │ │ │ ├── receiver.pyi │ │ │ │ ├── resource.pyi │ │ │ │ ├── resource_collection.pyi │ │ │ │ ├── revoked_payment_method_metadata.pyi │ │ │ │ ├── risk_data.pyi │ │ │ │ ├── samsung_pay_card.pyi │ │ │ │ ├── search.pyi │ │ │ │ ├── sender.pyi │ │ │ │ ├── sepa_direct_debit_account.pyi │ │ │ │ ├── sepa_direct_debit_account_gateway.pyi │ │ │ │ ├── settlement_batch_summary.pyi │ │ │ │ ├── settlement_batch_summary_gateway.pyi │ │ │ │ ├── signature_service.pyi │ │ │ │ ├── status_event.pyi │ │ │ │ ├── sub_merchant.pyi │ │ │ │ ├── subscription.pyi │ │ │ │ ├── subscription_details.pyi │ │ │ │ ├── subscription_gateway.pyi │ │ │ │ ├── subscription_search.pyi │ │ │ │ ├── subscription_status_event.pyi │ │ │ │ ├── successful_result.pyi │ │ │ │ ├── test │ │ │ │ ├── __init__.pyi │ │ │ │ ├── authentication_ids.pyi │ │ │ │ ├── credit_card_defaults.pyi │ │ │ │ ├── credit_card_numbers.pyi │ │ │ │ ├── merchant_account.pyi │ │ │ │ ├── nonces.pyi │ │ │ │ └── venmo_sdk.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_review.pyi │ │ │ │ ├── transaction_search.pyi │ │ │ │ ├── transaction_us_bank_account_request.pyi │ │ │ │ ├── transfer.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 │ │ │ │ ├── experimental.pyi │ │ │ │ ├── generator.pyi │ │ │ │ ├── graphql_client.pyi │ │ │ │ ├── http.pyi │ │ │ │ ├── parser.pyi │ │ │ │ └── xml_util.pyi │ │ │ │ ├── validation_error.pyi │ │ │ │ ├── validation_error_collection.pyi │ │ │ │ ├── venmo_account.pyi │ │ │ │ ├── venmo_profile_data.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 │ │ │ ├── capturer │ │ │ ├── METADATA.toml │ │ │ └── capturer.pyi │ │ │ ├── cffi │ │ │ ├── METADATA.toml │ │ │ ├── _cffi_backend.pyi │ │ │ └── cffi │ │ │ │ ├── __init__.pyi │ │ │ │ ├── api.pyi │ │ │ │ ├── backend_ctypes.pyi │ │ │ │ ├── cffi_opcode.pyi │ │ │ │ ├── commontypes.pyi │ │ │ │ ├── cparser.pyi │ │ │ │ ├── error.pyi │ │ │ │ ├── ffiplatform.pyi │ │ │ │ ├── lock.pyi │ │ │ │ ├── model.pyi │ │ │ │ ├── pkgconfig.pyi │ │ │ │ ├── recompiler.pyi │ │ │ │ ├── setuptools_ext.pyi │ │ │ │ ├── vengine_cpy.pyi │ │ │ │ ├── vengine_gen.pyi │ │ │ │ └── verifier.pyi │ │ │ ├── channels │ │ │ ├── METADATA.toml │ │ │ └── channels │ │ │ │ ├── __init__.pyi │ │ │ │ ├── apps.pyi │ │ │ │ ├── auth.pyi │ │ │ │ ├── consumer.pyi │ │ │ │ ├── db.pyi │ │ │ │ ├── exceptions.pyi │ │ │ │ ├── generic │ │ │ │ ├── __init__.pyi │ │ │ │ ├── http.pyi │ │ │ │ └── websocket.pyi │ │ │ │ ├── layers.pyi │ │ │ │ ├── management │ │ │ │ ├── __init__.pyi │ │ │ │ └── commands │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── runworker.pyi │ │ │ │ ├── middleware.pyi │ │ │ │ ├── routing.pyi │ │ │ │ ├── security │ │ │ │ ├── __init__.pyi │ │ │ │ └── websocket.pyi │ │ │ │ ├── sessions.pyi │ │ │ │ ├── testing │ │ │ │ ├── __init__.pyi │ │ │ │ ├── application.pyi │ │ │ │ ├── http.pyi │ │ │ │ ├── live.pyi │ │ │ │ └── websocket.pyi │ │ │ │ ├── utils.pyi │ │ │ │ └── worker.pyi │ │ │ ├── chevron │ │ │ ├── METADATA.toml │ │ │ └── chevron │ │ │ │ ├── __init__.pyi │ │ │ │ ├── main.pyi │ │ │ │ ├── metadata.pyi │ │ │ │ ├── renderer.pyi │ │ │ │ └── tokenizer.pyi │ │ │ ├── click-default-group │ │ │ ├── METADATA.toml │ │ │ └── click_default_group.pyi │ │ │ ├── click-log │ │ │ ├── METADATA.toml │ │ │ └── click_log │ │ │ │ ├── __init__.pyi │ │ │ │ ├── core.pyi │ │ │ │ └── options.pyi │ │ │ ├── click-shell │ │ │ ├── METADATA.toml │ │ │ └── click_shell │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _cmd.pyi │ │ │ │ ├── _compat.pyi │ │ │ │ ├── core.pyi │ │ │ │ └── decorators.pyi │ │ │ ├── click-spinner │ │ │ ├── METADATA.toml │ │ │ └── click_spinner │ │ │ │ ├── __init__.pyi │ │ │ │ └── _version.pyi │ │ │ ├── click-web │ │ │ ├── METADATA.toml │ │ │ └── click_web │ │ │ │ ├── __init__.pyi │ │ │ │ ├── exceptions.pyi │ │ │ │ ├── resources │ │ │ │ ├── __init__.pyi │ │ │ │ ├── cmd_exec.pyi │ │ │ │ ├── cmd_form.pyi │ │ │ │ ├── index.pyi │ │ │ │ └── input_fields.pyi │ │ │ │ └── web_click_types.pyi │ │ │ ├── colorama │ │ │ ├── METADATA.toml │ │ │ └── colorama │ │ │ │ ├── __init__.pyi │ │ │ │ ├── ansi.pyi │ │ │ │ ├── ansitowin32.pyi │ │ │ │ ├── initialise.pyi │ │ │ │ ├── win32.pyi │ │ │ │ └── winterm.pyi │ │ │ ├── console-menu │ │ │ ├── METADATA.toml │ │ │ └── consolemenu │ │ │ │ ├── __init__.pyi │ │ │ │ ├── console_menu.pyi │ │ │ │ ├── format │ │ │ │ ├── __init__.pyi │ │ │ │ ├── menu_borders.pyi │ │ │ │ ├── menu_margins.pyi │ │ │ │ ├── menu_padding.pyi │ │ │ │ └── menu_style.pyi │ │ │ │ ├── items │ │ │ │ ├── __init__.pyi │ │ │ │ ├── command_item.pyi │ │ │ │ ├── external_item.pyi │ │ │ │ ├── function_item.pyi │ │ │ │ ├── selection_item.pyi │ │ │ │ └── submenu_item.pyi │ │ │ │ ├── menu_component.pyi │ │ │ │ ├── menu_formatter.pyi │ │ │ │ ├── multiselect_menu.pyi │ │ │ │ ├── prompt_utils.pyi │ │ │ │ ├── screen.pyi │ │ │ │ ├── selection_menu.pyi │ │ │ │ ├── validators │ │ │ │ ├── __init__.pyi │ │ │ │ ├── base.pyi │ │ │ │ ├── regex.pyi │ │ │ │ └── url.pyi │ │ │ │ └── version.pyi │ │ │ ├── convertdate │ │ │ ├── METADATA.toml │ │ │ └── convertdate │ │ │ │ ├── __init__.pyi │ │ │ │ ├── armenian.pyi │ │ │ │ ├── bahai.pyi │ │ │ │ ├── coptic.pyi │ │ │ │ ├── data │ │ │ │ ├── __init__.pyi │ │ │ │ ├── french_republican_days.pyi │ │ │ │ └── positivist.pyi │ │ │ │ ├── daycount.pyi │ │ │ │ ├── dublin.pyi │ │ │ │ ├── french_republican.pyi │ │ │ │ ├── gregorian.pyi │ │ │ │ ├── hebrew.pyi │ │ │ │ ├── holidays.pyi │ │ │ │ ├── indian_civil.pyi │ │ │ │ ├── islamic.pyi │ │ │ │ ├── iso.pyi │ │ │ │ ├── julian.pyi │ │ │ │ ├── julianday.pyi │ │ │ │ ├── mayan.pyi │ │ │ │ ├── ordinal.pyi │ │ │ │ ├── persian.pyi │ │ │ │ ├── positivist.pyi │ │ │ │ └── utils.pyi │ │ │ ├── croniter │ │ │ ├── METADATA.toml │ │ │ └── croniter │ │ │ │ ├── __init__.pyi │ │ │ │ └── croniter.pyi │ │ │ ├── dateparser │ │ │ ├── METADATA.toml │ │ │ ├── dateparser │ │ │ │ ├── __init__.pyi │ │ │ │ ├── calendars │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── hijri.pyi │ │ │ │ │ ├── hijri_parser.pyi │ │ │ │ │ ├── jalali.pyi │ │ │ │ │ └── jalali_parser.pyi │ │ │ │ ├── conf.pyi │ │ │ │ ├── custom_language_detection │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── fasttext.pyi │ │ │ │ │ ├── langdetect.pyi │ │ │ │ │ └── language_mapping.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 │ │ │ ├── defusedxml │ │ │ ├── METADATA.toml │ │ │ └── defusedxml │ │ │ │ ├── ElementTree.pyi │ │ │ │ ├── __init__.pyi │ │ │ │ ├── cElementTree.pyi │ │ │ │ ├── common.pyi │ │ │ │ ├── expatbuilder.pyi │ │ │ │ ├── expatreader.pyi │ │ │ │ ├── lxml.pyi │ │ │ │ ├── minidom.pyi │ │ │ │ ├── pulldom.pyi │ │ │ │ ├── sax.pyi │ │ │ │ └── xmlrpc.pyi │ │ │ ├── dirhash │ │ │ ├── METADATA.toml │ │ │ └── dirhash │ │ │ │ ├── __init__.pyi │ │ │ │ └── cli.pyi │ │ │ ├── django-filter │ │ │ ├── METADATA.toml │ │ │ └── django_filters │ │ │ │ ├── __init__.pyi │ │ │ │ ├── compat.pyi │ │ │ │ ├── conf.pyi │ │ │ │ ├── constants.pyi │ │ │ │ ├── exceptions.pyi │ │ │ │ ├── fields.pyi │ │ │ │ ├── filters.pyi │ │ │ │ ├── filterset.pyi │ │ │ │ ├── rest_framework │ │ │ │ ├── __init__.pyi │ │ │ │ ├── backends.pyi │ │ │ │ ├── filters.pyi │ │ │ │ └── filterset.pyi │ │ │ │ ├── utils.pyi │ │ │ │ ├── views.pyi │ │ │ │ └── widgets.pyi │ │ │ ├── django-import-export │ │ │ ├── METADATA.toml │ │ │ ├── import_export │ │ │ │ ├── __init__.pyi │ │ │ │ ├── admin.pyi │ │ │ │ ├── command_utils.pyi │ │ │ │ ├── declarative.pyi │ │ │ │ ├── exceptions.pyi │ │ │ │ ├── fields.pyi │ │ │ │ ├── formats │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── base_formats.pyi │ │ │ │ ├── forms.pyi │ │ │ │ ├── instance_loaders.pyi │ │ │ │ ├── mixins.pyi │ │ │ │ ├── options.pyi │ │ │ │ ├── resources.pyi │ │ │ │ ├── results.pyi │ │ │ │ ├── signals.pyi │ │ │ │ ├── templatetags │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── import_export_tags.pyi │ │ │ │ ├── tmp_storages.pyi │ │ │ │ ├── utils.pyi │ │ │ │ └── widgets.pyi │ │ │ └── management │ │ │ │ ├── __init__.pyi │ │ │ │ └── commands │ │ │ │ ├── __init__.pyi │ │ │ │ ├── export.pyi │ │ │ │ └── import.pyi │ │ │ ├── docker │ │ │ ├── METADATA.toml │ │ │ └── docker │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _types.pyi │ │ │ │ ├── api │ │ │ │ ├── __init__.pyi │ │ │ │ ├── build.pyi │ │ │ │ ├── client.pyi │ │ │ │ ├── config.pyi │ │ │ │ ├── container.pyi │ │ │ │ ├── daemon.pyi │ │ │ │ ├── exec_api.pyi │ │ │ │ ├── image.pyi │ │ │ │ ├── network.pyi │ │ │ │ ├── plugin.pyi │ │ │ │ ├── secret.pyi │ │ │ │ ├── service.pyi │ │ │ │ ├── swarm.pyi │ │ │ │ └── volume.pyi │ │ │ │ ├── auth.pyi │ │ │ │ ├── client.pyi │ │ │ │ ├── constants.pyi │ │ │ │ ├── context │ │ │ │ ├── __init__.pyi │ │ │ │ ├── api.pyi │ │ │ │ ├── config.pyi │ │ │ │ └── context.pyi │ │ │ │ ├── credentials │ │ │ │ ├── __init__.pyi │ │ │ │ ├── constants.pyi │ │ │ │ ├── errors.pyi │ │ │ │ ├── store.pyi │ │ │ │ └── utils.pyi │ │ │ │ ├── errors.pyi │ │ │ │ ├── models │ │ │ │ ├── __init__.pyi │ │ │ │ ├── configs.pyi │ │ │ │ ├── containers.pyi │ │ │ │ ├── images.pyi │ │ │ │ ├── networks.pyi │ │ │ │ ├── nodes.pyi │ │ │ │ ├── plugins.pyi │ │ │ │ ├── resource.pyi │ │ │ │ ├── secrets.pyi │ │ │ │ ├── services.pyi │ │ │ │ ├── swarm.pyi │ │ │ │ └── volumes.pyi │ │ │ │ ├── tls.pyi │ │ │ │ ├── transport │ │ │ │ ├── __init__.pyi │ │ │ │ ├── basehttpadapter.pyi │ │ │ │ ├── npipeconn.pyi │ │ │ │ ├── npipesocket.pyi │ │ │ │ ├── sshconn.pyi │ │ │ │ └── unixconn.pyi │ │ │ │ ├── types │ │ │ │ ├── __init__.pyi │ │ │ │ ├── base.pyi │ │ │ │ ├── containers.pyi │ │ │ │ ├── daemon.pyi │ │ │ │ ├── healthcheck.pyi │ │ │ │ ├── networks.pyi │ │ │ │ ├── services.pyi │ │ │ │ └── swarm.pyi │ │ │ │ ├── utils │ │ │ │ ├── __init__.pyi │ │ │ │ ├── build.pyi │ │ │ │ ├── config.pyi │ │ │ │ ├── decorators.pyi │ │ │ │ ├── fnmatch.pyi │ │ │ │ ├── json_stream.pyi │ │ │ │ ├── ports.pyi │ │ │ │ ├── proxy.pyi │ │ │ │ ├── socket.pyi │ │ │ │ └── utils.pyi │ │ │ │ └── version.pyi │ │ │ ├── dockerfile-parse │ │ │ ├── METADATA.toml │ │ │ └── dockerfile_parse │ │ │ │ ├── __init__.pyi │ │ │ │ ├── constants.pyi │ │ │ │ ├── parser.pyi │ │ │ │ └── util.pyi │ │ │ ├── docutils │ │ │ ├── METADATA.toml │ │ │ └── docutils │ │ │ │ ├── __init__.pyi │ │ │ │ ├── __main__.pyi │ │ │ │ ├── core.pyi │ │ │ │ ├── examples.pyi │ │ │ │ ├── frontend.pyi │ │ │ │ ├── io.pyi │ │ │ │ ├── languages │ │ │ │ ├── __init__.pyi │ │ │ │ ├── af.pyi │ │ │ │ ├── ar.pyi │ │ │ │ ├── ca.pyi │ │ │ │ ├── cs.pyi │ │ │ │ ├── da.pyi │ │ │ │ ├── de.pyi │ │ │ │ ├── en.pyi │ │ │ │ ├── eo.pyi │ │ │ │ ├── es.pyi │ │ │ │ ├── fa.pyi │ │ │ │ ├── fi.pyi │ │ │ │ ├── fr.pyi │ │ │ │ ├── gl.pyi │ │ │ │ ├── he.pyi │ │ │ │ ├── it.pyi │ │ │ │ ├── ja.pyi │ │ │ │ ├── ka.pyi │ │ │ │ ├── ko.pyi │ │ │ │ ├── lt.pyi │ │ │ │ ├── lv.pyi │ │ │ │ ├── nl.pyi │ │ │ │ ├── pl.pyi │ │ │ │ ├── pt_br.pyi │ │ │ │ ├── ru.pyi │ │ │ │ ├── sk.pyi │ │ │ │ ├── sv.pyi │ │ │ │ ├── uk.pyi │ │ │ │ ├── zh_cn.pyi │ │ │ │ └── zh_tw.pyi │ │ │ │ ├── nodes.pyi │ │ │ │ ├── parsers │ │ │ │ ├── __init__.pyi │ │ │ │ ├── commonmark_wrapper.pyi │ │ │ │ ├── docutils_xml.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 │ │ │ │ │ ├── languages │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── af.pyi │ │ │ │ │ ├── ar.pyi │ │ │ │ │ ├── ca.pyi │ │ │ │ │ ├── cs.pyi │ │ │ │ │ ├── da.pyi │ │ │ │ │ ├── de.pyi │ │ │ │ │ ├── en.pyi │ │ │ │ │ ├── eo.pyi │ │ │ │ │ ├── es.pyi │ │ │ │ │ ├── fa.pyi │ │ │ │ │ ├── fi.pyi │ │ │ │ │ ├── fr.pyi │ │ │ │ │ ├── gl.pyi │ │ │ │ │ ├── he.pyi │ │ │ │ │ ├── it.pyi │ │ │ │ │ ├── ja.pyi │ │ │ │ │ ├── ka.pyi │ │ │ │ │ ├── ko.pyi │ │ │ │ │ ├── lt.pyi │ │ │ │ │ ├── lv.pyi │ │ │ │ │ ├── nl.pyi │ │ │ │ │ ├── pl.pyi │ │ │ │ │ ├── pt_br.pyi │ │ │ │ │ ├── ru.pyi │ │ │ │ │ ├── sk.pyi │ │ │ │ │ ├── sv.pyi │ │ │ │ │ ├── uk.pyi │ │ │ │ │ ├── zh_cn.pyi │ │ │ │ │ └── zh_tw.pyi │ │ │ │ │ ├── roles.pyi │ │ │ │ │ ├── states.pyi │ │ │ │ │ └── tableparser.pyi │ │ │ │ ├── readers │ │ │ │ ├── __init__.pyi │ │ │ │ ├── doctree.pyi │ │ │ │ ├── pep.pyi │ │ │ │ └── standalone.pyi │ │ │ │ ├── statemachine.pyi │ │ │ │ ├── transforms │ │ │ │ ├── __init__.pyi │ │ │ │ ├── components.pyi │ │ │ │ ├── frontmatter.pyi │ │ │ │ ├── misc.pyi │ │ │ │ ├── parts.pyi │ │ │ │ ├── peps.pyi │ │ │ │ ├── references.pyi │ │ │ │ ├── universal.pyi │ │ │ │ └── writer_aux.pyi │ │ │ │ ├── utils │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _roman_numerals.pyi │ │ │ │ ├── code_analyzer.pyi │ │ │ │ ├── math │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── latex2mathml.pyi │ │ │ │ │ ├── math2html.pyi │ │ │ │ │ ├── mathalphabet2unichar.pyi │ │ │ │ │ ├── mathml_elements.pyi │ │ │ │ │ ├── tex2mathml_extern.pyi │ │ │ │ │ ├── tex2unichar.pyi │ │ │ │ │ └── unichar2tex.pyi │ │ │ │ ├── punctuation_chars.pyi │ │ │ │ ├── smartquotes.pyi │ │ │ │ └── urischemes.pyi │ │ │ │ └── writers │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _html_base.pyi │ │ │ │ ├── docutils_xml.pyi │ │ │ │ ├── html4css1 │ │ │ │ └── __init__.pyi │ │ │ │ ├── html5_polyglot │ │ │ │ └── __init__.pyi │ │ │ │ ├── latex2e │ │ │ │ └── __init__.pyi │ │ │ │ ├── manpage.pyi │ │ │ │ ├── null.pyi │ │ │ │ ├── odf_odt │ │ │ │ ├── __init__.pyi │ │ │ │ ├── prepstyles.pyi │ │ │ │ └── pygmentsformatter.pyi │ │ │ │ ├── pep_html │ │ │ │ └── __init__.pyi │ │ │ │ ├── pseudoxml.pyi │ │ │ │ ├── s5_html │ │ │ │ └── __init__.pyi │ │ │ │ └── xetex │ │ │ │ └── __init__.pyi │ │ │ ├── editdistance │ │ │ ├── METADATA.toml │ │ │ └── editdistance │ │ │ │ └── __init__.pyi │ │ │ ├── entrypoints │ │ │ ├── METADATA.toml │ │ │ └── entrypoints.pyi │ │ │ ├── fanstatic │ │ │ ├── METADATA.toml │ │ │ └── fanstatic │ │ │ │ ├── __init__.pyi │ │ │ │ ├── checksum.pyi │ │ │ │ ├── compiler.pyi │ │ │ │ ├── config.pyi │ │ │ │ ├── core.pyi │ │ │ │ ├── inclusion.pyi │ │ │ │ ├── injector.pyi │ │ │ │ ├── publisher.pyi │ │ │ │ ├── registry.pyi │ │ │ │ └── wsgi.pyi │ │ │ ├── first │ │ │ ├── METADATA.toml │ │ │ └── first.pyi │ │ │ ├── flake8-bugbear │ │ │ ├── METADATA.toml │ │ │ └── bugbear.pyi │ │ │ ├── flake8-builtins │ │ │ ├── METADATA.toml │ │ │ └── flake8_builtins.pyi │ │ │ ├── flake8-docstrings │ │ │ ├── METADATA.toml │ │ │ └── flake8_docstrings.pyi │ │ │ ├── flake8-rst-docstrings │ │ │ ├── METADATA.toml │ │ │ └── flake8_rst_docstrings.pyi │ │ │ ├── flake8-simplify │ │ │ ├── METADATA.toml │ │ │ └── flake8_simplify │ │ │ │ ├── __init__.pyi │ │ │ │ ├── constants.pyi │ │ │ │ ├── rules │ │ │ │ ├── __init__.pyi │ │ │ │ ├── ast_assign.pyi │ │ │ │ ├── ast_bool_op.pyi │ │ │ │ ├── ast_call.pyi │ │ │ │ ├── ast_classdef.pyi │ │ │ │ ├── ast_compare.pyi │ │ │ │ ├── ast_expr.pyi │ │ │ │ ├── ast_for.pyi │ │ │ │ ├── ast_if.pyi │ │ │ │ ├── ast_ifexp.pyi │ │ │ │ ├── ast_subscript.pyi │ │ │ │ ├── ast_try.pyi │ │ │ │ ├── ast_unary_op.pyi │ │ │ │ └── ast_with.pyi │ │ │ │ └── utils.pyi │ │ │ ├── flake8-typing-imports │ │ │ ├── METADATA.toml │ │ │ └── flake8_typing_imports.pyi │ │ │ ├── flake8 │ │ │ ├── METADATA.toml │ │ │ └── flake8 │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _compat.pyi │ │ │ │ ├── api │ │ │ │ ├── __init__.pyi │ │ │ │ └── legacy.pyi │ │ │ │ ├── checker.pyi │ │ │ │ ├── defaults.pyi │ │ │ │ ├── discover_files.pyi │ │ │ │ ├── exceptions.pyi │ │ │ │ ├── formatting │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _windows_color.pyi │ │ │ │ ├── base.pyi │ │ │ │ └── default.pyi │ │ │ │ ├── main │ │ │ │ ├── __init__.pyi │ │ │ │ ├── application.pyi │ │ │ │ ├── cli.pyi │ │ │ │ ├── debug.pyi │ │ │ │ └── options.pyi │ │ │ │ ├── options │ │ │ │ ├── __init__.pyi │ │ │ │ ├── aggregator.pyi │ │ │ │ ├── config.pyi │ │ │ │ ├── manager.pyi │ │ │ │ └── parse_args.pyi │ │ │ │ ├── plugins │ │ │ │ ├── __init__.pyi │ │ │ │ ├── finder.pyi │ │ │ │ ├── pycodestyle.pyi │ │ │ │ ├── pyflakes.pyi │ │ │ │ └── reporter.pyi │ │ │ │ ├── processor.pyi │ │ │ │ ├── statistics.pyi │ │ │ │ ├── style_guide.pyi │ │ │ │ ├── utils.pyi │ │ │ │ └── violation.pyi │ │ │ ├── fpdf2 │ │ │ ├── METADATA.toml │ │ │ └── fpdf │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _fonttools_shims.pyi │ │ │ │ ├── actions.pyi │ │ │ │ ├── annotations.pyi │ │ │ │ ├── bidi.pyi │ │ │ │ ├── deprecation.pyi │ │ │ │ ├── drawing.pyi │ │ │ │ ├── encryption.pyi │ │ │ │ ├── enums.pyi │ │ │ │ ├── errors.pyi │ │ │ │ ├── fonts.pyi │ │ │ │ ├── fpdf.pyi │ │ │ │ ├── graphics_state.pyi │ │ │ │ ├── html.pyi │ │ │ │ ├── image_datastructures.pyi │ │ │ │ ├── image_parsing.pyi │ │ │ │ ├── line_break.pyi │ │ │ │ ├── linearization.pyi │ │ │ │ ├── outline.pyi │ │ │ │ ├── output.pyi │ │ │ │ ├── pattern.pyi │ │ │ │ ├── prefs.pyi │ │ │ │ ├── recorder.pyi │ │ │ │ ├── sign.pyi │ │ │ │ ├── structure_tree.pyi │ │ │ │ ├── svg.pyi │ │ │ │ ├── syntax.pyi │ │ │ │ ├── table.pyi │ │ │ │ ├── template.pyi │ │ │ │ ├── text_region.pyi │ │ │ │ ├── transitions.pyi │ │ │ │ ├── unicode_script.pyi │ │ │ │ └── util.pyi │ │ │ ├── gdb │ │ │ ├── METADATA.toml │ │ │ └── gdb │ │ │ │ ├── FrameDecorator.pyi │ │ │ │ ├── FrameIterator.pyi │ │ │ │ ├── __init__.pyi │ │ │ │ ├── dap │ │ │ │ ├── __init__.pyi │ │ │ │ ├── breakpoint.pyi │ │ │ │ ├── bt.pyi │ │ │ │ ├── disassemble.pyi │ │ │ │ ├── evaluate.pyi │ │ │ │ ├── events.pyi │ │ │ │ ├── frames.pyi │ │ │ │ ├── io.pyi │ │ │ │ ├── launch.pyi │ │ │ │ ├── locations.pyi │ │ │ │ ├── memory.pyi │ │ │ │ ├── modules.pyi │ │ │ │ ├── next.pyi │ │ │ │ ├── pause.pyi │ │ │ │ ├── scopes.pyi │ │ │ │ ├── server.pyi │ │ │ │ ├── sources.pyi │ │ │ │ ├── startup.pyi │ │ │ │ ├── state.pyi │ │ │ │ ├── threads.pyi │ │ │ │ ├── typecheck.pyi │ │ │ │ └── varref.pyi │ │ │ │ ├── disassembler.pyi │ │ │ │ ├── events.pyi │ │ │ │ ├── missing_debug.pyi │ │ │ │ ├── missing_files.pyi │ │ │ │ ├── missing_objfile.pyi │ │ │ │ ├── printing.pyi │ │ │ │ ├── prompt.pyi │ │ │ │ ├── types.pyi │ │ │ │ ├── unwinder.pyi │ │ │ │ └── xmethod.pyi │ │ │ ├── geopandas │ │ │ ├── METADATA.toml │ │ │ └── geopandas │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _config.pyi │ │ │ │ ├── _decorator.pyi │ │ │ │ ├── _exports.pyi │ │ │ │ ├── accessors.pyi │ │ │ │ ├── array.pyi │ │ │ │ ├── base.pyi │ │ │ │ ├── explore.pyi │ │ │ │ ├── geodataframe.pyi │ │ │ │ ├── geoseries.pyi │ │ │ │ ├── io │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _geoarrow.pyi │ │ │ │ ├── arrow.pyi │ │ │ │ ├── file.pyi │ │ │ │ └── sql.pyi │ │ │ │ ├── plotting.pyi │ │ │ │ ├── sindex.pyi │ │ │ │ ├── testing.pyi │ │ │ │ └── tools │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _show_versions.pyi │ │ │ │ ├── clip.pyi │ │ │ │ ├── geocoding.pyi │ │ │ │ ├── hilbert_curve.pyi │ │ │ │ ├── overlay.pyi │ │ │ │ ├── sjoin.pyi │ │ │ │ └── util.pyi │ │ │ ├── gevent │ │ │ ├── METADATA.toml │ │ │ └── gevent │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _abstract_linkable.pyi │ │ │ │ ├── _config.pyi │ │ │ │ ├── _ffi │ │ │ │ ├── __init__.pyi │ │ │ │ ├── loop.pyi │ │ │ │ └── watcher.pyi │ │ │ │ ├── _fileobjectcommon.pyi │ │ │ │ ├── _greenlet_primitives.pyi │ │ │ │ ├── _hub_local.pyi │ │ │ │ ├── _hub_primitives.pyi │ │ │ │ ├── _ident.pyi │ │ │ │ ├── _imap.pyi │ │ │ │ ├── _monitor.pyi │ │ │ │ ├── _threading.pyi │ │ │ │ ├── _types.pyi │ │ │ │ ├── _util.pyi │ │ │ │ ├── _waiter.pyi │ │ │ │ ├── ares.pyi │ │ │ │ ├── backdoor.pyi │ │ │ │ ├── baseserver.pyi │ │ │ │ ├── event.pyi │ │ │ │ ├── events.pyi │ │ │ │ ├── exceptions.pyi │ │ │ │ ├── fileobject.pyi │ │ │ │ ├── greenlet.pyi │ │ │ │ ├── hub.pyi │ │ │ │ ├── libev │ │ │ │ ├── __init__.pyi │ │ │ │ ├── corecext.pyi │ │ │ │ ├── corecffi.pyi │ │ │ │ └── watcher.pyi │ │ │ │ ├── libuv │ │ │ │ ├── __init__.pyi │ │ │ │ ├── loop.pyi │ │ │ │ └── watcher.pyi │ │ │ │ ├── local.pyi │ │ │ │ ├── lock.pyi │ │ │ │ ├── monkey │ │ │ │ ├── __init__.pyi │ │ │ │ └── api.pyi │ │ │ │ ├── os.pyi │ │ │ │ ├── pool.pyi │ │ │ │ ├── pywsgi.pyi │ │ │ │ ├── queue.pyi │ │ │ │ ├── resolver │ │ │ │ ├── __init__.pyi │ │ │ │ ├── ares.pyi │ │ │ │ ├── blocking.pyi │ │ │ │ ├── cares.pyi │ │ │ │ ├── dnspython.pyi │ │ │ │ └── thread.pyi │ │ │ │ ├── resolver_ares.pyi │ │ │ │ ├── resolver_thread.pyi │ │ │ │ ├── select.pyi │ │ │ │ ├── selectors.pyi │ │ │ │ ├── server.pyi │ │ │ │ ├── signal.pyi │ │ │ │ ├── socket.pyi │ │ │ │ ├── ssl.pyi │ │ │ │ ├── subprocess.pyi │ │ │ │ ├── threadpool.pyi │ │ │ │ ├── time.pyi │ │ │ │ ├── timeout.pyi │ │ │ │ ├── util.pyi │ │ │ │ └── win32util.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 │ │ │ │ └── version.pyi │ │ │ ├── greenlet │ │ │ ├── METADATA.toml │ │ │ └── greenlet │ │ │ │ ├── __init__.pyi │ │ │ │ └── _greenlet.pyi │ │ │ ├── grpcio-channelz │ │ │ ├── METADATA.toml │ │ │ └── grpc_channelz │ │ │ │ ├── __init__.pyi │ │ │ │ └── v1 │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _async.pyi │ │ │ │ ├── _servicer.pyi │ │ │ │ ├── channelz.pyi │ │ │ │ ├── channelz_pb2.pyi │ │ │ │ └── channelz_pb2_grpc.pyi │ │ │ ├── grpcio-health-checking │ │ │ ├── METADATA.toml │ │ │ └── grpc_health │ │ │ │ ├── __init__.pyi │ │ │ │ └── v1 │ │ │ │ ├── __init__.pyi │ │ │ │ ├── health.pyi │ │ │ │ ├── health_pb2.pyi │ │ │ │ └── health_pb2_grpc.pyi │ │ │ ├── grpcio-reflection │ │ │ ├── METADATA.toml │ │ │ └── grpc_reflection │ │ │ │ ├── __init__.pyi │ │ │ │ └── v1alpha │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _async.pyi │ │ │ │ ├── _base.pyi │ │ │ │ ├── proto_reflection_descriptor_database.pyi │ │ │ │ ├── reflection.pyi │ │ │ │ ├── reflection_pb2.pyi │ │ │ │ └── reflection_pb2_grpc.pyi │ │ │ ├── grpcio-status │ │ │ ├── METADATA.toml │ │ │ └── grpc_status │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _async.pyi │ │ │ │ └── rpc_status.pyi │ │ │ ├── grpcio │ │ │ ├── METADATA.toml │ │ │ └── grpc │ │ │ │ ├── __init__.pyi │ │ │ │ └── aio │ │ │ │ └── __init__.pyi │ │ │ ├── gunicorn │ │ │ ├── METADATA.toml │ │ │ └── gunicorn │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _types.pyi │ │ │ │ ├── app │ │ │ │ ├── __init__.pyi │ │ │ │ ├── base.pyi │ │ │ │ ├── pasterapp.pyi │ │ │ │ └── wsgiapp.pyi │ │ │ │ ├── arbiter.pyi │ │ │ │ ├── config.pyi │ │ │ │ ├── debug.pyi │ │ │ │ ├── errors.pyi │ │ │ │ ├── glogging.pyi │ │ │ │ ├── http │ │ │ │ ├── __init__.pyi │ │ │ │ ├── body.pyi │ │ │ │ ├── errors.pyi │ │ │ │ ├── message.pyi │ │ │ │ ├── parser.pyi │ │ │ │ ├── unreader.pyi │ │ │ │ └── wsgi.pyi │ │ │ │ ├── instrument │ │ │ │ ├── __init__.pyi │ │ │ │ └── statsd.pyi │ │ │ │ ├── pidfile.pyi │ │ │ │ ├── reloader.pyi │ │ │ │ ├── sock.pyi │ │ │ │ ├── systemd.pyi │ │ │ │ ├── util.pyi │ │ │ │ └── workers │ │ │ │ ├── __init__.pyi │ │ │ │ ├── base.pyi │ │ │ │ ├── base_async.pyi │ │ │ │ ├── geventlet.pyi │ │ │ │ ├── ggevent.pyi │ │ │ │ ├── gthread.pyi │ │ │ │ ├── gtornado.pyi │ │ │ │ ├── sync.pyi │ │ │ │ └── workertmp.pyi │ │ │ ├── hdbcli │ │ │ ├── METADATA.toml │ │ │ └── hdbcli │ │ │ │ ├── __init__.pyi │ │ │ │ ├── dbapi.pyi │ │ │ │ └── resultrow.pyi │ │ │ ├── hnswlib │ │ │ ├── METADATA.toml │ │ │ └── hnswlib.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 │ │ │ ├── hvac │ │ │ ├── METADATA.toml │ │ │ └── hvac │ │ │ │ ├── __init__.pyi │ │ │ │ ├── adapters.pyi │ │ │ │ ├── api │ │ │ │ ├── __init__.pyi │ │ │ │ ├── auth_methods │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── approle.pyi │ │ │ │ │ ├── aws.pyi │ │ │ │ │ ├── azure.pyi │ │ │ │ │ ├── cert.pyi │ │ │ │ │ ├── gcp.pyi │ │ │ │ │ ├── github.pyi │ │ │ │ │ ├── jwt.pyi │ │ │ │ │ ├── kubernetes.pyi │ │ │ │ │ ├── ldap.pyi │ │ │ │ │ ├── legacy_mfa.pyi │ │ │ │ │ ├── oidc.pyi │ │ │ │ │ ├── okta.pyi │ │ │ │ │ ├── radius.pyi │ │ │ │ │ ├── token.pyi │ │ │ │ │ └── userpass.pyi │ │ │ │ ├── secrets_engines │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── active_directory.pyi │ │ │ │ │ ├── aws.pyi │ │ │ │ │ ├── azure.pyi │ │ │ │ │ ├── consul.pyi │ │ │ │ │ ├── database.pyi │ │ │ │ │ ├── gcp.pyi │ │ │ │ │ ├── identity.pyi │ │ │ │ │ ├── kv.pyi │ │ │ │ │ ├── kv_v1.pyi │ │ │ │ │ ├── kv_v2.pyi │ │ │ │ │ ├── ldap.pyi │ │ │ │ │ ├── pki.pyi │ │ │ │ │ ├── rabbitmq.pyi │ │ │ │ │ ├── ssh.pyi │ │ │ │ │ ├── transform.pyi │ │ │ │ │ └── transit.pyi │ │ │ │ ├── system_backend │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── audit.pyi │ │ │ │ │ ├── auth.pyi │ │ │ │ │ ├── capabilities.pyi │ │ │ │ │ ├── health.pyi │ │ │ │ │ ├── init.pyi │ │ │ │ │ ├── key.pyi │ │ │ │ │ ├── leader.pyi │ │ │ │ │ ├── lease.pyi │ │ │ │ │ ├── mount.pyi │ │ │ │ │ ├── namespace.pyi │ │ │ │ │ ├── policies.pyi │ │ │ │ │ ├── policy.pyi │ │ │ │ │ ├── quota.pyi │ │ │ │ │ ├── raft.pyi │ │ │ │ │ ├── seal.pyi │ │ │ │ │ ├── system_backend_mixin.pyi │ │ │ │ │ └── wrapping.pyi │ │ │ │ ├── vault_api_base.pyi │ │ │ │ └── vault_api_category.pyi │ │ │ │ ├── aws_utils.pyi │ │ │ │ ├── constants │ │ │ │ ├── __init__.pyi │ │ │ │ ├── approle.pyi │ │ │ │ ├── aws.pyi │ │ │ │ ├── azure.pyi │ │ │ │ ├── client.pyi │ │ │ │ ├── gcp.pyi │ │ │ │ ├── identity.pyi │ │ │ │ └── transit.pyi │ │ │ │ ├── exceptions.pyi │ │ │ │ ├── utils.pyi │ │ │ │ └── v1 │ │ │ │ └── __init__.pyi │ │ │ ├── ibm-db │ │ │ ├── METADATA.toml │ │ │ └── ibm_db.pyi │ │ │ ├── icalendar │ │ │ ├── METADATA.toml │ │ │ └── icalendar │ │ │ │ ├── __init__.pyi │ │ │ │ ├── alarms.pyi │ │ │ │ ├── attr.pyi │ │ │ │ ├── cal.pyi │ │ │ │ ├── caselessdict.pyi │ │ │ │ ├── enums.pyi │ │ │ │ ├── error.pyi │ │ │ │ ├── param.pyi │ │ │ │ ├── parser.pyi │ │ │ │ ├── parser_tools.pyi │ │ │ │ ├── prop.pyi │ │ │ │ ├── timezone │ │ │ │ ├── __init__.pyi │ │ │ │ ├── equivalent_timezone_ids.pyi │ │ │ │ ├── equivalent_timezone_ids_result.pyi │ │ │ │ ├── provider.pyi │ │ │ │ ├── pytz.pyi │ │ │ │ ├── tzid.pyi │ │ │ │ ├── tzp.pyi │ │ │ │ ├── windows_to_olson.pyi │ │ │ │ └── zoneinfo.pyi │ │ │ │ ├── tools.pyi │ │ │ │ └── version.pyi │ │ │ ├── inifile │ │ │ ├── METADATA.toml │ │ │ └── inifile.pyi │ │ │ ├── jmespath │ │ │ ├── METADATA.toml │ │ │ └── jmespath │ │ │ │ ├── __init__.pyi │ │ │ │ ├── ast.pyi │ │ │ │ ├── compat.pyi │ │ │ │ ├── exceptions.pyi │ │ │ │ ├── functions.pyi │ │ │ │ ├── lexer.pyi │ │ │ │ ├── parser.pyi │ │ │ │ └── visitor.pyi │ │ │ ├── jsonnet │ │ │ ├── METADATA.toml │ │ │ └── _jsonnet.pyi │ │ │ ├── jsonschema │ │ │ ├── METADATA.toml │ │ │ └── jsonschema │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _format.pyi │ │ │ │ ├── _keywords.pyi │ │ │ │ ├── _legacy_keywords.pyi │ │ │ │ ├── _types.pyi │ │ │ │ ├── _typing.pyi │ │ │ │ ├── _utils.pyi │ │ │ │ ├── cli.pyi │ │ │ │ ├── exceptions.pyi │ │ │ │ ├── protocols.pyi │ │ │ │ └── validators.pyi │ │ │ ├── jwcrypto │ │ │ ├── METADATA.toml │ │ │ └── jwcrypto │ │ │ │ ├── __init__.pyi │ │ │ │ ├── common.pyi │ │ │ │ ├── jwa.pyi │ │ │ │ ├── jwe.pyi │ │ │ │ ├── jwk.pyi │ │ │ │ ├── jws.pyi │ │ │ │ └── jwt.pyi │ │ │ ├── keyboard │ │ │ ├── METADATA.toml │ │ │ └── keyboard │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _canonical_names.pyi │ │ │ │ ├── _generic.pyi │ │ │ │ ├── _keyboard_event.pyi │ │ │ │ ├── _mouse_event.pyi │ │ │ │ └── mouse.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 │ │ │ ├── libsass │ │ │ ├── METADATA.toml │ │ │ ├── sass.pyi │ │ │ └── sassutils │ │ │ │ ├── __init__.pyi │ │ │ │ ├── builder.pyi │ │ │ │ ├── distutils.pyi │ │ │ │ └── wsgi.pyi │ │ │ ├── lunardate │ │ │ ├── METADATA.toml │ │ │ └── lunardate.pyi │ │ │ ├── lupa │ │ │ ├── METADATA.toml │ │ │ └── lupa │ │ │ │ ├── __init__.pyi │ │ │ │ ├── lua51.pyi │ │ │ │ ├── lua52.pyi │ │ │ │ ├── lua53.pyi │ │ │ │ ├── lua54.pyi │ │ │ │ ├── luajit20.pyi │ │ │ │ ├── luajit21.pyi │ │ │ │ └── version.pyi │ │ │ ├── lzstring │ │ │ ├── METADATA.toml │ │ │ └── lzstring │ │ │ │ └── __init__.pyi │ │ │ ├── m3u8 │ │ │ ├── METADATA.toml │ │ │ └── m3u8 │ │ │ │ ├── __init__.pyi │ │ │ │ ├── httpclient.pyi │ │ │ │ ├── mixins.pyi │ │ │ │ ├── model.pyi │ │ │ │ ├── parser.pyi │ │ │ │ ├── protocol.pyi │ │ │ │ ├── version_matching.pyi │ │ │ │ └── version_matching_rules.pyi │ │ │ ├── mock │ │ │ ├── METADATA.toml │ │ │ └── mock │ │ │ │ ├── __init__.pyi │ │ │ │ ├── backports.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 │ │ │ ├── nanoid │ │ │ ├── METADATA.toml │ │ │ └── nanoid │ │ │ │ ├── __init__.pyi │ │ │ │ ├── algorithm.pyi │ │ │ │ ├── generate.pyi │ │ │ │ ├── method.pyi │ │ │ │ ├── non_secure_generate.pyi │ │ │ │ └── resources.pyi │ │ │ ├── nanoleafapi │ │ │ ├── METADATA.toml │ │ │ └── nanoleafapi │ │ │ │ ├── __init__.pyi │ │ │ │ ├── digital_twin.pyi │ │ │ │ ├── discovery.pyi │ │ │ │ └── nanoleaf.pyi │ │ │ ├── netaddr │ │ │ ├── METADATA.toml │ │ │ └── netaddr │ │ │ │ ├── __init__.pyi │ │ │ │ ├── cli.pyi │ │ │ │ ├── compat.pyi │ │ │ │ ├── contrib │ │ │ │ ├── __init__.pyi │ │ │ │ └── subnet_splitter.pyi │ │ │ │ ├── core.pyi │ │ │ │ ├── eui │ │ │ │ ├── __init__.pyi │ │ │ │ └── ieee.pyi │ │ │ │ ├── fbsocket.pyi │ │ │ │ ├── ip │ │ │ │ ├── __init__.pyi │ │ │ │ ├── glob.pyi │ │ │ │ ├── iana.pyi │ │ │ │ ├── nmap.pyi │ │ │ │ ├── rfc1924.pyi │ │ │ │ └── sets.pyi │ │ │ │ └── strategy │ │ │ │ ├── __init__.pyi │ │ │ │ ├── eui48.pyi │ │ │ │ ├── eui64.pyi │ │ │ │ ├── ipv4.pyi │ │ │ │ └── ipv6.pyi │ │ │ ├── netifaces │ │ │ ├── METADATA.toml │ │ │ └── netifaces.pyi │ │ │ ├── networkx │ │ │ ├── METADATA.toml │ │ │ └── networkx │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _typing.pyi │ │ │ │ ├── algorithms │ │ │ │ ├── __init__.pyi │ │ │ │ ├── approximation │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── clique.pyi │ │ │ │ │ ├── clustering_coefficient.pyi │ │ │ │ │ ├── connectivity.pyi │ │ │ │ │ ├── density.pyi │ │ │ │ │ ├── distance_measures.pyi │ │ │ │ │ ├── dominating_set.pyi │ │ │ │ │ ├── kcomponents.pyi │ │ │ │ │ ├── matching.pyi │ │ │ │ │ ├── maxcut.pyi │ │ │ │ │ ├── ramsey.pyi │ │ │ │ │ ├── steinertree.pyi │ │ │ │ │ ├── traveling_salesman.pyi │ │ │ │ │ ├── treewidth.pyi │ │ │ │ │ └── vertex_cover.pyi │ │ │ │ ├── assortativity │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── connectivity.pyi │ │ │ │ │ ├── correlation.pyi │ │ │ │ │ ├── mixing.pyi │ │ │ │ │ ├── neighbor_degree.pyi │ │ │ │ │ └── pairs.pyi │ │ │ │ ├── asteroidal.pyi │ │ │ │ ├── bipartite │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── basic.pyi │ │ │ │ │ ├── centrality.pyi │ │ │ │ │ ├── cluster.pyi │ │ │ │ │ ├── covering.pyi │ │ │ │ │ ├── edgelist.pyi │ │ │ │ │ ├── extendability.pyi │ │ │ │ │ ├── generators.pyi │ │ │ │ │ ├── link_analysis.pyi │ │ │ │ │ ├── matching.pyi │ │ │ │ │ ├── matrix.pyi │ │ │ │ │ ├── projection.pyi │ │ │ │ │ ├── redundancy.pyi │ │ │ │ │ └── spectral.pyi │ │ │ │ ├── boundary.pyi │ │ │ │ ├── bridges.pyi │ │ │ │ ├── broadcasting.pyi │ │ │ │ ├── centrality │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── betweenness.pyi │ │ │ │ │ ├── betweenness_subset.pyi │ │ │ │ │ ├── closeness.pyi │ │ │ │ │ ├── current_flow_betweenness.pyi │ │ │ │ │ ├── current_flow_betweenness_subset.pyi │ │ │ │ │ ├── current_flow_closeness.pyi │ │ │ │ │ ├── degree_alg.pyi │ │ │ │ │ ├── dispersion.pyi │ │ │ │ │ ├── eigenvector.pyi │ │ │ │ │ ├── flow_matrix.pyi │ │ │ │ │ ├── group.pyi │ │ │ │ │ ├── harmonic.pyi │ │ │ │ │ ├── katz.pyi │ │ │ │ │ ├── laplacian.pyi │ │ │ │ │ ├── load.pyi │ │ │ │ │ ├── percolation.pyi │ │ │ │ │ ├── reaching.pyi │ │ │ │ │ ├── second_order.pyi │ │ │ │ │ ├── subgraph_alg.pyi │ │ │ │ │ ├── trophic.pyi │ │ │ │ │ └── voterank_alg.pyi │ │ │ │ ├── chains.pyi │ │ │ │ ├── chordal.pyi │ │ │ │ ├── clique.pyi │ │ │ │ ├── cluster.pyi │ │ │ │ ├── coloring │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── equitable_coloring.pyi │ │ │ │ │ └── greedy_coloring.pyi │ │ │ │ ├── communicability_alg.pyi │ │ │ │ ├── community │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── asyn_fluid.pyi │ │ │ │ │ ├── centrality.pyi │ │ │ │ │ ├── community_utils.pyi │ │ │ │ │ ├── divisive.pyi │ │ │ │ │ ├── kclique.pyi │ │ │ │ │ ├── kernighan_lin.pyi │ │ │ │ │ ├── label_propagation.pyi │ │ │ │ │ ├── leiden.pyi │ │ │ │ │ ├── local.pyi │ │ │ │ │ ├── louvain.pyi │ │ │ │ │ ├── lukes.pyi │ │ │ │ │ ├── modularity_max.pyi │ │ │ │ │ └── quality.pyi │ │ │ │ ├── components │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── attracting.pyi │ │ │ │ │ ├── biconnected.pyi │ │ │ │ │ ├── connected.pyi │ │ │ │ │ ├── semiconnected.pyi │ │ │ │ │ ├── strongly_connected.pyi │ │ │ │ │ └── weakly_connected.pyi │ │ │ │ ├── connectivity │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── connectivity.pyi │ │ │ │ │ ├── cuts.pyi │ │ │ │ │ ├── disjoint_paths.pyi │ │ │ │ │ ├── edge_augmentation.pyi │ │ │ │ │ ├── edge_kcomponents.pyi │ │ │ │ │ ├── kcomponents.pyi │ │ │ │ │ ├── kcutsets.pyi │ │ │ │ │ ├── stoerwagner.pyi │ │ │ │ │ └── utils.pyi │ │ │ │ ├── core.pyi │ │ │ │ ├── covering.pyi │ │ │ │ ├── cuts.pyi │ │ │ │ ├── cycles.pyi │ │ │ │ ├── d_separation.pyi │ │ │ │ ├── dag.pyi │ │ │ │ ├── distance_measures.pyi │ │ │ │ ├── distance_regular.pyi │ │ │ │ ├── dominance.pyi │ │ │ │ ├── dominating.pyi │ │ │ │ ├── efficiency_measures.pyi │ │ │ │ ├── euler.pyi │ │ │ │ ├── flow │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── boykovkolmogorov.pyi │ │ │ │ │ ├── capacityscaling.pyi │ │ │ │ │ ├── dinitz_alg.pyi │ │ │ │ │ ├── edmondskarp.pyi │ │ │ │ │ ├── gomory_hu.pyi │ │ │ │ │ ├── maxflow.pyi │ │ │ │ │ ├── mincost.pyi │ │ │ │ │ ├── networksimplex.pyi │ │ │ │ │ ├── preflowpush.pyi │ │ │ │ │ ├── shortestaugmentingpath.pyi │ │ │ │ │ └── utils.pyi │ │ │ │ ├── graph_hashing.pyi │ │ │ │ ├── graphical.pyi │ │ │ │ ├── hierarchy.pyi │ │ │ │ ├── hybrid.pyi │ │ │ │ ├── isolate.pyi │ │ │ │ ├── isomorphism │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── ismags.pyi │ │ │ │ │ ├── isomorph.pyi │ │ │ │ │ ├── isomorphvf2.pyi │ │ │ │ │ ├── matchhelpers.pyi │ │ │ │ │ ├── temporalisomorphvf2.pyi │ │ │ │ │ ├── tree_isomorphism.pyi │ │ │ │ │ ├── vf2pp.pyi │ │ │ │ │ └── vf2userfunc.pyi │ │ │ │ ├── link_analysis │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── hits_alg.pyi │ │ │ │ │ └── pagerank_alg.pyi │ │ │ │ ├── link_prediction.pyi │ │ │ │ ├── lowest_common_ancestors.pyi │ │ │ │ ├── matching.pyi │ │ │ │ ├── minors │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── contraction.pyi │ │ │ │ ├── mis.pyi │ │ │ │ ├── moral.pyi │ │ │ │ ├── node_classification.pyi │ │ │ │ ├── non_randomness.pyi │ │ │ │ ├── operators │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── all.pyi │ │ │ │ │ ├── binary.pyi │ │ │ │ │ ├── product.pyi │ │ │ │ │ └── unary.pyi │ │ │ │ ├── planar_drawing.pyi │ │ │ │ ├── planarity.pyi │ │ │ │ ├── polynomials.pyi │ │ │ │ ├── reciprocity.pyi │ │ │ │ ├── regular.pyi │ │ │ │ ├── richclub.pyi │ │ │ │ ├── shortest_paths │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── astar.pyi │ │ │ │ │ ├── dense.pyi │ │ │ │ │ ├── generic.pyi │ │ │ │ │ ├── unweighted.pyi │ │ │ │ │ └── weighted.pyi │ │ │ │ ├── similarity.pyi │ │ │ │ ├── simple_paths.pyi │ │ │ │ ├── smallworld.pyi │ │ │ │ ├── smetric.pyi │ │ │ │ ├── sparsifiers.pyi │ │ │ │ ├── structuralholes.pyi │ │ │ │ ├── summarization.pyi │ │ │ │ ├── swap.pyi │ │ │ │ ├── threshold.pyi │ │ │ │ ├── time_dependent.pyi │ │ │ │ ├── tournament.pyi │ │ │ │ ├── traversal │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── beamsearch.pyi │ │ │ │ │ ├── breadth_first_search.pyi │ │ │ │ │ ├── depth_first_search.pyi │ │ │ │ │ ├── edgebfs.pyi │ │ │ │ │ └── edgedfs.pyi │ │ │ │ ├── tree │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── branchings.pyi │ │ │ │ │ ├── coding.pyi │ │ │ │ │ ├── decomposition.pyi │ │ │ │ │ ├── mst.pyi │ │ │ │ │ ├── operations.pyi │ │ │ │ │ └── recognition.pyi │ │ │ │ ├── triads.pyi │ │ │ │ ├── vitality.pyi │ │ │ │ ├── voronoi.pyi │ │ │ │ ├── walks.pyi │ │ │ │ └── wiener.pyi │ │ │ │ ├── classes │ │ │ │ ├── __init__.pyi │ │ │ │ ├── coreviews.pyi │ │ │ │ ├── digraph.pyi │ │ │ │ ├── filters.pyi │ │ │ │ ├── function.pyi │ │ │ │ ├── graph.pyi │ │ │ │ ├── graphviews.pyi │ │ │ │ ├── multidigraph.pyi │ │ │ │ ├── multigraph.pyi │ │ │ │ └── reportviews.pyi │ │ │ │ ├── convert.pyi │ │ │ │ ├── convert_matrix.pyi │ │ │ │ ├── drawing │ │ │ │ ├── __init__.pyi │ │ │ │ ├── layout.pyi │ │ │ │ ├── nx_agraph.pyi │ │ │ │ ├── nx_latex.pyi │ │ │ │ ├── nx_pydot.pyi │ │ │ │ └── nx_pylab.pyi │ │ │ │ ├── exception.pyi │ │ │ │ ├── generators │ │ │ │ ├── __init__.pyi │ │ │ │ ├── atlas.pyi │ │ │ │ ├── classic.pyi │ │ │ │ ├── cographs.pyi │ │ │ │ ├── community.pyi │ │ │ │ ├── degree_seq.pyi │ │ │ │ ├── directed.pyi │ │ │ │ ├── duplication.pyi │ │ │ │ ├── ego.pyi │ │ │ │ ├── expanders.pyi │ │ │ │ ├── geometric.pyi │ │ │ │ ├── harary_graph.pyi │ │ │ │ ├── internet_as_graphs.pyi │ │ │ │ ├── intersection.pyi │ │ │ │ ├── interval_graph.pyi │ │ │ │ ├── joint_degree_seq.pyi │ │ │ │ ├── lattice.pyi │ │ │ │ ├── line.pyi │ │ │ │ ├── mycielski.pyi │ │ │ │ ├── nonisomorphic_trees.pyi │ │ │ │ ├── random_clustered.pyi │ │ │ │ ├── random_graphs.pyi │ │ │ │ ├── small.pyi │ │ │ │ ├── social.pyi │ │ │ │ ├── spectral_graph_forge.pyi │ │ │ │ ├── stochastic.pyi │ │ │ │ ├── sudoku.pyi │ │ │ │ ├── time_series.pyi │ │ │ │ ├── trees.pyi │ │ │ │ └── triads.pyi │ │ │ │ ├── lazy_imports.pyi │ │ │ │ ├── linalg │ │ │ │ ├── __init__.pyi │ │ │ │ ├── algebraicconnectivity.pyi │ │ │ │ ├── attrmatrix.pyi │ │ │ │ ├── bethehessianmatrix.pyi │ │ │ │ ├── graphmatrix.pyi │ │ │ │ ├── laplacianmatrix.pyi │ │ │ │ ├── modularitymatrix.pyi │ │ │ │ └── spectrum.pyi │ │ │ │ ├── readwrite │ │ │ │ ├── __init__.pyi │ │ │ │ ├── adjlist.pyi │ │ │ │ ├── edgelist.pyi │ │ │ │ ├── gexf.pyi │ │ │ │ ├── gml.pyi │ │ │ │ ├── graph6.pyi │ │ │ │ ├── graphml.pyi │ │ │ │ ├── json_graph │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── adjacency.pyi │ │ │ │ │ ├── cytoscape.pyi │ │ │ │ │ ├── node_link.pyi │ │ │ │ │ └── tree.pyi │ │ │ │ ├── leda.pyi │ │ │ │ ├── multiline_adjlist.pyi │ │ │ │ ├── p2g.pyi │ │ │ │ ├── pajek.pyi │ │ │ │ ├── sparse6.pyi │ │ │ │ └── text.pyi │ │ │ │ ├── relabel.pyi │ │ │ │ └── utils │ │ │ │ ├── __init__.pyi │ │ │ │ ├── backends.pyi │ │ │ │ ├── configs.pyi │ │ │ │ ├── decorators.pyi │ │ │ │ ├── heaps.pyi │ │ │ │ ├── mapped_queue.pyi │ │ │ │ ├── misc.pyi │ │ │ │ ├── random_sequence.pyi │ │ │ │ ├── rcm.pyi │ │ │ │ └── union_find.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 │ │ │ │ └── rfc8628 │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── clients │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── device.pyi │ │ │ │ │ ├── endpoints │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── device_authorization.pyi │ │ │ │ │ └── pre_configured.pyi │ │ │ │ │ ├── errors.pyi │ │ │ │ │ ├── grant_types │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── device_code.pyi │ │ │ │ │ └── request_validator.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 │ │ │ │ │ └── refresh_token.pyi │ │ │ │ │ ├── request_validator.pyi │ │ │ │ │ └── tokens.pyi │ │ │ │ ├── signals.pyi │ │ │ │ └── uri_validate.pyi │ │ │ ├── objgraph │ │ │ ├── METADATA.toml │ │ │ └── objgraph.pyi │ │ │ ├── olefile │ │ │ ├── METADATA.toml │ │ │ └── olefile │ │ │ │ ├── __init__.pyi │ │ │ │ └── olefile.pyi │ │ │ ├── openpyxl │ │ │ ├── METADATA.toml │ │ │ └── openpyxl │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _constants.pyi │ │ │ │ ├── cell │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _writer.pyi │ │ │ │ ├── cell.pyi │ │ │ │ ├── read_only.pyi │ │ │ │ ├── rich_text.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 │ │ │ │ ├── container.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 │ │ │ │ ├── custom.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 │ │ │ │ ├── formula.pyi │ │ │ │ ├── header_footer.pyi │ │ │ │ ├── hyperlink.pyi │ │ │ │ ├── merge.pyi │ │ │ │ ├── ole.pyi │ │ │ │ ├── page.pyi │ │ │ │ ├── pagebreak.pyi │ │ │ │ ├── picture.pyi │ │ │ │ ├── print_settings.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 │ │ │ │ ├── _functions_overloads.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 │ │ │ │ ├── _winapi.pyi │ │ │ │ ├── agent.pyi │ │ │ │ ├── auth_handler.pyi │ │ │ │ ├── auth_strategy.pyi │ │ │ │ ├── ber.pyi │ │ │ │ ├── buffered_pipe.pyi │ │ │ │ ├── channel.pyi │ │ │ │ ├── client.pyi │ │ │ │ ├── common.pyi │ │ │ │ ├── compress.pyi │ │ │ │ ├── config.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 │ │ │ │ ├── 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 │ │ │ ├── peewee │ │ │ ├── METADATA.toml │ │ │ ├── peewee.pyi │ │ │ └── playhouse │ │ │ │ ├── __init__.pyi │ │ │ │ └── flask_utils.pyi │ │ │ ├── pep8-naming │ │ │ ├── METADATA.toml │ │ │ └── pep8ext_naming.pyi │ │ │ ├── pexpect │ │ │ ├── METADATA.toml │ │ │ └── pexpect │ │ │ │ ├── ANSI.pyi │ │ │ │ ├── FSM.pyi │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _async.pyi │ │ │ │ ├── exceptions.pyi │ │ │ │ ├── expect.pyi │ │ │ │ ├── fdpexpect.pyi │ │ │ │ ├── popen_spawn.pyi │ │ │ │ ├── pty_spawn.pyi │ │ │ │ ├── pxssh.pyi │ │ │ │ ├── replwrap.pyi │ │ │ │ ├── run.pyi │ │ │ │ ├── screen.pyi │ │ │ │ ├── socket_pexpect.pyi │ │ │ │ ├── spawnbase.pyi │ │ │ │ └── utils.pyi │ │ │ ├── pika │ │ │ ├── METADATA.toml │ │ │ └── pika │ │ │ │ ├── __init__.pyi │ │ │ │ ├── adapters │ │ │ │ ├── __init__.pyi │ │ │ │ ├── asyncio_connection.pyi │ │ │ │ ├── base_connection.pyi │ │ │ │ ├── blocking_connection.pyi │ │ │ │ ├── gevent_connection.pyi │ │ │ │ ├── select_connection.pyi │ │ │ │ ├── tornado_connection.pyi │ │ │ │ ├── twisted_connection.pyi │ │ │ │ └── utils │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── connection_workflow.pyi │ │ │ │ │ ├── io_services_utils.pyi │ │ │ │ │ ├── nbio_interface.pyi │ │ │ │ │ └── selector_ioloop_adapter.pyi │ │ │ │ ├── amqp_object.pyi │ │ │ │ ├── callback.pyi │ │ │ │ ├── channel.pyi │ │ │ │ ├── compat.pyi │ │ │ │ ├── connection.pyi │ │ │ │ ├── credentials.pyi │ │ │ │ ├── data.pyi │ │ │ │ ├── delivery_mode.pyi │ │ │ │ ├── diagnostic_utils.pyi │ │ │ │ ├── exceptions.pyi │ │ │ │ ├── exchange_type.pyi │ │ │ │ ├── frame.pyi │ │ │ │ ├── heartbeat.pyi │ │ │ │ ├── spec.pyi │ │ │ │ ├── tcp_socket_opts.pyi │ │ │ │ └── validators.pyi │ │ │ ├── polib │ │ │ ├── METADATA.toml │ │ │ └── polib.pyi │ │ │ ├── pony │ │ │ ├── METADATA.toml │ │ │ └── pony │ │ │ │ ├── __init__.pyi │ │ │ │ ├── converting.pyi │ │ │ │ ├── flask │ │ │ │ ├── __init__.pyi │ │ │ │ └── example │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── app.pyi │ │ │ │ │ ├── config.pyi │ │ │ │ │ ├── models.pyi │ │ │ │ │ └── views.pyi │ │ │ │ ├── options.pyi │ │ │ │ ├── orm │ │ │ │ ├── __init__.pyi │ │ │ │ ├── asttranslation.pyi │ │ │ │ ├── core.pyi │ │ │ │ ├── dbapiprovider.pyi │ │ │ │ ├── dbproviders │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── cockroach.pyi │ │ │ │ │ ├── mysql.pyi │ │ │ │ │ ├── oracle.pyi │ │ │ │ │ ├── postgres.pyi │ │ │ │ │ └── sqlite.pyi │ │ │ │ ├── dbschema.pyi │ │ │ │ ├── decompiling.pyi │ │ │ │ ├── examples │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── alessandro_bug.pyi │ │ │ │ │ ├── bottle_example.pyi │ │ │ │ │ ├── bug_ben.pyi │ │ │ │ │ ├── compositekeys.pyi │ │ │ │ │ ├── demo.pyi │ │ │ │ │ ├── estore.pyi │ │ │ │ │ ├── inheritance1.pyi │ │ │ │ │ ├── numbers.pyi │ │ │ │ │ ├── session01.pyi │ │ │ │ │ ├── university1.pyi │ │ │ │ │ └── university2.pyi │ │ │ │ ├── integration │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── bottle_plugin.pyi │ │ │ │ ├── ormtypes.pyi │ │ │ │ ├── serialization.pyi │ │ │ │ ├── sqlbuilding.pyi │ │ │ │ ├── sqlsymbols.pyi │ │ │ │ └── sqltranslation.pyi │ │ │ │ ├── py23compat.pyi │ │ │ │ ├── thirdparty │ │ │ │ ├── __init__.pyi │ │ │ │ └── decorator.pyi │ │ │ │ └── utils │ │ │ │ ├── __init__.pyi │ │ │ │ ├── properties.pyi │ │ │ │ └── utils.pyi │ │ │ ├── portpicker │ │ │ ├── METADATA.toml │ │ │ └── portpicker.pyi │ │ │ ├── protobuf │ │ │ ├── METADATA.toml │ │ │ └── google │ │ │ │ ├── _upb │ │ │ │ └── _message.pyi │ │ │ │ └── protobuf │ │ │ │ ├── __init__.pyi │ │ │ │ ├── any_pb2.pyi │ │ │ │ ├── api_pb2.pyi │ │ │ │ ├── compiler │ │ │ │ ├── __init__.pyi │ │ │ │ └── plugin_pb2.pyi │ │ │ │ ├── descriptor.pyi │ │ │ │ ├── descriptor_database.pyi │ │ │ │ ├── descriptor_pb2.pyi │ │ │ │ ├── descriptor_pool.pyi │ │ │ │ ├── duration_pb2.pyi │ │ │ │ ├── empty_pb2.pyi │ │ │ │ ├── field_mask_pb2.pyi │ │ │ │ ├── internal │ │ │ │ ├── __init__.pyi │ │ │ │ ├── api_implementation.pyi │ │ │ │ ├── builder.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 │ │ │ │ ├── runtime_version.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 │ │ │ │ ├── _psaix.pyi │ │ │ │ ├── _psbsd.pyi │ │ │ │ ├── _pslinux.pyi │ │ │ │ ├── _psosx.pyi │ │ │ │ ├── _psposix.pyi │ │ │ │ ├── _pssunos.pyi │ │ │ │ ├── _psutil_linux.pyi │ │ │ │ ├── _psutil_osx.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 │ │ │ ├── pyRFC3339 │ │ │ ├── METADATA.toml │ │ │ └── pyrfc3339 │ │ │ │ ├── __init__.pyi │ │ │ │ ├── generator.pyi │ │ │ │ ├── parser.pyi │ │ │ │ └── utils.pyi │ │ │ ├── pyasn1 │ │ │ ├── METADATA.toml │ │ │ └── pyasn1 │ │ │ │ ├── __init__.pyi │ │ │ │ ├── codec │ │ │ │ ├── __init__.pyi │ │ │ │ ├── ber │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── decoder.pyi │ │ │ │ │ ├── encoder.pyi │ │ │ │ │ └── eoo.pyi │ │ │ │ ├── cer │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── decoder.pyi │ │ │ │ │ └── encoder.pyi │ │ │ │ ├── der │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── decoder.pyi │ │ │ │ │ └── encoder.pyi │ │ │ │ ├── native │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── decoder.pyi │ │ │ │ │ └── encoder.pyi │ │ │ │ └── streaming.pyi │ │ │ │ ├── compat │ │ │ │ ├── __init__.pyi │ │ │ │ └── integer.pyi │ │ │ │ ├── debug.pyi │ │ │ │ ├── error.pyi │ │ │ │ └── type │ │ │ │ ├── __init__.pyi │ │ │ │ ├── base.pyi │ │ │ │ ├── char.pyi │ │ │ │ ├── constraint.pyi │ │ │ │ ├── error.pyi │ │ │ │ ├── namedtype.pyi │ │ │ │ ├── namedval.pyi │ │ │ │ ├── opentype.pyi │ │ │ │ ├── tag.pyi │ │ │ │ ├── tagmap.pyi │ │ │ │ ├── univ.pyi │ │ │ │ └── useful.pyi │ │ │ ├── pyaudio │ │ │ ├── METADATA.toml │ │ │ └── pyaudio.pyi │ │ │ ├── pycocotools │ │ │ ├── METADATA.toml │ │ │ └── pycocotools │ │ │ │ ├── __init__.pyi │ │ │ │ ├── coco.pyi │ │ │ │ ├── cocoeval.pyi │ │ │ │ └── mask.pyi │ │ │ ├── pycurl │ │ │ ├── METADATA.toml │ │ │ └── pycurl.pyi │ │ │ ├── pyfarmhash │ │ │ ├── METADATA.toml │ │ │ └── farmhash.pyi │ │ │ ├── pyflakes │ │ │ ├── METADATA.toml │ │ │ └── pyflakes │ │ │ │ ├── __init__.pyi │ │ │ │ ├── __main__.pyi │ │ │ │ ├── api.pyi │ │ │ │ ├── checker.pyi │ │ │ │ ├── messages.pyi │ │ │ │ ├── reporter.pyi │ │ │ │ └── scripts │ │ │ │ ├── __init__.pyi │ │ │ │ └── pyflakes.pyi │ │ │ ├── pyinstaller │ │ │ ├── METADATA.toml │ │ │ ├── PyInstaller │ │ │ │ ├── __init__.pyi │ │ │ │ ├── __main__.pyi │ │ │ │ ├── building │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── api.pyi │ │ │ │ │ ├── build_main.pyi │ │ │ │ │ ├── datastruct.pyi │ │ │ │ │ └── splash.pyi │ │ │ │ ├── compat.pyi │ │ │ │ ├── depend │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── analysis.pyi │ │ │ │ │ └── imphookapi.pyi │ │ │ │ ├── isolated │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── _parent.pyi │ │ │ │ ├── lib │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── modulegraph │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── modulegraph.pyi │ │ │ │ └── utils │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── hooks │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── conda.pyi │ │ │ │ │ └── win32 │ │ │ │ │ └── versioninfo.pyi │ │ │ └── pyi_splash │ │ │ │ └── __init__.pyi │ │ │ ├── pyjks │ │ │ ├── METADATA.toml │ │ │ └── jks │ │ │ │ ├── __init__.pyi │ │ │ │ ├── bks.pyi │ │ │ │ ├── jks.pyi │ │ │ │ ├── rfc2898.pyi │ │ │ │ ├── rfc7292.pyi │ │ │ │ ├── sun_crypto.pyi │ │ │ │ └── util.pyi │ │ │ ├── pyluach │ │ │ ├── METADATA.toml │ │ │ └── pyluach │ │ │ │ ├── __init__.pyi │ │ │ │ ├── dates.pyi │ │ │ │ ├── hebrewcal.pyi │ │ │ │ ├── parshios.pyi │ │ │ │ └── utils.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 │ │ │ ├── pyperclip │ │ │ ├── METADATA.toml │ │ │ └── pyperclip │ │ │ │ └── __init__.pyi │ │ │ ├── pyserial │ │ │ ├── METADATA.toml │ │ │ └── serial │ │ │ │ ├── __init__.pyi │ │ │ │ ├── __main__.pyi │ │ │ │ ├── rfc2217.pyi │ │ │ │ ├── rs485.pyi │ │ │ │ ├── serialcli.pyi │ │ │ │ ├── serialjava.pyi │ │ │ │ ├── serialposix.pyi │ │ │ │ ├── serialutil.pyi │ │ │ │ ├── serialwin32.pyi │ │ │ │ ├── threaded │ │ │ │ └── __init__.pyi │ │ │ │ ├── tools │ │ │ │ ├── __init__.pyi │ │ │ │ ├── hexlify_codec.pyi │ │ │ │ ├── list_ports.pyi │ │ │ │ ├── list_ports_common.pyi │ │ │ │ ├── list_ports_linux.pyi │ │ │ │ ├── list_ports_osx.pyi │ │ │ │ ├── list_ports_posix.pyi │ │ │ │ ├── list_ports_windows.pyi │ │ │ │ └── miniterm.pyi │ │ │ │ ├── urlhandler │ │ │ │ ├── __init__.pyi │ │ │ │ ├── protocol_alt.pyi │ │ │ │ ├── protocol_cp2110.pyi │ │ │ │ ├── protocol_hwgrep.pyi │ │ │ │ ├── protocol_loop.pyi │ │ │ │ ├── protocol_rfc2217.pyi │ │ │ │ ├── protocol_socket.pyi │ │ │ │ └── protocol_spy.pyi │ │ │ │ └── win32.pyi │ │ │ ├── pysftp │ │ │ ├── METADATA.toml │ │ │ └── pysftp │ │ │ │ ├── __init__.pyi │ │ │ │ ├── exceptions.pyi │ │ │ │ └── helpers.pyi │ │ │ ├── pytest-lazy-fixture │ │ │ ├── METADATA.toml │ │ │ └── pytest_lazyfixture.pyi │ │ │ ├── python-crontab │ │ │ ├── METADATA.toml │ │ │ ├── cronlog.pyi │ │ │ ├── crontab.pyi │ │ │ └── crontabs.pyi │ │ │ ├── python-dateutil │ │ │ ├── METADATA.toml │ │ │ └── dateutil │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _common.pyi │ │ │ │ ├── _version.pyi │ │ │ │ ├── easter.pyi │ │ │ │ ├── parser │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _parser.pyi │ │ │ │ └── isoparser.pyi │ │ │ │ ├── relativedelta.pyi │ │ │ │ ├── rrule.pyi │ │ │ │ ├── tz │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _common.pyi │ │ │ │ ├── tz.pyi │ │ │ │ └── win.pyi │ │ │ │ ├── tzwin.pyi │ │ │ │ ├── utils.pyi │ │ │ │ └── zoneinfo │ │ │ │ ├── __init__.pyi │ │ │ │ └── rebuild.pyi │ │ │ ├── python-http-client │ │ │ ├── METADATA.toml │ │ │ └── python_http_client │ │ │ │ ├── __init__.pyi │ │ │ │ ├── client.pyi │ │ │ │ └── exceptions.pyi │ │ │ ├── python-jenkins │ │ │ ├── METADATA.toml │ │ │ └── jenkins │ │ │ │ ├── __init__.pyi │ │ │ │ ├── plugins.pyi │ │ │ │ └── version.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-xlib │ │ │ ├── METADATA.toml │ │ │ └── Xlib │ │ │ │ ├── X.pyi │ │ │ │ ├── XK.pyi │ │ │ │ ├── Xatom.pyi │ │ │ │ ├── Xcursorfont.pyi │ │ │ │ ├── Xutil.pyi │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _typing.pyi │ │ │ │ ├── display.pyi │ │ │ │ ├── error.pyi │ │ │ │ ├── ext │ │ │ │ ├── __init__.pyi │ │ │ │ ├── composite.pyi │ │ │ │ ├── damage.pyi │ │ │ │ ├── dpms.pyi │ │ │ │ ├── ge.pyi │ │ │ │ ├── nvcontrol.pyi │ │ │ │ ├── randr.pyi │ │ │ │ ├── record.pyi │ │ │ │ ├── res.pyi │ │ │ │ ├── screensaver.pyi │ │ │ │ ├── security.pyi │ │ │ │ ├── shape.pyi │ │ │ │ ├── xfixes.pyi │ │ │ │ ├── xinerama.pyi │ │ │ │ ├── xinput.pyi │ │ │ │ └── xtest.pyi │ │ │ │ ├── keysymdef │ │ │ │ ├── __init__.pyi │ │ │ │ ├── apl.pyi │ │ │ │ ├── arabic.pyi │ │ │ │ ├── cyrillic.pyi │ │ │ │ ├── greek.pyi │ │ │ │ ├── hebrew.pyi │ │ │ │ ├── katakana.pyi │ │ │ │ ├── korean.pyi │ │ │ │ ├── latin1.pyi │ │ │ │ ├── latin2.pyi │ │ │ │ ├── latin3.pyi │ │ │ │ ├── latin4.pyi │ │ │ │ ├── miscellany.pyi │ │ │ │ ├── publishing.pyi │ │ │ │ ├── special.pyi │ │ │ │ ├── technical.pyi │ │ │ │ ├── thai.pyi │ │ │ │ ├── xf86.pyi │ │ │ │ ├── xk3270.pyi │ │ │ │ └── xkb.pyi │ │ │ │ ├── protocol │ │ │ │ ├── __init__.pyi │ │ │ │ ├── display.pyi │ │ │ │ ├── event.pyi │ │ │ │ ├── request.pyi │ │ │ │ ├── rq.pyi │ │ │ │ └── structs.pyi │ │ │ │ ├── rdb.pyi │ │ │ │ ├── support │ │ │ │ ├── __init__.pyi │ │ │ │ ├── connect.pyi │ │ │ │ ├── lock.pyi │ │ │ │ ├── unix_connect.pyi │ │ │ │ └── vms_connect.pyi │ │ │ │ ├── threaded.pyi │ │ │ │ ├── xauth.pyi │ │ │ │ └── xobject │ │ │ │ ├── __init__.pyi │ │ │ │ ├── colormap.pyi │ │ │ │ ├── cursor.pyi │ │ │ │ ├── drawable.pyi │ │ │ │ ├── fontable.pyi │ │ │ │ ├── icccm.pyi │ │ │ │ └── resource.pyi │ │ │ ├── pytz │ │ │ ├── METADATA.toml │ │ │ └── pytz │ │ │ │ ├── __init__.pyi │ │ │ │ ├── exceptions.pyi │ │ │ │ ├── lazy.pyi │ │ │ │ ├── reference.pyi │ │ │ │ ├── tzfile.pyi │ │ │ │ └── tzinfo.pyi │ │ │ ├── pywin32 │ │ │ ├── METADATA.toml │ │ │ ├── _win32typing.pyi │ │ │ ├── commctrl.pyi │ │ │ ├── dde.pyi │ │ │ ├── isapi │ │ │ │ ├── __init__.pyi │ │ │ │ ├── install.pyi │ │ │ │ ├── isapicon.pyi │ │ │ │ ├── simple.pyi │ │ │ │ └── threaded_extension.pyi │ │ │ ├── mmapfile.pyi │ │ │ ├── mmsystem.pyi │ │ │ ├── ntsecuritycon.pyi │ │ │ ├── odbc.pyi │ │ │ ├── perfmon.pyi │ │ │ ├── pythoncom.pyi │ │ │ ├── pythonwin │ │ │ │ ├── __init__.pyi │ │ │ │ ├── dde.pyi │ │ │ │ ├── win32ui.pyi │ │ │ │ └── win32uiole.pyi │ │ │ ├── pywintypes.pyi │ │ │ ├── regutil.pyi │ │ │ ├── servicemanager.pyi │ │ │ ├── sspicon.pyi │ │ │ ├── timer.pyi │ │ │ ├── win2kras.pyi │ │ │ ├── win32 │ │ │ │ ├── __init__.pyi │ │ │ │ ├── lib │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── commctrl.pyi │ │ │ │ │ ├── mmsystem.pyi │ │ │ │ │ ├── ntsecuritycon.pyi │ │ │ │ │ ├── pywintypes.pyi │ │ │ │ │ ├── regutil.pyi │ │ │ │ │ ├── sspicon.pyi │ │ │ │ │ ├── win2kras.pyi │ │ │ │ │ ├── win32con.pyi │ │ │ │ │ ├── win32cryptcon.pyi │ │ │ │ │ ├── win32evtlogutil.pyi │ │ │ │ │ ├── win32gui_struct.pyi │ │ │ │ │ ├── win32inetcon.pyi │ │ │ │ │ ├── win32netcon.pyi │ │ │ │ │ ├── win32pdhquery.pyi │ │ │ │ │ ├── win32serviceutil.pyi │ │ │ │ │ ├── win32timezone.pyi │ │ │ │ │ ├── win32verstamp.pyi │ │ │ │ │ ├── winerror.pyi │ │ │ │ │ ├── winioctlcon.pyi │ │ │ │ │ ├── winnt.pyi │ │ │ │ │ ├── winperf.pyi │ │ │ │ │ └── winxptheme.pyi │ │ │ │ ├── mmapfile.pyi │ │ │ │ ├── odbc.pyi │ │ │ │ ├── perfmon.pyi │ │ │ │ ├── servicemanager.pyi │ │ │ │ ├── timer.pyi │ │ │ │ ├── win32api.pyi │ │ │ │ ├── win32clipboard.pyi │ │ │ │ ├── win32console.pyi │ │ │ │ ├── win32cred.pyi │ │ │ │ ├── win32crypt.pyi │ │ │ │ ├── win32event.pyi │ │ │ │ ├── win32evtlog.pyi │ │ │ │ ├── win32file.pyi │ │ │ │ ├── win32gui.pyi │ │ │ │ ├── win32help.pyi │ │ │ │ ├── win32inet.pyi │ │ │ │ ├── win32job.pyi │ │ │ │ ├── win32lz.pyi │ │ │ │ ├── win32net.pyi │ │ │ │ ├── win32pdh.pyi │ │ │ │ ├── win32pipe.pyi │ │ │ │ ├── win32print.pyi │ │ │ │ ├── win32process.pyi │ │ │ │ ├── win32profile.pyi │ │ │ │ ├── win32ras.pyi │ │ │ │ ├── win32security.pyi │ │ │ │ ├── win32service.pyi │ │ │ │ ├── win32trace.pyi │ │ │ │ ├── win32transaction.pyi │ │ │ │ ├── win32ts.pyi │ │ │ │ ├── win32wnet.pyi │ │ │ │ └── winxpgui.pyi │ │ │ ├── win32api.pyi │ │ │ ├── win32clipboard.pyi │ │ │ ├── win32com │ │ │ │ ├── __init__.pyi │ │ │ │ ├── adsi │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── adsi.pyi │ │ │ │ │ └── adsicon.pyi │ │ │ │ ├── authorization │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── authorization.pyi │ │ │ │ ├── axcontrol │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── axcontrol.pyi │ │ │ │ ├── axdebug │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── adb.pyi │ │ │ │ │ ├── axdebug.pyi │ │ │ │ │ ├── codecontainer.pyi │ │ │ │ │ ├── contexts.pyi │ │ │ │ │ ├── debugger.pyi │ │ │ │ │ ├── documents.pyi │ │ │ │ │ ├── expressions.pyi │ │ │ │ │ ├── gateways.pyi │ │ │ │ │ ├── stackframe.pyi │ │ │ │ │ └── util.pyi │ │ │ │ ├── axscript │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── asputil.pyi │ │ │ │ │ ├── axscript.pyi │ │ │ │ │ ├── client │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── debug.pyi │ │ │ │ │ │ ├── error.pyi │ │ │ │ │ │ └── framework.pyi │ │ │ │ │ └── server │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── axsite.pyi │ │ │ │ ├── bits │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── bits.pyi │ │ │ │ ├── client │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── build.pyi │ │ │ │ │ ├── dynamic.pyi │ │ │ │ │ └── gencache.pyi │ │ │ │ ├── directsound │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── directsound.pyi │ │ │ │ ├── gen_py │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── ifilter │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── ifilter.pyi │ │ │ │ │ └── ifiltercon.pyi │ │ │ │ ├── internet │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── inetcon.pyi │ │ │ │ │ └── internet.pyi │ │ │ │ ├── mapi │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── emsabtags.pyi │ │ │ │ │ ├── exchange.pyi │ │ │ │ │ ├── mapi.pyi │ │ │ │ │ ├── mapitags.pyi │ │ │ │ │ └── mapiutil.pyi │ │ │ │ ├── olectl.pyi │ │ │ │ ├── propsys │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── propsys.pyi │ │ │ │ │ └── pscon.pyi │ │ │ │ ├── server │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── connect.pyi │ │ │ │ │ ├── dispatcher.pyi │ │ │ │ │ ├── exception.pyi │ │ │ │ │ ├── factory.pyi │ │ │ │ │ ├── localserver.pyi │ │ │ │ │ ├── policy.pyi │ │ │ │ │ ├── register.pyi │ │ │ │ │ └── util.pyi │ │ │ │ ├── shell │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── shell.pyi │ │ │ │ │ └── shellcon.pyi │ │ │ │ ├── storagecon.pyi │ │ │ │ ├── taskscheduler │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── taskscheduler.pyi │ │ │ │ ├── universal.pyi │ │ │ │ └── util.pyi │ │ │ ├── win32comext │ │ │ │ ├── __init__.pyi │ │ │ │ ├── adsi │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── adsi.pyi │ │ │ │ │ └── adsicon.pyi │ │ │ │ ├── authorization │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── authorization.pyi │ │ │ │ ├── axcontrol │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── axcontrol.pyi │ │ │ │ ├── axdebug │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── adb.pyi │ │ │ │ │ ├── axdebug.pyi │ │ │ │ │ ├── codecontainer.pyi │ │ │ │ │ ├── contexts.pyi │ │ │ │ │ ├── debugger.pyi │ │ │ │ │ ├── documents.pyi │ │ │ │ │ ├── expressions.pyi │ │ │ │ │ ├── gateways.pyi │ │ │ │ │ ├── stackframe.pyi │ │ │ │ │ └── util.pyi │ │ │ │ ├── axscript │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── asputil.pyi │ │ │ │ │ ├── axscript.pyi │ │ │ │ │ ├── client │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── debug.pyi │ │ │ │ │ │ ├── error.pyi │ │ │ │ │ │ └── framework.pyi │ │ │ │ │ └── server │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ └── axsite.pyi │ │ │ │ ├── bits │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── bits.pyi │ │ │ │ ├── directsound │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── directsound.pyi │ │ │ │ ├── ifilter │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── ifilter.pyi │ │ │ │ │ └── ifiltercon.pyi │ │ │ │ ├── internet │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── inetcon.pyi │ │ │ │ │ └── internet.pyi │ │ │ │ ├── mapi │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── emsabtags.pyi │ │ │ │ │ ├── exchange.pyi │ │ │ │ │ ├── mapi.pyi │ │ │ │ │ ├── mapitags.pyi │ │ │ │ │ └── mapiutil.pyi │ │ │ │ ├── propsys │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── propsys.pyi │ │ │ │ │ └── pscon.pyi │ │ │ │ ├── shell │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── shell.pyi │ │ │ │ │ └── shellcon.pyi │ │ │ │ └── taskscheduler │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── taskscheduler.pyi │ │ │ ├── win32con.pyi │ │ │ ├── win32console.pyi │ │ │ ├── win32cred.pyi │ │ │ ├── win32crypt.pyi │ │ │ ├── win32cryptcon.pyi │ │ │ ├── win32event.pyi │ │ │ ├── win32evtlog.pyi │ │ │ ├── win32evtlogutil.pyi │ │ │ ├── win32file.pyi │ │ │ ├── win32gui.pyi │ │ │ ├── win32gui_struct.pyi │ │ │ ├── win32help.pyi │ │ │ ├── win32inet.pyi │ │ │ ├── win32inetcon.pyi │ │ │ ├── win32job.pyi │ │ │ ├── win32lz.pyi │ │ │ ├── win32net.pyi │ │ │ ├── win32netcon.pyi │ │ │ ├── win32pdh.pyi │ │ │ ├── win32pdhquery.pyi │ │ │ ├── win32pipe.pyi │ │ │ ├── win32print.pyi │ │ │ ├── win32process.pyi │ │ │ ├── win32profile.pyi │ │ │ ├── win32ras.pyi │ │ │ ├── win32security.pyi │ │ │ ├── win32service.pyi │ │ │ ├── win32serviceutil.pyi │ │ │ ├── win32timezone.pyi │ │ │ ├── win32trace.pyi │ │ │ ├── win32transaction.pyi │ │ │ ├── win32ts.pyi │ │ │ ├── win32ui.pyi │ │ │ ├── win32uiole.pyi │ │ │ ├── win32verstamp.pyi │ │ │ ├── win32wnet.pyi │ │ │ ├── winerror.pyi │ │ │ ├── winioctlcon.pyi │ │ │ ├── winnt.pyi │ │ │ ├── winperf.pyi │ │ │ ├── winxpgui.pyi │ │ │ └── winxptheme.pyi │ │ │ ├── pyxdg │ │ │ ├── METADATA.toml │ │ │ └── xdg │ │ │ │ ├── BaseDirectory.pyi │ │ │ │ ├── Config.pyi │ │ │ │ ├── DesktopEntry.pyi │ │ │ │ ├── Exceptions.pyi │ │ │ │ ├── IconTheme.pyi │ │ │ │ ├── IniFile.pyi │ │ │ │ ├── Locale.pyi │ │ │ │ ├── Menu.pyi │ │ │ │ ├── MenuEditor.pyi │ │ │ │ ├── Mime.pyi │ │ │ │ ├── RecentFiles.pyi │ │ │ │ ├── __init__.pyi │ │ │ │ └── util.pyi │ │ │ ├── qrbill │ │ │ ├── METADATA.toml │ │ │ └── qrbill │ │ │ │ ├── __init__.pyi │ │ │ │ └── bill.pyi │ │ │ ├── qrcode │ │ │ ├── METADATA.toml │ │ │ └── qrcode │ │ │ │ ├── LUT.pyi │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _types.pyi │ │ │ │ ├── base.pyi │ │ │ │ ├── console_scripts.pyi │ │ │ │ ├── constants.pyi │ │ │ │ ├── exceptions.pyi │ │ │ │ ├── image │ │ │ │ ├── __init__.pyi │ │ │ │ ├── base.pyi │ │ │ │ ├── pil.pyi │ │ │ │ ├── pure.pyi │ │ │ │ ├── styledpil.pyi │ │ │ │ ├── styles │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── colormasks.pyi │ │ │ │ │ └── moduledrawers │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ ├── pil.pyi │ │ │ │ │ │ └── svg.pyi │ │ │ │ └── svg.pyi │ │ │ │ ├── main.pyi │ │ │ │ ├── release.pyi │ │ │ │ └── util.pyi │ │ │ ├── ratelimit │ │ │ ├── METADATA.toml │ │ │ └── ratelimit │ │ │ │ ├── __init__.pyi │ │ │ │ ├── decorators.pyi │ │ │ │ └── exception.pyi │ │ │ ├── regex │ │ │ ├── METADATA.toml │ │ │ └── regex │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _regex.pyi │ │ │ │ ├── _regex_core.pyi │ │ │ │ └── regex.pyi │ │ │ ├── reportlab │ │ │ ├── METADATA.toml │ │ │ └── reportlab │ │ │ │ ├── __init__.pyi │ │ │ │ ├── graphics │ │ │ │ ├── __init__.pyi │ │ │ │ ├── barcode │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── code128.pyi │ │ │ │ │ ├── code39.pyi │ │ │ │ │ ├── code93.pyi │ │ │ │ │ ├── common.pyi │ │ │ │ │ ├── dmtx.pyi │ │ │ │ │ ├── eanbc.pyi │ │ │ │ │ ├── ecc200datamatrix.pyi │ │ │ │ │ ├── fourstate.pyi │ │ │ │ │ ├── lto.pyi │ │ │ │ │ ├── qr.pyi │ │ │ │ │ ├── qrencoder.pyi │ │ │ │ │ ├── usps.pyi │ │ │ │ │ ├── usps4s.pyi │ │ │ │ │ └── widgets.pyi │ │ │ │ ├── charts │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── areas.pyi │ │ │ │ │ ├── axes.pyi │ │ │ │ │ ├── barcharts.pyi │ │ │ │ │ ├── dotbox.pyi │ │ │ │ │ ├── doughnut.pyi │ │ │ │ │ ├── legends.pyi │ │ │ │ │ ├── linecharts.pyi │ │ │ │ │ ├── lineplots.pyi │ │ │ │ │ ├── markers.pyi │ │ │ │ │ ├── piecharts.pyi │ │ │ │ │ ├── slidebox.pyi │ │ │ │ │ ├── spider.pyi │ │ │ │ │ ├── textlabels.pyi │ │ │ │ │ ├── utils.pyi │ │ │ │ │ └── utils3d.pyi │ │ │ │ ├── renderPDF.pyi │ │ │ │ ├── renderPM.pyi │ │ │ │ ├── renderPS.pyi │ │ │ │ ├── renderSVG.pyi │ │ │ │ ├── renderbase.pyi │ │ │ │ ├── samples │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── bubble.pyi │ │ │ │ │ ├── clustered_bar.pyi │ │ │ │ │ ├── clustered_column.pyi │ │ │ │ │ ├── excelcolors.pyi │ │ │ │ │ ├── exploded_pie.pyi │ │ │ │ │ ├── filled_radar.pyi │ │ │ │ │ ├── line_chart.pyi │ │ │ │ │ ├── linechart_with_markers.pyi │ │ │ │ │ ├── radar.pyi │ │ │ │ │ ├── runall.pyi │ │ │ │ │ ├── scatter.pyi │ │ │ │ │ ├── scatter_lines.pyi │ │ │ │ │ ├── scatter_lines_markers.pyi │ │ │ │ │ ├── simple_pie.pyi │ │ │ │ │ ├── stacked_bar.pyi │ │ │ │ │ └── stacked_column.pyi │ │ │ │ ├── shapes.pyi │ │ │ │ ├── svgpath.pyi │ │ │ │ ├── transform.pyi │ │ │ │ ├── utils.pyi │ │ │ │ ├── widgetbase.pyi │ │ │ │ └── widgets │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── adjustableArrow.pyi │ │ │ │ │ ├── eventcal.pyi │ │ │ │ │ ├── flags.pyi │ │ │ │ │ ├── grids.pyi │ │ │ │ │ ├── markers.pyi │ │ │ │ │ ├── signsandsymbols.pyi │ │ │ │ │ └── table.pyi │ │ │ │ ├── lib │ │ │ │ ├── PyFontify.pyi │ │ │ │ ├── __init__.pyi │ │ │ │ ├── abag.pyi │ │ │ │ ├── arciv.pyi │ │ │ │ ├── attrmap.pyi │ │ │ │ ├── boxstuff.pyi │ │ │ │ ├── codecharts.pyi │ │ │ │ ├── colors.pyi │ │ │ │ ├── corp.pyi │ │ │ │ ├── enums.pyi │ │ │ │ ├── extformat.pyi │ │ │ │ ├── fontfinder.pyi │ │ │ │ ├── fonts.pyi │ │ │ │ ├── formatters.pyi │ │ │ │ ├── geomutils.pyi │ │ │ │ ├── logger.pyi │ │ │ │ ├── normalDate.pyi │ │ │ │ ├── pagesizes.pyi │ │ │ │ ├── pdfencrypt.pyi │ │ │ │ ├── pygments2xpre.pyi │ │ │ │ ├── randomtext.pyi │ │ │ │ ├── rl_accel.pyi │ │ │ │ ├── rl_safe_eval.pyi │ │ │ │ ├── rltempfile.pyi │ │ │ │ ├── rparsexml.pyi │ │ │ │ ├── sequencer.pyi │ │ │ │ ├── styles.pyi │ │ │ │ ├── testutils.pyi │ │ │ │ ├── textsplit.pyi │ │ │ │ ├── units.pyi │ │ │ │ ├── utils.pyi │ │ │ │ ├── validators.pyi │ │ │ │ └── yaml.pyi │ │ │ │ ├── pdfbase │ │ │ │ ├── __init__.pyi │ │ │ │ ├── acroform.pyi │ │ │ │ ├── cidfonts.pyi │ │ │ │ ├── pdfdoc.pyi │ │ │ │ ├── pdfform.pyi │ │ │ │ ├── pdfmetrics.pyi │ │ │ │ ├── pdfpattern.pyi │ │ │ │ ├── pdfutils.pyi │ │ │ │ ├── rl_codecs.pyi │ │ │ │ └── ttfonts.pyi │ │ │ │ ├── pdfgen │ │ │ │ ├── __init__.pyi │ │ │ │ ├── canvas.pyi │ │ │ │ ├── pathobject.pyi │ │ │ │ ├── pdfgeom.pyi │ │ │ │ ├── pdfimages.pyi │ │ │ │ └── textobject.pyi │ │ │ │ ├── platypus │ │ │ │ ├── __init__.pyi │ │ │ │ ├── doctemplate.pyi │ │ │ │ ├── figures.pyi │ │ │ │ ├── flowables.pyi │ │ │ │ ├── frames.pyi │ │ │ │ ├── multicol.pyi │ │ │ │ ├── para.pyi │ │ │ │ ├── paragraph.pyi │ │ │ │ ├── paraparser.pyi │ │ │ │ ├── tableofcontents.pyi │ │ │ │ ├── tables.pyi │ │ │ │ └── xpreformatted.pyi │ │ │ │ ├── rl_config.pyi │ │ │ │ └── rl_settings.pyi │ │ │ ├── requests-oauthlib │ │ │ ├── METADATA.toml │ │ │ └── requests_oauthlib │ │ │ │ ├── __init__.pyi │ │ │ │ ├── compliance_fixes │ │ │ │ ├── __init__.pyi │ │ │ │ ├── douban.pyi │ │ │ │ ├── ebay.pyi │ │ │ │ ├── facebook.pyi │ │ │ │ ├── fitbit.pyi │ │ │ │ ├── instagram.pyi │ │ │ │ ├── mailchimp.pyi │ │ │ │ ├── plentymarkets.pyi │ │ │ │ ├── slack.pyi │ │ │ │ └── weibo.pyi │ │ │ │ ├── oauth1_auth.pyi │ │ │ │ ├── oauth1_session.pyi │ │ │ │ ├── oauth2_auth.pyi │ │ │ │ └── oauth2_session.pyi │ │ │ ├── requests │ │ │ ├── METADATA.toml │ │ │ └── requests │ │ │ │ ├── __init__.pyi │ │ │ │ ├── __version__.pyi │ │ │ │ ├── adapters.pyi │ │ │ │ ├── api.pyi │ │ │ │ ├── auth.pyi │ │ │ │ ├── certs.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 │ │ │ ├── rfc3339-validator │ │ │ ├── METADATA.toml │ │ │ └── rfc3339_validator.pyi │ │ │ ├── s2clientprotocol │ │ │ ├── METADATA.toml │ │ │ └── s2clientprotocol │ │ │ │ ├── build.pyi │ │ │ │ ├── common_pb2.pyi │ │ │ │ ├── data_pb2.pyi │ │ │ │ ├── debug_pb2.pyi │ │ │ │ ├── error_pb2.pyi │ │ │ │ ├── query_pb2.pyi │ │ │ │ ├── raw_pb2.pyi │ │ │ │ ├── sc2api_pb2.pyi │ │ │ │ ├── score_pb2.pyi │ │ │ │ ├── spatial_pb2.pyi │ │ │ │ └── ui_pb2.pyi │ │ │ ├── seaborn │ │ │ ├── METADATA.toml │ │ │ └── seaborn │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _core │ │ │ │ ├── __init__.pyi │ │ │ │ ├── data.pyi │ │ │ │ ├── exceptions.pyi │ │ │ │ ├── groupby.pyi │ │ │ │ ├── moves.pyi │ │ │ │ ├── plot.pyi │ │ │ │ ├── properties.pyi │ │ │ │ ├── rules.pyi │ │ │ │ ├── scales.pyi │ │ │ │ ├── subplots.pyi │ │ │ │ └── typing.pyi │ │ │ │ ├── _marks │ │ │ │ ├── __init__.pyi │ │ │ │ ├── area.pyi │ │ │ │ ├── bar.pyi │ │ │ │ ├── base.pyi │ │ │ │ ├── dot.pyi │ │ │ │ ├── line.pyi │ │ │ │ └── text.pyi │ │ │ │ ├── _stats │ │ │ │ ├── __init__.pyi │ │ │ │ ├── aggregation.pyi │ │ │ │ ├── base.pyi │ │ │ │ ├── counting.pyi │ │ │ │ ├── density.pyi │ │ │ │ ├── order.pyi │ │ │ │ └── regression.pyi │ │ │ │ ├── algorithms.pyi │ │ │ │ ├── axisgrid.pyi │ │ │ │ ├── categorical.pyi │ │ │ │ ├── cm.pyi │ │ │ │ ├── colors │ │ │ │ ├── __init__.pyi │ │ │ │ ├── crayons.pyi │ │ │ │ └── xkcd_rgb.pyi │ │ │ │ ├── distributions.pyi │ │ │ │ ├── external │ │ │ │ ├── __init__.pyi │ │ │ │ ├── appdirs.pyi │ │ │ │ ├── docscrape.pyi │ │ │ │ ├── husl.pyi │ │ │ │ ├── kde.pyi │ │ │ │ └── version.pyi │ │ │ │ ├── matrix.pyi │ │ │ │ ├── miscplot.pyi │ │ │ │ ├── objects.pyi │ │ │ │ ├── palettes.pyi │ │ │ │ ├── rcmod.pyi │ │ │ │ ├── regression.pyi │ │ │ │ ├── relational.pyi │ │ │ │ ├── utils.pyi │ │ │ │ └── widgets.pyi │ │ │ ├── setuptools │ │ │ ├── METADATA.toml │ │ │ ├── distutils │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _modified.pyi │ │ │ │ ├── _msvccompiler.pyi │ │ │ │ ├── archive_util.pyi │ │ │ │ ├── ccompiler.pyi │ │ │ │ ├── cmd.pyi │ │ │ │ ├── command │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── bdist.pyi │ │ │ │ │ ├── bdist_rpm.pyi │ │ │ │ │ ├── build.pyi │ │ │ │ │ ├── build_clib.pyi │ │ │ │ │ ├── build_ext.pyi │ │ │ │ │ ├── build_py.pyi │ │ │ │ │ ├── install.pyi │ │ │ │ │ ├── install_data.pyi │ │ │ │ │ ├── install_lib.pyi │ │ │ │ │ ├── install_scripts.pyi │ │ │ │ │ └── sdist.pyi │ │ │ │ ├── compat │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── compilers │ │ │ │ │ └── C │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ ├── errors.pyi │ │ │ │ │ │ ├── msvc.pyi │ │ │ │ │ │ └── unix.pyi │ │ │ │ ├── dep_util.pyi │ │ │ │ ├── dist.pyi │ │ │ │ ├── errors.pyi │ │ │ │ ├── extension.pyi │ │ │ │ ├── filelist.pyi │ │ │ │ ├── spawn.pyi │ │ │ │ ├── sysconfig.pyi │ │ │ │ ├── unixccompiler.pyi │ │ │ │ └── util.pyi │ │ │ └── setuptools │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _distutils │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _modified.pyi │ │ │ │ ├── _msvccompiler.pyi │ │ │ │ ├── archive_util.pyi │ │ │ │ ├── ccompiler.pyi │ │ │ │ ├── cmd.pyi │ │ │ │ ├── command │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── bdist.pyi │ │ │ │ │ ├── bdist_rpm.pyi │ │ │ │ │ ├── build.pyi │ │ │ │ │ ├── build_clib.pyi │ │ │ │ │ ├── build_ext.pyi │ │ │ │ │ ├── build_py.pyi │ │ │ │ │ ├── install.pyi │ │ │ │ │ ├── install_data.pyi │ │ │ │ │ ├── install_lib.pyi │ │ │ │ │ ├── install_scripts.pyi │ │ │ │ │ └── sdist.pyi │ │ │ │ ├── compat │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── compilers │ │ │ │ │ └── C │ │ │ │ │ │ ├── base.pyi │ │ │ │ │ │ ├── errors.pyi │ │ │ │ │ │ ├── msvc.pyi │ │ │ │ │ │ └── unix.pyi │ │ │ │ ├── dep_util.pyi │ │ │ │ ├── dist.pyi │ │ │ │ ├── errors.pyi │ │ │ │ ├── extension.pyi │ │ │ │ ├── filelist.pyi │ │ │ │ ├── spawn.pyi │ │ │ │ ├── sysconfig.pyi │ │ │ │ ├── unixccompiler.pyi │ │ │ │ └── util.pyi │ │ │ │ ├── archive_util.pyi │ │ │ │ ├── build_meta.pyi │ │ │ │ ├── command │ │ │ │ ├── __init__.pyi │ │ │ │ ├── alias.pyi │ │ │ │ ├── bdist_egg.pyi │ │ │ │ ├── bdist_rpm.pyi │ │ │ │ ├── bdist_wheel.pyi │ │ │ │ ├── build.pyi │ │ │ │ ├── build_clib.pyi │ │ │ │ ├── build_ext.pyi │ │ │ │ ├── build_py.pyi │ │ │ │ ├── develop.pyi │ │ │ │ ├── dist_info.pyi │ │ │ │ ├── easy_install.pyi │ │ │ │ ├── editable_wheel.pyi │ │ │ │ ├── egg_info.pyi │ │ │ │ ├── install.pyi │ │ │ │ ├── install_egg_info.pyi │ │ │ │ ├── install_lib.pyi │ │ │ │ ├── install_scripts.pyi │ │ │ │ ├── rotate.pyi │ │ │ │ ├── saveopts.pyi │ │ │ │ ├── sdist.pyi │ │ │ │ ├── setopt.pyi │ │ │ │ └── test.pyi │ │ │ │ ├── config │ │ │ │ ├── __init__.pyi │ │ │ │ ├── expand.pyi │ │ │ │ ├── pyprojecttoml.pyi │ │ │ │ └── setupcfg.pyi │ │ │ │ ├── depends.pyi │ │ │ │ ├── discovery.pyi │ │ │ │ ├── dist.pyi │ │ │ │ ├── errors.pyi │ │ │ │ ├── extension.pyi │ │ │ │ ├── glob.pyi │ │ │ │ ├── installer.pyi │ │ │ │ ├── launch.pyi │ │ │ │ ├── logging.pyi │ │ │ │ ├── modified.pyi │ │ │ │ ├── monkey.pyi │ │ │ │ ├── msvc.pyi │ │ │ │ ├── namespaces.pyi │ │ │ │ ├── unicode_utils.pyi │ │ │ │ ├── version.pyi │ │ │ │ ├── warnings.pyi │ │ │ │ ├── wheel.pyi │ │ │ │ └── windows_support.pyi │ │ │ ├── shapely │ │ │ ├── METADATA.toml │ │ │ └── shapely │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _coverage.pyi │ │ │ │ ├── _enum.pyi │ │ │ │ ├── _geometry.pyi │ │ │ │ ├── _ragged_array.pyi │ │ │ │ ├── _typing.pyi │ │ │ │ ├── _version.pyi │ │ │ │ ├── affinity.pyi │ │ │ │ ├── algorithms │ │ │ │ ├── __init__.pyi │ │ │ │ ├── cga.pyi │ │ │ │ └── polylabel.pyi │ │ │ │ ├── constructive.pyi │ │ │ │ ├── coordinates.pyi │ │ │ │ ├── coords.pyi │ │ │ │ ├── creation.pyi │ │ │ │ ├── decorators.pyi │ │ │ │ ├── errors.pyi │ │ │ │ ├── geometry │ │ │ │ ├── __init__.pyi │ │ │ │ ├── base.pyi │ │ │ │ ├── collection.pyi │ │ │ │ ├── geo.pyi │ │ │ │ ├── linestring.pyi │ │ │ │ ├── multilinestring.pyi │ │ │ │ ├── multipoint.pyi │ │ │ │ ├── multipolygon.pyi │ │ │ │ ├── point.pyi │ │ │ │ └── polygon.pyi │ │ │ │ ├── geos.pyi │ │ │ │ ├── io.pyi │ │ │ │ ├── lib.pyi │ │ │ │ ├── linear.pyi │ │ │ │ ├── measurement.pyi │ │ │ │ ├── ops.pyi │ │ │ │ ├── plotting.pyi │ │ │ │ ├── predicates.pyi │ │ │ │ ├── prepared.pyi │ │ │ │ ├── set_operations.pyi │ │ │ │ ├── speedups.pyi │ │ │ │ ├── strtree.pyi │ │ │ │ ├── testing.pyi │ │ │ │ ├── validation.pyi │ │ │ │ ├── vectorized │ │ │ │ └── __init__.pyi │ │ │ │ ├── wkb.pyi │ │ │ │ └── wkt.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 │ │ │ ├── str2bool │ │ │ ├── METADATA.toml │ │ │ └── str2bool │ │ │ │ └── __init__.pyi │ │ │ ├── tabulate │ │ │ ├── METADATA.toml │ │ │ └── tabulate │ │ │ │ ├── __init__.pyi │ │ │ │ └── version.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 │ │ │ ├── translationstring │ │ │ ├── METADATA.toml │ │ │ └── translationstring │ │ │ │ └── __init__.pyi │ │ │ ├── ttkthemes │ │ │ ├── METADATA.toml │ │ │ └── ttkthemes │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _imgops.pyi │ │ │ │ ├── _utils.pyi │ │ │ │ ├── _widget.pyi │ │ │ │ ├── themed_style.pyi │ │ │ │ └── themed_tk.pyi │ │ │ ├── uWSGI │ │ │ ├── METADATA.toml │ │ │ ├── uwsgi.pyi │ │ │ └── uwsgidecorators.pyi │ │ │ ├── ujson │ │ │ ├── METADATA.toml │ │ │ └── ujson.pyi │ │ │ ├── unidiff │ │ │ ├── METADATA.toml │ │ │ └── unidiff │ │ │ │ ├── __init__.pyi │ │ │ │ ├── __version__.pyi │ │ │ │ ├── constants.pyi │ │ │ │ ├── errors.pyi │ │ │ │ └── patch.pyi │ │ │ ├── untangle │ │ │ ├── METADATA.toml │ │ │ └── untangle.pyi │ │ │ ├── usersettings │ │ │ ├── METADATA.toml │ │ │ └── usersettings.pyi │ │ │ ├── vobject │ │ │ ├── @tests │ │ │ │ └── stubtest_allowlist.txt │ │ │ ├── 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 │ │ │ ├── watchpoints │ │ │ ├── METADATA.toml │ │ │ └── watchpoints │ │ │ │ ├── __init__.pyi │ │ │ │ ├── ast_monkey.pyi │ │ │ │ ├── util.pyi │ │ │ │ ├── watch.pyi │ │ │ │ ├── watch_element.pyi │ │ │ │ └── watch_print.pyi │ │ │ ├── whatthepatch │ │ │ ├── METADATA.toml │ │ │ └── whatthepatch │ │ │ │ ├── __init__.pyi │ │ │ │ ├── apply.pyi │ │ │ │ ├── exceptions.pyi │ │ │ │ ├── patch.pyi │ │ │ │ └── snippets.pyi │ │ │ ├── workalendar │ │ │ ├── METADATA.toml │ │ │ └── workalendar │ │ │ │ ├── __init__.pyi │ │ │ │ ├── africa │ │ │ │ ├── __init__.pyi │ │ │ │ ├── algeria.pyi │ │ │ │ ├── angola.pyi │ │ │ │ ├── benin.pyi │ │ │ │ ├── ivory_coast.pyi │ │ │ │ ├── kenya.pyi │ │ │ │ ├── madagascar.pyi │ │ │ │ ├── mozambique.pyi │ │ │ │ ├── nigeria.pyi │ │ │ │ ├── sao_tome.pyi │ │ │ │ ├── south_africa.pyi │ │ │ │ └── tunisia.pyi │ │ │ │ ├── america │ │ │ │ ├── __init__.pyi │ │ │ │ ├── argentina.pyi │ │ │ │ ├── barbados.pyi │ │ │ │ ├── brazil.pyi │ │ │ │ ├── canada.pyi │ │ │ │ ├── chile.pyi │ │ │ │ ├── colombia.pyi │ │ │ │ ├── el_salvador.pyi │ │ │ │ ├── mexico.pyi │ │ │ │ ├── panama.pyi │ │ │ │ └── paraguay.pyi │ │ │ │ ├── asia │ │ │ │ ├── __init__.pyi │ │ │ │ ├── china.pyi │ │ │ │ ├── hong_kong.pyi │ │ │ │ ├── israel.pyi │ │ │ │ ├── japan.pyi │ │ │ │ ├── kazakhstan.pyi │ │ │ │ ├── malaysia.pyi │ │ │ │ ├── philippines.pyi │ │ │ │ ├── qatar.pyi │ │ │ │ ├── singapore.pyi │ │ │ │ ├── south_korea.pyi │ │ │ │ └── taiwan.pyi │ │ │ │ ├── astronomy.pyi │ │ │ │ ├── core.pyi │ │ │ │ ├── europe │ │ │ │ ├── __init__.pyi │ │ │ │ ├── austria.pyi │ │ │ │ ├── belarus.pyi │ │ │ │ ├── belgium.pyi │ │ │ │ ├── bulgaria.pyi │ │ │ │ ├── cayman_islands.pyi │ │ │ │ ├── croatia.pyi │ │ │ │ ├── cyprus.pyi │ │ │ │ ├── czech_republic.pyi │ │ │ │ ├── denmark.pyi │ │ │ │ ├── estonia.pyi │ │ │ │ ├── european_central_bank.pyi │ │ │ │ ├── finland.pyi │ │ │ │ ├── france.pyi │ │ │ │ ├── georgia.pyi │ │ │ │ ├── germany.pyi │ │ │ │ ├── greece.pyi │ │ │ │ ├── guernsey.pyi │ │ │ │ ├── hungary.pyi │ │ │ │ ├── iceland.pyi │ │ │ │ ├── ireland.pyi │ │ │ │ ├── italy.pyi │ │ │ │ ├── latvia.pyi │ │ │ │ ├── lithuania.pyi │ │ │ │ ├── luxembourg.pyi │ │ │ │ ├── malta.pyi │ │ │ │ ├── monaco.pyi │ │ │ │ ├── netherlands.pyi │ │ │ │ ├── norway.pyi │ │ │ │ ├── poland.pyi │ │ │ │ ├── portugal.pyi │ │ │ │ ├── romania.pyi │ │ │ │ ├── russia.pyi │ │ │ │ ├── scotland │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── mixins │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── autumn_holiday.pyi │ │ │ │ │ │ ├── fair_holiday.pyi │ │ │ │ │ │ ├── spring_holiday.pyi │ │ │ │ │ │ └── victoria_day.pyi │ │ │ │ ├── serbia.pyi │ │ │ │ ├── slovakia.pyi │ │ │ │ ├── slovenia.pyi │ │ │ │ ├── spain.pyi │ │ │ │ ├── sweden.pyi │ │ │ │ ├── switzerland.pyi │ │ │ │ ├── turkey.pyi │ │ │ │ ├── ukraine.pyi │ │ │ │ └── united_kingdom.pyi │ │ │ │ ├── exceptions.pyi │ │ │ │ ├── oceania │ │ │ │ ├── __init__.pyi │ │ │ │ ├── australia.pyi │ │ │ │ ├── marshall_islands.pyi │ │ │ │ └── new_zealand.pyi │ │ │ │ ├── precomputed_astronomy.pyi │ │ │ │ ├── registry.pyi │ │ │ │ ├── registry_tools.pyi │ │ │ │ ├── skyfield_astronomy.pyi │ │ │ │ └── usa │ │ │ │ ├── __init__.pyi │ │ │ │ ├── alabama.pyi │ │ │ │ ├── alaska.pyi │ │ │ │ ├── american_samoa.pyi │ │ │ │ ├── arizona.pyi │ │ │ │ ├── arkansas.pyi │ │ │ │ ├── california.pyi │ │ │ │ ├── colorado.pyi │ │ │ │ ├── connecticut.pyi │ │ │ │ ├── core.pyi │ │ │ │ ├── delaware.pyi │ │ │ │ ├── district_columbia.pyi │ │ │ │ ├── florida.pyi │ │ │ │ ├── georgia.pyi │ │ │ │ ├── guam.pyi │ │ │ │ ├── hawaii.pyi │ │ │ │ ├── idaho.pyi │ │ │ │ ├── illinois.pyi │ │ │ │ ├── indiana.pyi │ │ │ │ ├── iowa.pyi │ │ │ │ ├── kansas.pyi │ │ │ │ ├── kentucky.pyi │ │ │ │ ├── louisiana.pyi │ │ │ │ ├── maine.pyi │ │ │ │ ├── maryland.pyi │ │ │ │ ├── massachusetts.pyi │ │ │ │ ├── michigan.pyi │ │ │ │ ├── minnesota.pyi │ │ │ │ ├── mississippi.pyi │ │ │ │ ├── missouri.pyi │ │ │ │ ├── montana.pyi │ │ │ │ ├── nebraska.pyi │ │ │ │ ├── nevada.pyi │ │ │ │ ├── new_hampshire.pyi │ │ │ │ ├── new_jersey.pyi │ │ │ │ ├── new_mexico.pyi │ │ │ │ ├── new_york.pyi │ │ │ │ ├── north_carolina.pyi │ │ │ │ ├── north_dakota.pyi │ │ │ │ ├── ohio.pyi │ │ │ │ ├── oklahoma.pyi │ │ │ │ ├── oregon.pyi │ │ │ │ ├── pennsylvania.pyi │ │ │ │ ├── rhode_island.pyi │ │ │ │ ├── south_carolina.pyi │ │ │ │ ├── south_dakota.pyi │ │ │ │ ├── tennessee.pyi │ │ │ │ ├── texas.pyi │ │ │ │ ├── utah.pyi │ │ │ │ ├── vermont.pyi │ │ │ │ ├── virginia.pyi │ │ │ │ ├── washington.pyi │ │ │ │ ├── west_virginia.pyi │ │ │ │ ├── wisconsin.pyi │ │ │ │ └── wyoming.pyi │ │ │ ├── wurlitzer │ │ │ ├── METADATA.toml │ │ │ └── wurlitzer.pyi │ │ │ ├── www-authenticate │ │ │ ├── METADATA.toml │ │ │ └── www_authenticate.pyi │ │ │ ├── xdgenvpy │ │ │ ├── METADATA.toml │ │ │ └── xdgenvpy │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _defaults.pyi │ │ │ │ └── xdgenv.pyi │ │ │ ├── xlrd │ │ │ ├── METADATA.toml │ │ │ └── xlrd │ │ │ │ ├── __init__.pyi │ │ │ │ ├── biffh.pyi │ │ │ │ ├── book.pyi │ │ │ │ ├── compdoc.pyi │ │ │ │ ├── formatting.pyi │ │ │ │ ├── formula.pyi │ │ │ │ ├── info.pyi │ │ │ │ ├── sheet.pyi │ │ │ │ ├── timemachine.pyi │ │ │ │ └── xldate.pyi │ │ │ ├── xmldiff │ │ │ ├── METADATA.toml │ │ │ └── xmldiff │ │ │ │ ├── __init__.pyi │ │ │ │ ├── actions.pyi │ │ │ │ ├── diff.pyi │ │ │ │ ├── diff_match_patch.pyi │ │ │ │ ├── formatting.pyi │ │ │ │ ├── main.pyi │ │ │ │ ├── patch.pyi │ │ │ │ └── utils.pyi │ │ │ ├── xmltodict │ │ │ ├── METADATA.toml │ │ │ └── xmltodict.pyi │ │ │ ├── yt-dlp │ │ │ ├── METADATA.toml │ │ │ └── yt_dlp │ │ │ │ ├── YoutubeDL.pyi │ │ │ │ ├── __init__.pyi │ │ │ │ ├── aes.pyi │ │ │ │ ├── cache.pyi │ │ │ │ ├── compat │ │ │ │ ├── __init__.pyi │ │ │ │ ├── compat_utils.pyi │ │ │ │ └── imghdr.pyi │ │ │ │ ├── cookies.pyi │ │ │ │ ├── downloader │ │ │ │ ├── __init__.pyi │ │ │ │ ├── bunnycdn.pyi │ │ │ │ ├── common.pyi │ │ │ │ ├── dash.pyi │ │ │ │ ├── external.pyi │ │ │ │ ├── f4m.pyi │ │ │ │ ├── fc2.pyi │ │ │ │ ├── fragment.pyi │ │ │ │ ├── hls.pyi │ │ │ │ ├── http.pyi │ │ │ │ ├── ism.pyi │ │ │ │ ├── mhtml.pyi │ │ │ │ ├── niconico.pyi │ │ │ │ ├── rtmp.pyi │ │ │ │ ├── rtsp.pyi │ │ │ │ ├── websocket.pyi │ │ │ │ └── youtube_live_chat.pyi │ │ │ │ ├── extractor │ │ │ │ ├── __init__.pyi │ │ │ │ ├── common.pyi │ │ │ │ ├── commonmistakes.pyi │ │ │ │ └── commonprotocols.pyi │ │ │ │ ├── globals.pyi │ │ │ │ ├── jsinterp.pyi │ │ │ │ ├── minicurses.pyi │ │ │ │ ├── networking │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _helper.pyi │ │ │ │ ├── common.pyi │ │ │ │ ├── exceptions.pyi │ │ │ │ ├── impersonate.pyi │ │ │ │ └── websocket.pyi │ │ │ │ ├── options.pyi │ │ │ │ ├── plugins.pyi │ │ │ │ ├── postprocessor │ │ │ │ ├── __init__.pyi │ │ │ │ └── common.pyi │ │ │ │ ├── socks.pyi │ │ │ │ ├── update.pyi │ │ │ │ ├── utils │ │ │ │ ├── __init__.pyi │ │ │ │ ├── _deprecated.pyi │ │ │ │ ├── _legacy.pyi │ │ │ │ ├── _utils.pyi │ │ │ │ ├── jslib │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── devalue.pyi │ │ │ │ ├── networking.pyi │ │ │ │ ├── progress.pyi │ │ │ │ └── traversal.pyi │ │ │ │ ├── version.pyi │ │ │ │ └── webvtt.pyi │ │ │ ├── zstd │ │ │ ├── METADATA.toml │ │ │ └── zstd.pyi │ │ │ └── zxcvbn │ │ │ ├── METADATA.toml │ │ │ └── zxcvbn │ │ │ ├── __init__.pyi │ │ │ ├── adjacency_graphs.pyi │ │ │ ├── feedback.pyi │ │ │ ├── frequency_lists.pyi │ │ │ ├── matching.pyi │ │ │ ├── scoring.pyi │ │ │ └── time_estimates.pyi │ └── typings │ │ └── promise.d.ts ├── 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 │ ├── packages.config │ ├── schemas │ └── pyrightconfig.schema.json │ ├── sign.proj │ ├── src │ ├── cancellationUtils.ts │ ├── extension.ts │ └── server.ts │ ├── tsconfig.json │ └── webpack.config.js └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/actions/cfs-npm-authenticate/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/.github/actions/cfs-npm-authenticate/action.yml -------------------------------------------------------------------------------- /.github/actions/cfs-npm-cache/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/.github/actions/cfs-npm-cache/action.yml -------------------------------------------------------------------------------- /.github/actions/cfs-npm-install/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/.github/actions/cfs-npm-install/action.yml -------------------------------------------------------------------------------- /.github/actions/choose-npm-install/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/.github/actions/choose-npm-install/action.yml -------------------------------------------------------------------------------- /.github/actions/standard-npm-install/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/.github/actions/standard-npm-install/action.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/mypy_primer_comment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/.github/workflows/mypy_primer_comment.yaml -------------------------------------------------------------------------------- /.github/workflows/mypy_primer_pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/.github/workflows/mypy_primer_pr.yaml -------------------------------------------------------------------------------- /.github/workflows/mypy_primer_push.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/.github/workflows/mypy_primer_push.yaml -------------------------------------------------------------------------------- /.github/workflows/validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/.github/workflows/validation.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/SECURITY.md -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_navbar.md: -------------------------------------------------------------------------------- 1 | [GitHub Site](https://github.com/Microsoft/pyright) 2 | -------------------------------------------------------------------------------- /docs/_sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/docs/_sidebar.md -------------------------------------------------------------------------------- /docs/build-debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/docs/build-debug.md -------------------------------------------------------------------------------- /docs/builtins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/docs/builtins.md -------------------------------------------------------------------------------- /docs/ci-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/docs/ci-integration.md -------------------------------------------------------------------------------- /docs/command-line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/docs/command-line.md -------------------------------------------------------------------------------- /docs/commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/docs/commands.md -------------------------------------------------------------------------------- /docs/comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/docs/comments.md -------------------------------------------------------------------------------- /docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/docs/configuration.md -------------------------------------------------------------------------------- /docs/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/docs/features.md -------------------------------------------------------------------------------- /docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/docs/getting-started.md -------------------------------------------------------------------------------- /docs/img/CreateTypeStub1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/docs/img/CreateTypeStub1.png -------------------------------------------------------------------------------- /docs/img/CreateTypeStub2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/docs/img/CreateTypeStub2.png -------------------------------------------------------------------------------- /docs/img/PyrightLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/docs/img/PyrightLarge.png -------------------------------------------------------------------------------- /docs/img/PyrightSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/docs/img/PyrightSmall.png -------------------------------------------------------------------------------- /docs/img/pyright_badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/docs/img/pyright_badge.svg -------------------------------------------------------------------------------- /docs/import-resolution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/docs/import-resolution.md -------------------------------------------------------------------------------- /docs/import-statements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/docs/import-statements.md -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/internals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/docs/internals.md -------------------------------------------------------------------------------- /docs/mypy-comparison.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/docs/mypy-comparison.md -------------------------------------------------------------------------------- /docs/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/docs/settings.md -------------------------------------------------------------------------------- /docs/type-concepts-advanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/docs/type-concepts-advanced.md -------------------------------------------------------------------------------- /docs/type-concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/docs/type-concepts.md -------------------------------------------------------------------------------- /docs/type-inference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/docs/type-inference.md -------------------------------------------------------------------------------- /docs/type-stubs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/docs/type-stubs.md -------------------------------------------------------------------------------- /docs/typed-libraries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/docs/typed-libraries.md -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/lerna.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/package.json -------------------------------------------------------------------------------- /packages/pyright-internal/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/debug.js -------------------------------------------------------------------------------- /packages/pyright-internal/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/jest.config.js -------------------------------------------------------------------------------- /packages/pyright-internal/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/package-lock.json -------------------------------------------------------------------------------- /packages/pyright-internal/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/package.json -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/analysis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/analyzer/analysis.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/binder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/analyzer/binder.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/cacheManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/analyzer/cacheManager.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/checker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/analyzer/checker.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/codeFlowTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/analyzer/codeFlowTypes.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/codeFlowUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/analyzer/codeFlowUtils.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/commentUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/analyzer/commentUtils.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/constructors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/analyzer/constructors.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/dataClasses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/analyzer/dataClasses.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/declaration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/analyzer/declaration.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/decorators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/analyzer/decorators.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/analyzer/enums.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/importLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/analyzer/importLogger.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/importResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/analyzer/importResult.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/namedTuples.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/analyzer/namedTuples.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/operations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/analyzer/operations.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/program.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/analyzer/program.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/programTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/analyzer/programTypes.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/properties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/analyzer/properties.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/protocols.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/analyzer/protocols.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/pyTypedUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/analyzer/pyTypedUtils.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/scope.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/analyzer/scope.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/scopeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/analyzer/scopeUtils.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/sentinel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/analyzer/sentinel.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/analyzer/service.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/serviceUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/analyzer/serviceUtils.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/sourceFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/analyzer/sourceFile.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/sourceMapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/analyzer/sourceMapper.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/symbol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/analyzer/symbol.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/symbolUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/analyzer/symbolUtils.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/testWalker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/analyzer/testWalker.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/tracePrinter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/analyzer/tracePrinter.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/tuples.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/analyzer/tuples.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/typeEvaluator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/analyzer/typeEvaluator.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/typeGuards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/analyzer/typeGuards.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/typePrinter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/analyzer/typePrinter.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/typeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/analyzer/typeUtils.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/typeWalker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/analyzer/typeWalker.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/typedDicts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/analyzer/typedDicts.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/analyzer/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/analyzer/types.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/backgroundAnalysis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/backgroundAnalysis.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/backgroundAnalysisBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/backgroundAnalysisBase.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/backgroundThreadBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/backgroundThreadBase.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/commands/commandResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/commands/commandResult.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/commands/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/commands/commands.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/commands/restartServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/commands/restartServer.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/charCodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/common/charCodes.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/collectionUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/common/collectionUtils.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/commandUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/common/commandUtils.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/configOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/common/configOptions.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/console.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/common/console.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/common/core.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/crypto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/common/crypto.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/common/debug.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/deferred.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/common/deferred.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/diagnostic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/common/diagnostic.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/diagnosticRules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/common/diagnosticRules.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/diagnosticSink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/common/diagnosticSink.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/docRange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/common/docRange.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/editAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/common/editAction.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/envVarUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/common/envVarUtils.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/extensibility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/common/extensibility.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/extensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/common/extensions.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/fileSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/common/fileSystem.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/fileWatcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/common/fileWatcher.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/fullAccessHost.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/common/fullAccessHost.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/host.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/common/host.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/logTracker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/common/logTracker.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/lspUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/common/lspUtils.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/memUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/common/memUtils.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/pathConsts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/common/pathConsts.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/pathUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/common/pathUtils.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/positionUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/common/positionUtils.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/processUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/common/processUtils.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/pythonVersion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/common/pythonVersion.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/realFileSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/common/realFileSystem.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/serviceKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/common/serviceKeys.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/serviceProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/common/serviceProvider.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/streamUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/common/streamUtils.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/stringUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/common/stringUtils.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/textEditTracker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/common/textEditTracker.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/textRange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/common/textRange.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/timing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/common/timing.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/tomlUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/common/tomlUtils.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/uri/baseUri.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/common/uri/baseUri.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/uri/constantUri.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/common/uri/constantUri.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/uri/emptyUri.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/common/uri/emptyUri.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/uri/fileUri.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/common/uri/fileUri.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/uri/memoization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/common/uri/memoization.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/uri/uri.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/common/uri/uri.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/uri/uriMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/common/uri/uriMap.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/uri/uriUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/common/uri/uriUtils.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/common/uri/webUri.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/common/uri/webUri.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/languageServerBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/languageServerBase.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/localization/localize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/localization/localize.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/nodeMain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/nodeMain.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/nodeServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/nodeServer.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/parser/characterStream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/parser/characterStream.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/parser/characters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/parser/characters.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/parser/parseNodeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/parser/parseNodeUtils.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/parser/parseNodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/parser/parseNodes.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/parser/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/parser/parser.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/parser/tokenizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/parser/tokenizer.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/parser/tokenizerTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/parser/tokenizerTypes.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/parser/unicode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/parser/unicode.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/partialStubService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/partialStubService.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/pprof/profiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/pprof/profiler.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/pyright.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/pyright.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/pyrightFileSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/pyrightFileSystem.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/server.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/checker.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/checker.test.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/common.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/common.test.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/completions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/completions.test.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/config.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/config.test.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/debug.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/debug.test.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/deferred.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/deferred.test.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/diagnostics.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/diagnostics.test.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/envVarUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/envVarUtils.test.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/filesystem.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/filesystem.test.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/harness/testHost.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/harness/testHost.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/harness/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/harness/utils.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/ipythonMode.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/ipythonMode.test.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/localizer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/localizer.test.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/logger.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/logger.test.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/lsp/customLsp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/lsp/customLsp.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/lsp/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/lsp/main.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/parser.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/parser.test.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/pathUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/pathUtils.test.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/any1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/any1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/assert1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/assert1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/async1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/async1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/await1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/await1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/await2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/await2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/await3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/await3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/call1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/call1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/call10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/call10.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/call11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/call11.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/call12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/call12.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/call13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/call13.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/call14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/call14.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/call15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/call15.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/call16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/call16.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/call17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/call17.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/call2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/call2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/call3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/call3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/call4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/call4.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/call5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/call5.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/call6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/call6.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/call7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/call7.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/call8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/call8.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/call9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/call9.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/classes1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/classes1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/classes3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/classes3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/classes4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/classes4.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/classes5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/classes5.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/classes6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/classes6.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/classes7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/classes7.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/classes8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/classes8.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/classes9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/classes9.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/complex1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/complex1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/del1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/del1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/del2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/del2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/enum1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/enum1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/enum10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/enum10.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/enum11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/enum11.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/enum12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/enum12.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/enum13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/enum13.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/enum14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/enum14.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/enum2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/enum2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/enum3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/enum3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/enum4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/enum4.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/enum5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/enum5.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/enum6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/enum6.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/enum7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/enum7.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/enum8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/enum8.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/enum9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/enum9.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/final1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/final1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/final2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/final2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/final3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/final3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/final4.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/final4.pyi -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/final5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/final5.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/final6.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/final6.pyi -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/final7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/final7.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/final8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/final8.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/forLoop1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/forLoop1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/forLoop2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/forLoop2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/fstring1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/fstring1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/fstring2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/fstring2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/fstring3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/fstring3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/fstring4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/fstring4.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/fstring5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/fstring5.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/fstring6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/fstring6.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/generic1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/generic1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/generic2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/generic2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/generic3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/generic3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/import1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/import1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/import10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/import10.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/import11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/import11.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/import12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/import12.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/import13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/import13.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/import14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/import14.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/import15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/import15.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/import16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/import16.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/import17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/import17.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/import18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/import18.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/import2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/import2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/import3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/import3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/import4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/import4.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/import5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/import5.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/import6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/import6.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/import7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/import7.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/import8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/import8.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/import9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/import9.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/index1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/index1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/initVar1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/initVar1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/lambda1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/lambda1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/lambda10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/lambda10.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/lambda11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/lambda11.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/lambda12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/lambda12.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/lambda13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/lambda13.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/lambda14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/lambda14.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/lambda15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/lambda15.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/lambda2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/lambda2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/lambda3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/lambda3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/lambda4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/lambda4.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/lambda5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/lambda5.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/lambda6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/lambda6.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/lambda7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/lambda7.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/lambda8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/lambda8.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/lambda9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/lambda9.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/lines1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/lines1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/list1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/list1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/list2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/list2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/list3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/list3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop10.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop11.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop12.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop13.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop14.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop15.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop16.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop17.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop18.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop19.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop20.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop21.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop22.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop22.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop23.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop24.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop24.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop25.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop25.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop26.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop27.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop27.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop28.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop28.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop29.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop29.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop30.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop30.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop31.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop31.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop32.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop33.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop33.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop34.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop34.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop35.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop35.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop36.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop36.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop37.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop37.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop38.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop38.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop39.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop39.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop4.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop40.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop40.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop41.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop41.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop42.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop42.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop43.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop43.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop44.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop44.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop45.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop45.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop46.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop46.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop47.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop47.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop48.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop48.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop49.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop49.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop5.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop50.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop51.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop51.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop52.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop52.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop6.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop7.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop8.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/loop9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/loop9.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/match1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/match1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/match2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/match2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/match3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/match3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/methods1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/methods1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/module1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/module1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/module2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/module2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/module3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/module3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/mro1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/mro1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/mro2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/mro2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/mro3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/mro3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/mro4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/mro4.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/never1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/never1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/never2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/never2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/newType1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/newType1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/newType2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/newType2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/newType3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/newType3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/newType4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/newType4.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/newType5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/newType5.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/newType6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/newType6.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/newType7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/newType7.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/none1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/none1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/none2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/none2.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/package2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/package2/module1.py: -------------------------------------------------------------------------------- 1 | a1 = 1 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/package2/module2.py: -------------------------------------------------------------------------------- 1 | a2 = 2 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/package2/module3.py: -------------------------------------------------------------------------------- 1 | a3 = 3 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/parser1.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/parser2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/parser2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/partial1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/partial1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/partial2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/partial2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/partial3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/partial3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/partial4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/partial4.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/partial5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/partial5.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/partial6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/partial6.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/partial7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/partial7.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/partial8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/partial8.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/private1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/private1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/private2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/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_extended_config/pyproject.toml: -------------------------------------------------------------------------------- 1 | [tool.pyright] 2 | extends = "baseconfig1.toml" 3 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/project_with_extended_config/sub3/stubs/sample.pyi: -------------------------------------------------------------------------------- 1 | x: int 2 | -------------------------------------------------------------------------------- /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/python2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/python2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/self1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/self1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/self10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/self10.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/self11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/self11.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/self2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/self2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/self3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/self3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/self4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/self4.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/self5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/self5.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/self6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/self6.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/self7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/self7.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/self8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/self8.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/self9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/self9.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/test_file1.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/type1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/type1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/with1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/with1.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/with2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/with2.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/with3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/with3.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/with4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/with4.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/with5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/with5.py -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/samples/with6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/samples/with6.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.jar: -------------------------------------------------------------------------------- 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.jar: -------------------------------------------------------------------------------- 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/service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/service.test.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/testUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/testUtils.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/uri.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/uri.test.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/tests/zipfs.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/tests/zipfs.test.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/types.ts -------------------------------------------------------------------------------- /packages/pyright-internal/src/workspaceFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/src/workspaceFactory.ts -------------------------------------------------------------------------------- /packages/pyright-internal/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/tsconfig.json -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/typeshed-fallback/LICENSE -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stdlib/__main__.pyi: -------------------------------------------------------------------------------- 1 | def __getattr__(name: str): ... # incomplete module 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stdlib/_bootlocale.pyi: -------------------------------------------------------------------------------- 1 | def getpreferredencoding(do_setlocale: bool = True) -> str: ... 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stdlib/compression/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stdlib/compression/_common/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stdlib/compression/bz2.pyi: -------------------------------------------------------------------------------- 1 | from bz2 import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stdlib/compression/gzip.pyi: -------------------------------------------------------------------------------- 1 | from gzip import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stdlib/compression/lzma.pyi: -------------------------------------------------------------------------------- 1 | from lzma import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stdlib/compression/zlib.pyi: -------------------------------------------------------------------------------- 1 | from zlib import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stdlib/concurrent/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stdlib/curses/has_key.pyi: -------------------------------------------------------------------------------- 1 | def has_key(ch: int | str) -> bool: ... 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stdlib/curses/panel.pyi: -------------------------------------------------------------------------------- 1 | from _curses_panel import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stdlib/dbm/gnu.pyi: -------------------------------------------------------------------------------- 1 | from _gdbm import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stdlib/dbm/ndbm.pyi: -------------------------------------------------------------------------------- 1 | from _dbm import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stdlib/distutils/command/bdist_packager.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stdlib/email/mime/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stdlib/encodings/aliases.pyi: -------------------------------------------------------------------------------- 1 | aliases: dict[str, str] 2 | -------------------------------------------------------------------------------- /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/lib2to3/fixes/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stdlib/pydoc_data/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/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/Authlib/authlib/common/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/Authlib/authlib/integrations/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/Authlib/authlib/oauth2/rfc8693/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/Authlib/authlib/oidc/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/ExifRead/exifread/tags/makernote/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/Flask-Cors/flask_cors/version.pyi: -------------------------------------------------------------------------------- 1 | __version__: str 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/Jetson.GPIO/Jetson/GPIO/__init__.pyi: -------------------------------------------------------------------------------- 1 | from .gpio import * 2 | 3 | VERSION: str = ... 4 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/Jetson.GPIO/Jetson/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/PyMeeus/pymeeus/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/PyMySQL/pymysql/constants/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/PySocks/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "1.7.1" 2 | upstream_repository = "https://github.com/Anorov/PySocks" 3 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/Pygments/pygments/modeline.pyi: -------------------------------------------------------------------------------- 1 | def get_filetype_from_buffer(buf, max_lines: int = 5): ... 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/RPi.GPIO/RPi/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/WTForms/wtforms/csrf/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/WebOb/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "1.8.*" 2 | upstream_repository = "https://github.com/Pylons/webob" 3 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/antlr4-python3-runtime/antlr4/atn/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/antlr4-python3-runtime/antlr4/dfa/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/antlr4-python3-runtime/antlr4/error/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/antlr4-python3-runtime/antlr4/tree/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/antlr4-python3-runtime/antlr4/xpath/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/assertpy/assertpy/helpers.pyi: -------------------------------------------------------------------------------- 1 | __tracebackhide__: bool 2 | 3 | class HelpersMixin: ... 4 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/auth0-python/auth0/utils.pyi: -------------------------------------------------------------------------------- 1 | def is_async_available() -> bool: ... 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/ext/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/aws-xray-sdk/aws_xray_sdk/ext/aiobotocore/patch.pyi: -------------------------------------------------------------------------------- 1 | def patch() -> None: ... 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/aws-xray-sdk/aws_xray_sdk/ext/aiohttp/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/aws-xray-sdk/aws_xray_sdk/ext/aiohttp/middleware.pyi: -------------------------------------------------------------------------------- 1 | async def middleware(request, handler): ... 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/aws-xray-sdk/aws_xray_sdk/ext/botocore/patch.pyi: -------------------------------------------------------------------------------- 1 | def patch() -> None: ... 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/aws-xray-sdk/aws_xray_sdk/ext/bottle/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/aws-xray-sdk/aws_xray_sdk/ext/flask/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/aws-xray-sdk/aws_xray_sdk/ext/flask_sqlalchemy/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/aws-xray-sdk/aws_xray_sdk/ext/psycopg2/patch.pyi: -------------------------------------------------------------------------------- 1 | def patch() -> None: ... 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/aws-xray-sdk/aws_xray_sdk/ext/sqlalchemy/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/aws-xray-sdk/aws_xray_sdk/ext/sqlalchemy/util/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/boltons/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "25.0.*" 2 | upstream_repository = "https://github.com/mahmoud/boltons" 3 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/boltons/boltons/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/test/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/channels/channels/generic/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/channels/channels/management/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/channels/channels/management/commands/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/channels/channels/security/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/chevron/chevron/metadata.pyi: -------------------------------------------------------------------------------- 1 | version: str 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/click-web/click_web/resources/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/console-menu/consolemenu/validators/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/console-menu/consolemenu/version.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/convertdate/convertdate/data/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/dateparser/dateparser/custom_language_detection/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/dateparser/dateparser_data/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/django-filter/django_filters/compat.pyi: -------------------------------------------------------------------------------- 1 | def is_crispy() -> bool: ... 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/django-import-export/import_export/__init__.pyi: -------------------------------------------------------------------------------- 1 | __version__: str 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/django-import-export/import_export/formats/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/django-import-export/import_export/templatetags/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/django-import-export/management/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/django-import-export/management/commands/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/docker/docker/credentials/utils.pyi: -------------------------------------------------------------------------------- 1 | def create_environment_dict(overrides): ... 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/docker/docker/models/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/docker/docker/version.pyi: -------------------------------------------------------------------------------- 1 | __version__: str 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/docutils/docutils/utils/math/unichar2tex.pyi: -------------------------------------------------------------------------------- 1 | uni2tex_table: dict[int, str] 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/docutils/docutils/utils/urischemes.pyi: -------------------------------------------------------------------------------- 1 | schemes: dict[str, str] 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/first/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "2.0.*" 2 | upstream_repository = "https://github.com/hynek/first" 3 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/flake8-simplify/flake8_simplify/rules/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/flake8/flake8/api/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/flake8/flake8/formatting/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/flake8/flake8/formatting/_windows_color.pyi: -------------------------------------------------------------------------------- 1 | terminal_supports_color: bool 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/flake8/flake8/main/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/flake8/flake8/options/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/flake8/flake8/plugins/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/geopandas/geopandas/tools/_show_versions.pyi: -------------------------------------------------------------------------------- 1 | def show_versions() -> None: ... 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/geopandas/geopandas/tools/hilbert_curve.pyi: -------------------------------------------------------------------------------- 1 | MAX_LEVEL: int 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/gevent/gevent/_ffi/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/gevent/gevent/ares.pyi: -------------------------------------------------------------------------------- 1 | from gevent.resolver.cares import * 2 | 3 | __all__ = ["channel"] 4 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/gevent/gevent/libev/__init__.pyi: -------------------------------------------------------------------------------- 1 | __all__: list[str] = [] 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/gevent/gevent/libuv/__init__.pyi: -------------------------------------------------------------------------------- 1 | __all__: list[str] = [] 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/google-cloud-ndb/google/cloud/ndb/version.pyi: -------------------------------------------------------------------------------- 1 | __version__: str 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/grpcio-channelz/grpc_channelz/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/grpcio-channelz/grpc_channelz/v1/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/grpcio-health-checking/grpc_health/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/grpcio-health-checking/grpc_health/v1/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/grpcio-reflection/grpc_reflection/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/grpcio-reflection/grpc_reflection/v1alpha/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/grpcio-status/grpc_status/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/gunicorn/gunicorn/app/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/gunicorn/gunicorn/instrument/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/hdbcli/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "2.25.*" 2 | # upstream_repository = closed-source 3 | -------------------------------------------------------------------------------- /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/hvac/hvac/constants/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/jwcrypto/jwcrypto/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/libsass/sassutils/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/lupa/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "2.5.*" 2 | upstream_repository = "https://github.com/scoder/lupa" 3 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/nanoid/nanoid/resources.pyi: -------------------------------------------------------------------------------- 1 | alphabet: str 2 | size: int 3 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/netaddr/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "1.3.*" 2 | upstream_repository = "https://github.com/drkjam/netaddr" 3 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/netaddr/netaddr/compat.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/netaddr/netaddr/contrib/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/objgraph/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "3.6.*" 2 | upstream_repository = "https://github.com/mgedmin/objgraph" 3 | -------------------------------------------------------------------------------- /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/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/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/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/peewee/playhouse/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pika/pika/adapters/utils/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/polib/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "1.2.*" 2 | upstream_repository = "https://github.com/izimobil/polib" 3 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pony/pony/flask/example/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pony/pony/orm/__init__.pyi: -------------------------------------------------------------------------------- 1 | from pony.orm.core import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pony/pony/orm/dbproviders/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pony/pony/orm/examples/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pony/pony/orm/integration/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pony/pony/thirdparty/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/pyRFC3339/pyrfc3339/utils.pyi: -------------------------------------------------------------------------------- 1 | def format_timezone(utcoffset: int) -> str: ... 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pyasn1/pyasn1/codec/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pyasn1/pyasn1/codec/ber/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pyasn1/pyasn1/codec/cer/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pyasn1/pyasn1/codec/der/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pyasn1/pyasn1/codec/native/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pyasn1/pyasn1/compat/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pyasn1/pyasn1/type/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pyflakes/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "3.4.*" 2 | upstream_repository = "https://github.com/PyCQA/pyflakes" 3 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pyflakes/pyflakes/scripts/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pyinstaller/PyInstaller/depend/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pyinstaller/PyInstaller/lib/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pyinstaller/PyInstaller/lib/modulegraph/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pyinstaller/PyInstaller/utils/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pyserial/serial/tools/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pyserial/serial/urlhandler/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/commctrl.pyi: -------------------------------------------------------------------------------- 1 | from win32.lib.commctrl import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/dde.pyi: -------------------------------------------------------------------------------- 1 | from pythonwin.dde import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/mmapfile.pyi: -------------------------------------------------------------------------------- 1 | from win32.mmapfile import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/mmsystem.pyi: -------------------------------------------------------------------------------- 1 | from win32.lib.mmsystem import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/ntsecuritycon.pyi: -------------------------------------------------------------------------------- 1 | from win32.lib.ntsecuritycon import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/odbc.pyi: -------------------------------------------------------------------------------- 1 | from win32.odbc import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/perfmon.pyi: -------------------------------------------------------------------------------- 1 | from win32.perfmon import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/pythonwin/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/pywintypes.pyi: -------------------------------------------------------------------------------- 1 | from win32.lib.pywintypes import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/regutil.pyi: -------------------------------------------------------------------------------- 1 | from win32.lib.regutil import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/servicemanager.pyi: -------------------------------------------------------------------------------- 1 | from win32.servicemanager import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/sspicon.pyi: -------------------------------------------------------------------------------- 1 | from win32.lib.sspicon import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/timer.pyi: -------------------------------------------------------------------------------- 1 | from win32.timer import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win2kras.pyi: -------------------------------------------------------------------------------- 1 | from win32.lib.win2kras import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32/lib/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32com/adsi/__init__.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.adsi import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32com/authorization/__init__.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.authorization import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32com/axcontrol/__init__.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.axcontrol import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32com/axdebug/__init__.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.axdebug import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32com/axdebug/adb.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.axdebug.adb import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32com/axdebug/codecontainer.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.axdebug.codecontainer import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32com/axdebug/contexts.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.axdebug.contexts import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32com/axdebug/documents.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.axdebug.documents import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32com/axdebug/expressions.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.axdebug.expressions import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32com/axdebug/gateways.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.axdebug.gateways import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32com/axdebug/stackframe.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.axdebug.stackframe import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32com/axdebug/util.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.axdebug.util import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32com/axscript/__init__.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.axscript import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32com/axscript/asputil.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.axscript.asputil import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32com/axscript/client/__init__.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.axscript.client import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32com/axscript/client/debug.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.axscript.client.debug import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32com/axscript/client/error.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.axscript.client.error import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32com/axscript/client/framework.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.axscript.client.framework import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32com/axscript/server/__init__.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.axscript.server import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32com/bits/__init__.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.bits import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32com/directsound/__init__.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.directsound import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32com/gen_py/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32com/ifilter/__init__.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.ifilter import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32com/internet/__init__.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.internet import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32com/mapi/__init__.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.mapi import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32com/mapi/emsabtags.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.mapi.emsabtags import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32com/mapi/exchange.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.mapi.exchange import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32com/propsys/__init__.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.propsys import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32com/propsys/pscon.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.propsys.pscon import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32com/server/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32com/shell/__init__.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.shell import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32com/taskscheduler/__init__.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.taskscheduler import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32com/util.pyi: -------------------------------------------------------------------------------- 1 | def IIDToInterfaceName(iid): ... 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32comext/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32comext/authorization/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32comext/axcontrol/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32comext/axdebug/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32comext/axscript/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32comext/axscript/asputil.pyi: -------------------------------------------------------------------------------- 1 | def iif(cond, t, f): ... 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32comext/axscript/client/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32comext/axscript/server/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32comext/bits/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32comext/directsound/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32comext/ifilter/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32comext/internet/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32comext/mapi/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32comext/propsys/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32comext/shell/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32comext/taskscheduler/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32ui.pyi: -------------------------------------------------------------------------------- 1 | from pythonwin.win32ui import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/win32uiole.pyi: -------------------------------------------------------------------------------- 1 | from pythonwin.win32uiole import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/winerror.pyi: -------------------------------------------------------------------------------- 1 | from win32.lib.winerror import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/winioctlcon.pyi: -------------------------------------------------------------------------------- 1 | from win32.lib.winioctlcon import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/winnt.pyi: -------------------------------------------------------------------------------- 1 | from win32.lib.winnt import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/winperf.pyi: -------------------------------------------------------------------------------- 1 | from win32.lib.winperf import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/winxpgui.pyi: -------------------------------------------------------------------------------- 1 | from win32.winxpgui import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pywin32/winxptheme.pyi: -------------------------------------------------------------------------------- 1 | from win32.lib.winxptheme import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/pyxdg/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "0.28.*" 2 | upstream_repository = "https://github.com/takluyver/pyxdg" 3 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/qrcode/qrcode/exceptions.pyi: -------------------------------------------------------------------------------- 1 | class DataOverflowError(Exception): ... 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/qrcode/qrcode/image/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/qrcode/qrcode/image/styles/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/regex/regex/__init__.pyi: -------------------------------------------------------------------------------- 1 | from .regex import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/reportlab/reportlab/graphics/barcode/fourstate.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/reportlab/reportlab/graphics/samples/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/requests/requests/certs.pyi: -------------------------------------------------------------------------------- 1 | # no public data 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/retry/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "0.9.*" 2 | upstream_repository = "https://github.com/invl/retry" 3 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/seaborn/seaborn/_core/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/seaborn/seaborn/_marks/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/seaborn/seaborn/_stats/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/seaborn/seaborn/colors/crayons.pyi: -------------------------------------------------------------------------------- 1 | crayons: dict[str, str] 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/seaborn/seaborn/colors/xkcd_rgb.pyi: -------------------------------------------------------------------------------- 1 | xkcd_rgb: dict[str, str] 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/seaborn/seaborn/external/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/setuptools/distutils/cmd.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils.cmd import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/setuptools/distutils/command/build.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils.command.build import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/setuptools/distutils/command/build_clib.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils.command.build_clib import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/setuptools/distutils/command/build_ext.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils.command.build_ext import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/setuptools/distutils/command/build_py.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils.command.build_py import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/setuptools/distutils/command/install.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils.command.install import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/setuptools/distutils/command/install_data.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils.command.install_data import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/setuptools/distutils/command/install_lib.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils.command.install_lib import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/setuptools/distutils/compat/__init__.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils.compat import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/setuptools/distutils/compilers/C/base.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils.compilers.C.base import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/setuptools/distutils/compilers/C/errors.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils.compilers.C.errors import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/setuptools/distutils/compilers/C/msvc.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils.compilers.C.msvc import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/setuptools/distutils/compilers/C/unix.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils.compilers.C.unix import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/setuptools/distutils/errors.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils.errors import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/setuptools/distutils/extension.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils.extension import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/setuptools/distutils/spawn.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils.spawn import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/setuptools/distutils/sysconfig.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils.sysconfig import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/setuptools/distutils/unixccompiler.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils.unixccompiler import * 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/setuptools/setuptools/command/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/shapely/shapely/algorithms/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/six/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "1.17.*" 2 | upstream_repository = "https://github.com/benjaminp/six" 3 | -------------------------------------------------------------------------------- /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/_dummy_thread.pyi: -------------------------------------------------------------------------------- 1 | from _thread 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/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/toml/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "0.10.*" 2 | upstream_repository = "https://github.com/uiri/toml" 3 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/tqdm/tqdm/_dist_ver.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/tqdm/tqdm/version.pyi: -------------------------------------------------------------------------------- 1 | __version__: str 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/unidiff/unidiff/__version__.pyi: -------------------------------------------------------------------------------- 1 | __version__: str 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/unidiff/unidiff/errors.pyi: -------------------------------------------------------------------------------- 1 | class UnidiffParseError(Exception): ... 2 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/workalendar/workalendar/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/wurlitzer/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "3.1.*" 2 | upstream_repository = "https://github.com/minrk/wurlitzer" 3 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/xdgenvpy/xdgenvpy/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/xmldiff/METADATA.toml: -------------------------------------------------------------------------------- 1 | version = "2.7.*" 2 | upstream_repository = "https://github.com/Shoobx/xmldiff" 3 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/xmldiff/xmldiff/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typeshed-fallback/stubs/yt-dlp/yt_dlp/utils/jslib/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/pyright-internal/typings/promise.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright-internal/typings/promise.d.ts -------------------------------------------------------------------------------- /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/microsoft/pyright/HEAD/packages/pyright/index.js -------------------------------------------------------------------------------- /packages/pyright/langserver.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright/langserver.index.js -------------------------------------------------------------------------------- /packages/pyright/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright/package-lock.json -------------------------------------------------------------------------------- /packages/pyright/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright/package.json -------------------------------------------------------------------------------- /packages/pyright/src/langserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright/src/langserver.ts -------------------------------------------------------------------------------- /packages/pyright/src/pyright.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright/src/pyright.ts -------------------------------------------------------------------------------- /packages/pyright/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright/tsconfig.json -------------------------------------------------------------------------------- /packages/pyright/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/pyright/webpack.config.js -------------------------------------------------------------------------------- /packages/vscode-pyright/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/vscode-pyright/.vscodeignore -------------------------------------------------------------------------------- /packages/vscode-pyright/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/vscode-pyright/CHANGELOG.md -------------------------------------------------------------------------------- /packages/vscode-pyright/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/vscode-pyright/LICENSE.txt -------------------------------------------------------------------------------- /packages/vscode-pyright/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/vscode-pyright/README.md -------------------------------------------------------------------------------- /packages/vscode-pyright/build/checkPackage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/vscode-pyright/build/checkPackage.js -------------------------------------------------------------------------------- /packages/vscode-pyright/build/renamePackage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/vscode-pyright/build/renamePackage.js -------------------------------------------------------------------------------- /packages/vscode-pyright/images/pyright-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/vscode-pyright/images/pyright-icon.png -------------------------------------------------------------------------------- /packages/vscode-pyright/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/vscode-pyright/package-lock.json -------------------------------------------------------------------------------- /packages/vscode-pyright/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/vscode-pyright/package.json -------------------------------------------------------------------------------- /packages/vscode-pyright/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/vscode-pyright/packages.config -------------------------------------------------------------------------------- /packages/vscode-pyright/sign.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/vscode-pyright/sign.proj -------------------------------------------------------------------------------- /packages/vscode-pyright/src/cancellationUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/vscode-pyright/src/cancellationUtils.ts -------------------------------------------------------------------------------- /packages/vscode-pyright/src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/vscode-pyright/src/extension.ts -------------------------------------------------------------------------------- /packages/vscode-pyright/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/vscode-pyright/src/server.ts -------------------------------------------------------------------------------- /packages/vscode-pyright/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/vscode-pyright/tsconfig.json -------------------------------------------------------------------------------- /packages/vscode-pyright/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/packages/vscode-pyright/webpack.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pyright/HEAD/tsconfig.json --------------------------------------------------------------------------------