├── empty.py ├── website ├── static │ ├── .nojekyll │ ├── img │ │ ├── copy-icon.svg │ │ └── Pyrefly-Preview-Symbol.png │ ├── CNAME │ ├── videos │ │ ├── hover.mp4 │ │ ├── openvsx.mp4 │ │ ├── rename.mp4 │ │ ├── move-file.mp4 │ │ ├── typeshed.mp4 │ │ ├── autocomplete.mp4 │ │ ├── diagnostics.mp4 │ │ ├── inlay-hints.mp4 │ │ ├── call-hierarchy.mp4 │ │ ├── signature-help.mp4 │ │ ├── IDE-file-rename.mp4 │ │ ├── document-symbols.mp4 │ │ ├── go-to-declaration.mp4 │ │ ├── go-to-definition.mp4 │ │ ├── jupyter-notebook.mp4 │ │ ├── workspace-symbols.mp4 │ │ ├── document-highlights.mp4 │ │ ├── find-all-references.mp4 │ │ ├── cmd-click-inlay-hint.mp4 │ │ ├── go-to-implementation.mp4 │ │ ├── go-to-type-definition.mp4 │ │ ├── pyrefly-ide-comparison.mov │ │ ├── pyright-ide-comparison.mov │ │ ├── semantic-highlighting.mp4 │ │ └── double-click-inlay-hint.mp4 │ └── fonts │ │ ├── Inter_18pt-Bold.ttf │ │ ├── MaisonNeue-Bold.ttf │ │ ├── MaisonNeue-Book.ttf │ │ ├── MaisonNeue-Demi.ttf │ │ ├── MaisonNeue-Mono.ttf │ │ ├── Inter_18pt-Italic.ttf │ │ ├── Inter_18pt-Regular.ttf │ │ ├── MaisonNeue-Bold.woff │ │ ├── MaisonNeue-Bold.woff2 │ │ ├── MaisonNeue-Book.woff │ │ ├── MaisonNeue-Book.woff2 │ │ ├── MaisonNeue-Demi.woff │ │ ├── MaisonNeue-Demi.woff2 │ │ ├── MaisonNeue-Light.ttf │ │ ├── MaisonNeue-Light.woff │ │ ├── MaisonNeue-Light.woff2 │ │ ├── MaisonNeue-Medium.ttf │ │ ├── MaisonNeue-Medium.woff │ │ ├── MaisonNeue-Mono.woff │ │ ├── MaisonNeue-Mono.woff2 │ │ ├── Inter_18pt-SemiBold.ttf │ │ ├── MaisonNeue-Medium.woff2 │ │ ├── Inter_18pt-BoldItalic.ttf │ │ ├── MaisonNeue-BoldItalic.ttf │ │ ├── MaisonNeue-BoldItalic.woff │ │ ├── MaisonNeue-BoldItalic.woff2 │ │ ├── MaisonNeue-BookItalic.ttf │ │ ├── MaisonNeue-BookItalic.woff │ │ ├── MaisonNeue-BookItalic.woff2 │ │ ├── MaisonNeue-DemiItalic.ttf │ │ ├── MaisonNeue-DemiItalic.woff │ │ ├── MaisonNeue-DemiItalic.woff2 │ │ ├── MaisonNeue-LightItalic.ttf │ │ ├── MaisonNeue-LightItalic.woff │ │ ├── MaisonNeue-MediumItalic.ttf │ │ ├── MaisonNeue-MonoItalic.ttf │ │ ├── MaisonNeue-MonoItalic.woff │ │ ├── MaisonNeue-MonoItalic.woff2 │ │ ├── Inter_18pt-SemiBoldItalic.ttf │ │ ├── MaisonNeue-LightItalic.woff2 │ │ ├── MaisonNeue-MediumItalic.woff │ │ └── MaisonNeue-MediumItalic.woff2 └── blog │ └── blog_imgs │ ├── ide-blog-hero.png │ ├── ide-settings.png │ ├── pydantic-blog.png │ ├── release-news.png │ ├── pyrefly_intro.webp │ └── why-typing-blog.png ├── pyrefly ├── python │ └── pyrefly │ │ └── py.typed ├── .gitignore ├── rust-toolchain └── lib │ └── test │ ├── django │ └── third-party │ │ └── django-stubs │ │ ├── py.typed │ │ ├── core │ │ ├── __init__.pyi │ │ ├── handlers │ │ │ └── __init__.pyi │ │ ├── servers │ │ │ └── __init__.pyi │ │ ├── cache │ │ │ └── backends │ │ │ │ └── __init__.pyi │ │ ├── checks │ │ │ ├── security │ │ │ │ └── __init__.pyi │ │ │ └── compatibility │ │ │ │ └── __init__.pyi │ │ ├── mail │ │ │ └── backends │ │ │ │ └── __init__.pyi │ │ ├── management │ │ │ └── commands │ │ │ │ └── __init__.pyi │ │ └── files │ │ │ └── __init__.pyi │ │ ├── utils │ │ ├── __init__.pyi │ │ └── hashable.pyi │ │ ├── contrib │ │ ├── __init__.pyi │ │ ├── gis │ │ │ ├── __init__.pyi │ │ │ ├── db │ │ │ │ ├── __init__.pyi │ │ │ │ └── backends │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── base │ │ │ │ │ └── __init__.pyi │ │ │ │ │ ├── mysql │ │ │ │ │ └── __init__.pyi │ │ │ │ │ ├── oracle │ │ │ │ │ └── __init__.pyi │ │ │ │ │ ├── postgis │ │ │ │ │ └── __init__.pyi │ │ │ │ │ └── spatialite │ │ │ │ │ └── __init__.pyi │ │ │ ├── gdal │ │ │ │ ├── raster │ │ │ │ │ └── __init__.pyi │ │ │ │ └── prototypes │ │ │ │ │ └── __init__.pyi │ │ │ ├── serializers │ │ │ │ └── __init__.pyi │ │ │ ├── geos │ │ │ │ └── error.pyi │ │ │ └── apps.pyi │ │ ├── humanize │ │ │ ├── __init__.pyi │ │ │ └── templatetags │ │ │ │ └── __init__.pyi │ │ ├── postgres │ │ │ └── __init__.pyi │ │ ├── sessions │ │ │ ├── __init__.pyi │ │ │ ├── backends │ │ │ │ └── __init__.pyi │ │ │ ├── management │ │ │ │ ├── __init__.pyi │ │ │ │ └── commands │ │ │ │ │ └── __init__.pyi │ │ │ └── migrations │ │ │ │ └── __init__.pyi │ │ ├── sites │ │ │ ├── __init__.pyi │ │ │ ├── migrations │ │ │ │ └── __init__.pyi │ │ │ └── apps.pyi │ │ ├── admin │ │ │ ├── views │ │ │ │ └── __init__.pyi │ │ │ ├── migrations │ │ │ │ └── __init__.pyi │ │ │ └── templatetags │ │ │ │ └── __init__.pyi │ │ ├── admindocs │ │ │ ├── __init__.pyi │ │ │ └── urls.pyi │ │ ├── auth │ │ │ ├── handlers │ │ │ │ └── __init__.pyi │ │ │ ├── migrations │ │ │ │ └── __init__.pyi │ │ │ ├── management │ │ │ │ └── commands │ │ │ │ │ └── __init__.pyi │ │ │ ├── urls.pyi │ │ │ └── apps.pyi │ │ ├── contenttypes │ │ │ ├── __init__.pyi │ │ │ ├── migrations │ │ │ │ └── __init__.pyi │ │ │ └── management │ │ │ │ └── commands │ │ │ │ └── __init__.pyi │ │ ├── flatpages │ │ │ ├── __init__.pyi │ │ │ ├── migrations │ │ │ │ └── __init__.pyi │ │ │ ├── templatetags │ │ │ │ └── __init__.pyi │ │ │ └── urls.pyi │ │ ├── redirects │ │ │ ├── __init__.pyi │ │ │ └── migrations │ │ │ │ └── __init__.pyi │ │ ├── staticfiles │ │ │ ├── __init__.pyi │ │ │ └── management │ │ │ │ ├── __init__.pyi │ │ │ │ └── commands │ │ │ │ └── __init__.pyi │ │ ├── syndication │ │ │ └── __init__.pyi │ │ └── messages │ │ │ └── utils.pyi │ │ ├── db │ │ └── backends │ │ │ ├── __init__.pyi │ │ │ ├── base │ │ │ └── __init__.pyi │ │ │ ├── dummy │ │ │ └── __init__.pyi │ │ │ ├── mysql │ │ │ └── __init__.pyi │ │ │ ├── oracle │ │ │ └── __init__.pyi │ │ │ ├── sqlite3 │ │ │ └── __init__.pyi │ │ │ ├── postgresql │ │ │ └── __init__.pyi │ │ │ └── signals.pyi │ │ ├── middleware │ │ └── __init__.pyi │ │ ├── template │ │ ├── loaders │ │ │ └── __init__.pyi │ │ └── backends │ │ │ └── __init__.pyi │ │ ├── templatetags │ │ └── __init__.pyi │ │ ├── views │ │ ├── decorators │ │ │ └── __init__.pyi │ │ └── __init__.pyi │ │ └── conf │ │ └── locale │ │ └── __init__.pyi │ └── lsp │ └── lsp_interaction │ └── test_files │ ├── prefer_pyi_when_missing_in_py │ └── pyrefly.toml │ ├── cycle_class │ └── pyrefly.toml │ ├── duplicate_export_test │ └── pyrefly.toml │ ├── prefixed_with_underscore │ └── pyrefly.toml │ ├── tests_requiring_config │ └── pyrefly.toml │ ├── missing_source_with_config │ └── pyrefly.toml │ ├── config_with_workspace_smaller │ └── pyrefly.toml │ ├── config_with_workspace_larger │ └── module_dir │ │ └── pyrefly.toml │ ├── disable_type_error_in_config │ └── pyrefly.toml │ ├── custom_interpreter_config │ └── src │ │ └── pyrefly.toml │ ├── diagnostics_file_not_in_includes │ └── pyrefly.toml │ ├── marker_file_no_config │ └── pyproject.toml │ ├── untyped_import_ignored │ └── pyrefly.toml │ └── rename_third_party │ └── pyrefly.toml ├── .claude └── CLAUDE.md ├── .gitignore ├── pyrefly_wasm ├── .gitignore ├── rust-toolchain └── .cargo │ └── config.toml ├── crates ├── tsp_types │ └── protocol_generator │ │ └── .gitignore ├── pyrefly_bundled │ └── third_party │ │ ├── stubs │ │ ├── boto3-stubs │ │ │ ├── py.typed │ │ │ ├── s3 │ │ │ │ └── __init__.pyi │ │ │ ├── ec2 │ │ │ │ └── __init__.pyi │ │ │ ├── dynamodb │ │ │ │ └── __init__.pyi │ │ │ └── resources │ │ │ │ └── __init__.pyi │ │ ├── pandas-stubs │ │ │ ├── py.typed │ │ │ ├── io │ │ │ │ ├── parsers.pyi │ │ │ │ ├── formats │ │ │ │ │ ├── css.pyi │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── clipboard │ │ │ │ │ └── __init__.pyi │ │ │ │ └── sas │ │ │ │ │ └── __init__.pyi │ │ │ ├── core │ │ │ │ ├── __init__.pyi │ │ │ │ ├── dtypes │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── cast.pyi │ │ │ │ ├── ops │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── docstrings.pyi │ │ │ │ ├── sparse │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── tools │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── util │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── computation │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── api.pyi │ │ │ │ ├── groupby │ │ │ │ │ └── categorical.pyi │ │ │ │ ├── indexes │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── interchange │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── reshape │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── strings │ │ │ │ │ └── __init__.pyi │ │ │ │ └── arrays │ │ │ │ │ └── arrow │ │ │ │ │ └── __init__.pyi │ │ │ ├── _libs │ │ │ │ ├── window │ │ │ │ │ └── __init__.pyi │ │ │ │ └── tslibs │ │ │ │ │ ├── conversion.pyi │ │ │ │ │ └── base.pyi │ │ │ ├── tseries │ │ │ │ └── api.pyi │ │ │ └── util │ │ │ │ ├── _print_versions.pyi │ │ │ │ └── _decorators.pyi │ │ ├── botocore-stubs │ │ │ ├── py.typed │ │ │ └── retries │ │ │ │ └── __init__.pyi │ │ ├── matplotlib-stubs │ │ │ ├── _api.pyi │ │ │ ├── py.typed │ │ │ ├── _version.pyi │ │ │ ├── _preprocess_data.pyi │ │ │ ├── _c_internal_utils.pyi │ │ │ ├── backends │ │ │ │ └── __init__.pyi │ │ │ ├── axes │ │ │ │ └── __init__.pyi │ │ │ ├── docstring.pyi │ │ │ ├── textmanager.pyi │ │ │ ├── tight_layout.pyi │ │ │ ├── tri │ │ │ │ └── __init__.pyi │ │ │ ├── type1font.pyi │ │ │ ├── blocking_input.pyi │ │ │ └── testing │ │ │ │ └── __init__.pyi │ │ ├── sklearn-stubs │ │ │ ├── py.typed │ │ │ ├── metrics │ │ │ │ ├── _base.pyi │ │ │ │ └── _plot │ │ │ │ │ ├── base.pyi │ │ │ │ │ └── __init__.pyi │ │ │ ├── tests │ │ │ │ └── __init__.pyi │ │ │ ├── utils │ │ │ │ ├── _arpack.pyi │ │ │ │ ├── _mask.pyi │ │ │ │ ├── _tags.pyi │ │ │ │ ├── _fast_dict.pyi │ │ │ │ ├── _show_versions.pyi │ │ │ │ └── stats.pyi │ │ │ ├── externals │ │ │ │ ├── __init__.pyi │ │ │ │ └── _packaging │ │ │ │ │ └── __init__.pyi │ │ │ ├── datasets │ │ │ │ ├── data │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── descr │ │ │ │ │ └── __init__.pyi │ │ │ │ └── images │ │ │ │ │ └── __init__.pyi │ │ │ ├── experimental │ │ │ │ └── __init__.pyi │ │ │ ├── inspection │ │ │ │ ├── _pd_utils.pyi │ │ │ │ └── _plot │ │ │ │ │ └── __init__.pyi │ │ │ ├── ensemble │ │ │ │ └── _hist_gradient_boosting │ │ │ │ │ └── __init__.pyi │ │ │ ├── cluster │ │ │ │ └── _k_means_common.pyi │ │ │ ├── __check_build │ │ │ │ ├── __init__.pyi │ │ │ │ └── _check_build.pyi │ │ │ ├── neighbors │ │ │ │ ├── _kd_tree.pyi │ │ │ │ └── _ball_tree.pyi │ │ │ └── _build_utils │ │ │ │ └── openmp_helpers.pyi │ │ ├── sympy-stubs │ │ │ ├── py.typed │ │ │ ├── solvers │ │ │ │ └── deutils.pyi │ │ │ ├── utilities │ │ │ │ └── magic.pyi │ │ │ ├── printing │ │ │ │ └── gtk.pyi │ │ │ ├── testing │ │ │ │ └── __init__.pyi │ │ │ ├── discrete │ │ │ │ └── recurrences.pyi │ │ │ ├── polys │ │ │ │ └── fglmtools.pyi │ │ │ ├── algebras │ │ │ │ └── __init__.pyi │ │ │ ├── parsing │ │ │ │ └── __init__.pyi │ │ │ └── plotting │ │ │ │ └── pygletplot │ │ │ │ └── plot_object.pyi │ │ ├── conans-stubs │ │ │ ├── assets │ │ │ │ ├── __init__.pyi │ │ │ │ └── templates │ │ │ │ │ ├── info_graph_dot.pyi │ │ │ │ │ ├── info_graph_html.pyi │ │ │ │ │ └── search_table_html.pyi │ │ │ ├── cli │ │ │ │ └── __init__.pyi │ │ │ ├── client │ │ │ │ ├── __init__.pyi │ │ │ │ ├── api │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── cmd │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── frogarian.pyi │ │ │ │ ├── cache │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── conanfile │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── envvars │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── graph │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── recorder │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── store │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── downloaders │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── tools │ │ │ │ │ └── android.pyi │ │ │ │ ├── rest │ │ │ │ │ └── __init__.pyi │ │ │ │ └── build │ │ │ │ │ └── __init__.pyi │ │ │ ├── search │ │ │ │ └── __init__.pyi │ │ │ ├── server │ │ │ │ ├── __init__.pyi │ │ │ │ ├── rest │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── bottle_plugins │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ └── controller │ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ │ ├── v1 │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ │ └── common │ │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── crypto │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── jwt │ │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── service │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── common │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ ├── v1 │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ ├── v2 │ │ │ │ │ │ └── __init__.pyi │ │ │ │ │ └── mime.pyi │ │ │ │ ├── store │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── url_manager.pyi │ │ │ │ └── conf │ │ │ │ │ └── default_server_conf.pyi │ │ │ ├── util │ │ │ │ ├── __init__.pyi │ │ │ │ ├── misc.pyi │ │ │ │ └── sha.pyi │ │ │ ├── build_info │ │ │ │ └── __init__.pyi │ │ │ ├── paths │ │ │ │ └── package_layouts │ │ │ │ │ └── __init__.pyi │ │ │ ├── model │ │ │ │ └── __init__.pyi │ │ │ └── conan.pyi │ │ ├── vispy-stubs │ │ │ ├── ext │ │ │ │ └── __init__.pyi │ │ │ ├── visuals │ │ │ │ ├── glsl │ │ │ │ │ └── __init__.pyi │ │ │ │ └── graphs │ │ │ │ │ └── __init__.pyi │ │ │ ├── util │ │ │ │ ├── eq.pyi │ │ │ │ └── osmesa_gl.pyi │ │ │ ├── scene │ │ │ │ └── widgets │ │ │ │ │ └── anchor.pyi │ │ │ └── README.md │ │ └── skimage-stubs │ │ │ ├── _shared │ │ │ ├── __init__.pyi │ │ │ └── _dependency_checks.pyi │ │ │ ├── scripts │ │ │ ├── __init__.pyi │ │ │ └── skivi.pyi │ │ │ ├── draw │ │ │ └── _polygon2mask.pyi │ │ │ ├── README.md │ │ │ ├── morphology │ │ │ └── greyreconstruct.pyi │ │ │ └── measure │ │ │ └── pnpoly.pyi │ │ └── typeshed │ │ ├── stdlib │ │ ├── lib2to3 │ │ │ ├── __init__.pyi │ │ │ └── fixes │ │ │ │ └── __init__.pyi │ │ ├── urllib │ │ │ └── __init__.pyi │ │ ├── wsgiref │ │ │ └── __init__.pyi │ │ ├── xml │ │ │ ├── etree │ │ │ │ ├── __init__.pyi │ │ │ │ └── cElementTree.pyi │ │ │ └── parsers │ │ │ │ └── __init__.pyi │ │ ├── xmlrpc │ │ │ └── __init__.pyi │ │ ├── compression │ │ │ ├── __init__.pyi │ │ │ ├── _common │ │ │ │ └── __init__.pyi │ │ │ ├── bz2.pyi │ │ │ ├── gzip.pyi │ │ │ ├── lzma.pyi │ │ │ └── zlib.pyi │ │ ├── concurrent │ │ │ └── __init__.pyi │ │ ├── email │ │ │ └── mime │ │ │ │ └── __init__.pyi │ │ ├── pydoc_data │ │ │ ├── __init__.pyi │ │ │ └── topics.pyi │ │ ├── dbm │ │ │ ├── gnu.pyi │ │ │ └── ndbm.pyi │ │ ├── distutils │ │ │ ├── command │ │ │ │ └── bdist_packager.pyi │ │ │ ├── debug.pyi │ │ │ ├── bcppcompiler.pyi │ │ │ └── msvccompiler.pyi │ │ ├── json │ │ │ └── tool.pyi │ │ ├── this.pyi │ │ ├── curses │ │ │ ├── panel.pyi │ │ │ └── has_key.pyi │ │ ├── encodings │ │ │ └── aliases.pyi │ │ ├── asyncio │ │ │ └── log.pyi │ │ ├── __main__.pyi │ │ ├── _bootlocale.pyi │ │ ├── ctypes │ │ │ └── macholib │ │ │ │ └── __init__.pyi │ │ ├── bisect.pyi │ │ ├── importlib │ │ │ └── metadata │ │ │ │ └── diagnose.pyi │ │ ├── collections │ │ │ └── abc.pyi │ │ └── sqlite3 │ │ │ └── dump.pyi │ │ └── stubs │ │ ├── tqdm │ │ └── tqdm │ │ │ ├── _dist_ver.pyi │ │ │ ├── version.pyi │ │ │ ├── _main.pyi │ │ │ ├── _tqdm_gui.pyi │ │ │ ├── _tqdm_notebook.pyi │ │ │ ├── auto.pyi │ │ │ ├── _tqdm_pandas.pyi │ │ │ └── autonotebook.pyi │ │ ├── PyMeeus │ │ └── pymeeus │ │ │ └── __init__.pyi │ │ ├── RPi.GPIO │ │ └── RPi │ │ │ └── __init__.pyi │ │ ├── boltons │ │ └── boltons │ │ │ ├── __init__.pyi │ │ │ └── easterutils.pyi │ │ ├── netaddr │ │ └── netaddr │ │ │ ├── compat.pyi │ │ │ └── contrib │ │ │ └── __init__.pyi │ │ ├── pywin32 │ │ ├── win32 │ │ │ ├── __init__.pyi │ │ │ └── lib │ │ │ │ └── __init__.pyi │ │ ├── pythonwin │ │ │ └── __init__.pyi │ │ ├── win32comext │ │ │ ├── __init__.pyi │ │ │ ├── bits │ │ │ │ └── __init__.pyi │ │ │ ├── mapi │ │ │ │ └── __init__.pyi │ │ │ ├── shell │ │ │ │ └── __init__.pyi │ │ │ ├── axcontrol │ │ │ │ └── __init__.pyi │ │ │ ├── axdebug │ │ │ │ └── __init__.pyi │ │ │ ├── axscript │ │ │ │ ├── __init__.pyi │ │ │ │ ├── client │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── server │ │ │ │ │ └── __init__.pyi │ │ │ │ └── asputil.pyi │ │ │ ├── ifilter │ │ │ │ └── __init__.pyi │ │ │ ├── internet │ │ │ │ └── __init__.pyi │ │ │ ├── propsys │ │ │ │ └── __init__.pyi │ │ │ ├── authorization │ │ │ │ └── __init__.pyi │ │ │ ├── directsound │ │ │ │ └── __init__.pyi │ │ │ └── taskscheduler │ │ │ │ └── __init__.pyi │ │ ├── win32com │ │ │ ├── gen_py │ │ │ │ └── __init__.pyi │ │ │ ├── server │ │ │ │ └── __init__.pyi │ │ │ ├── util.pyi │ │ │ ├── adsi │ │ │ │ ├── __init__.pyi │ │ │ │ ├── adsi.pyi │ │ │ │ └── adsicon.pyi │ │ │ ├── bits │ │ │ │ ├── __init__.pyi │ │ │ │ └── bits.pyi │ │ │ ├── mapi │ │ │ │ ├── __init__.pyi │ │ │ │ ├── mapi.pyi │ │ │ │ ├── exchange.pyi │ │ │ │ ├── mapitags.pyi │ │ │ │ ├── mapiutil.pyi │ │ │ │ └── emsabtags.pyi │ │ │ ├── shell │ │ │ │ ├── __init__.pyi │ │ │ │ ├── shell.pyi │ │ │ │ └── shellcon.pyi │ │ │ ├── axdebug │ │ │ │ ├── __init__.pyi │ │ │ │ ├── adb.pyi │ │ │ │ ├── util.pyi │ │ │ │ ├── axdebug.pyi │ │ │ │ ├── contexts.pyi │ │ │ │ ├── debugger.pyi │ │ │ │ ├── documents.pyi │ │ │ │ ├── gateways.pyi │ │ │ │ ├── stackframe.pyi │ │ │ │ ├── expressions.pyi │ │ │ │ └── codecontainer.pyi │ │ │ ├── axscript │ │ │ │ ├── __init__.pyi │ │ │ │ ├── asputil.pyi │ │ │ │ ├── axscript.pyi │ │ │ │ ├── client │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── debug.pyi │ │ │ │ │ ├── error.pyi │ │ │ │ │ └── framework.pyi │ │ │ │ └── server │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ └── axsite.pyi │ │ │ ├── ifilter │ │ │ │ ├── __init__.pyi │ │ │ │ ├── ifilter.pyi │ │ │ │ └── ifiltercon.pyi │ │ │ ├── internet │ │ │ │ ├── __init__.pyi │ │ │ │ ├── inetcon.pyi │ │ │ │ └── internet.pyi │ │ │ ├── propsys │ │ │ │ ├── __init__.pyi │ │ │ │ ├── pscon.pyi │ │ │ │ └── propsys.pyi │ │ │ ├── axcontrol │ │ │ │ ├── __init__.pyi │ │ │ │ └── axcontrol.pyi │ │ │ ├── directsound │ │ │ │ ├── __init__.pyi │ │ │ │ └── directsound.pyi │ │ │ ├── authorization │ │ │ │ ├── __init__.pyi │ │ │ │ └── authorization.pyi │ │ │ └── taskscheduler │ │ │ │ ├── __init__.pyi │ │ │ │ └── taskscheduler.pyi │ │ ├── dde.pyi │ │ ├── odbc.pyi │ │ ├── timer.pyi │ │ ├── mmapfile.pyi │ │ ├── perfmon.pyi │ │ ├── win32api.pyi │ │ ├── win32gui.pyi │ │ ├── win32job.pyi │ │ ├── win32lz.pyi │ │ ├── win32net.pyi │ │ ├── win32pdh.pyi │ │ ├── win32ras.pyi │ │ ├── win32ts.pyi │ │ ├── winnt.pyi │ │ ├── winxpgui.pyi │ │ ├── commctrl.pyi │ │ ├── mmsystem.pyi │ │ ├── regutil.pyi │ │ ├── sspicon.pyi │ │ ├── win2kras.pyi │ │ ├── win32con.pyi │ │ ├── win32cred.pyi │ │ ├── win32crypt.pyi │ │ ├── win32event.pyi │ │ ├── win32file.pyi │ │ ├── win32help.pyi │ │ ├── win32inet.pyi │ │ ├── win32pipe.pyi │ │ ├── win32print.pyi │ │ ├── win32trace.pyi │ │ ├── win32ui.pyi │ │ ├── win32wnet.pyi │ │ ├── winerror.pyi │ │ ├── winperf.pyi │ │ ├── pywintypes.pyi │ │ ├── win32console.pyi │ │ ├── win32evtlog.pyi │ │ ├── win32netcon.pyi │ │ ├── win32process.pyi │ │ ├── win32profile.pyi │ │ ├── win32security.pyi │ │ ├── win32service.pyi │ │ ├── win32uiole.pyi │ │ ├── winioctlcon.pyi │ │ ├── winxptheme.pyi │ │ ├── ntsecuritycon.pyi │ │ ├── servicemanager.pyi │ │ ├── win32clipboard.pyi │ │ ├── win32cryptcon.pyi │ │ ├── win32inetcon.pyi │ │ ├── win32pdhquery.pyi │ │ ├── win32timezone.pyi │ │ ├── win32verstamp.pyi │ │ ├── win32evtlogutil.pyi │ │ ├── win32gui_struct.pyi │ │ ├── win32serviceutil.pyi │ │ └── win32transaction.pyi │ │ ├── xmldiff │ │ └── xmldiff │ │ │ └── __init__.pyi │ │ ├── Authlib │ │ └── authlib │ │ │ ├── oidc │ │ │ ├── __init__.pyi │ │ │ ├── core │ │ │ │ └── util.pyi │ │ │ └── discovery │ │ │ │ └── well_known.pyi │ │ │ ├── common │ │ │ └── __init__.pyi │ │ │ ├── integrations │ │ │ └── __init__.pyi │ │ │ ├── oauth2 │ │ │ └── rfc8693 │ │ │ │ └── __init__.pyi │ │ │ ├── oauth1 │ │ │ ├── errors.pyi │ │ │ └── rfc5849 │ │ │ │ └── util.pyi │ │ │ └── jose │ │ │ ├── rfc7518 │ │ │ └── util.pyi │ │ │ └── jwk.pyi │ │ ├── Jetson.GPIO │ │ └── Jetson │ │ │ ├── __init__.pyi │ │ │ └── GPIO │ │ │ └── __init__.pyi │ │ ├── WTForms │ │ └── wtforms │ │ │ └── csrf │ │ │ └── __init__.pyi │ │ ├── colorful │ │ └── colorful │ │ │ └── __init__.pyi │ │ ├── docker │ │ └── docker │ │ │ ├── models │ │ │ └── __init__.pyi │ │ │ ├── version.pyi │ │ │ ├── api │ │ │ └── __init__.pyi │ │ │ └── credentials │ │ │ └── utils.pyi │ │ ├── flake8 │ │ └── flake8 │ │ │ ├── api │ │ │ └── __init__.pyi │ │ │ ├── main │ │ │ └── __init__.pyi │ │ │ ├── formatting │ │ │ ├── __init__.pyi │ │ │ └── _windows_color.pyi │ │ │ ├── options │ │ │ └── __init__.pyi │ │ │ └── plugins │ │ │ └── __init__.pyi │ │ ├── gevent │ │ └── gevent │ │ │ ├── _ffi │ │ │ └── __init__.pyi │ │ │ ├── libev │ │ │ └── __init__.pyi │ │ │ ├── libuv │ │ │ └── __init__.pyi │ │ │ ├── ares.pyi │ │ │ ├── time.pyi │ │ │ └── resolver_ares.pyi │ │ ├── hvac │ │ └── hvac │ │ │ ├── constants │ │ │ ├── __init__.pyi │ │ │ └── azure.pyi │ │ │ └── __init__.pyi │ │ ├── jwcrypto │ │ └── jwcrypto │ │ │ └── __init__.pyi │ │ ├── ldap3 │ │ └── ldap3 │ │ │ ├── core │ │ │ └── __init__.pyi │ │ │ ├── protocol │ │ │ ├── __init__.pyi │ │ │ ├── sasl │ │ │ │ ├── __init__.pyi │ │ │ │ ├── plain.pyi │ │ │ │ └── external.pyi │ │ │ ├── schemas │ │ │ │ ├── __init__.pyi │ │ │ │ ├── ad2012R2.pyi │ │ │ │ ├── ds389.pyi │ │ │ │ ├── edir888.pyi │ │ │ │ ├── edir914.pyi │ │ │ │ └── slapd24.pyi │ │ │ └── formatters │ │ │ │ └── __init__.pyi │ │ │ ├── strategy │ │ │ └── __init__.pyi │ │ │ ├── utils │ │ │ ├── __init__.pyi │ │ │ └── uri.pyi │ │ │ ├── extend │ │ │ ├── novell │ │ │ │ └── __init__.pyi │ │ │ ├── microsoft │ │ │ │ ├── __init__.pyi │ │ │ │ └── unlockAccount.pyi │ │ │ └── standard │ │ │ │ └── __init__.pyi │ │ │ └── operation │ │ │ ├── __init__.pyi │ │ │ ├── unbind.pyi │ │ │ └── abandon.pyi │ │ ├── libsass │ │ └── sassutils │ │ │ └── __init__.pyi │ │ ├── passlib │ │ └── passlib │ │ │ ├── ext │ │ │ ├── __init__.pyi │ │ │ └── django │ │ │ │ ├── __init__.pyi │ │ │ │ └── models.pyi │ │ │ ├── crypto │ │ │ ├── __init__.pyi │ │ │ └── scrypt │ │ │ │ ├── _salsa.pyi │ │ │ │ └── _gen_files.pyi │ │ │ ├── handlers │ │ │ └── __init__.pyi │ │ │ ├── __init__.pyi │ │ │ └── utils │ │ │ └── md4.pyi │ │ ├── peewee │ │ └── playhouse │ │ │ └── __init__.pyi │ │ ├── pony │ │ └── pony │ │ │ ├── thirdparty │ │ │ └── __init__.pyi │ │ │ ├── flask │ │ │ └── example │ │ │ │ ├── __init__.pyi │ │ │ │ └── config.pyi │ │ │ ├── orm │ │ │ ├── dbproviders │ │ │ │ └── __init__.pyi │ │ │ ├── examples │ │ │ │ └── __init__.pyi │ │ │ ├── integration │ │ │ │ └── __init__.pyi │ │ │ └── __init__.pyi │ │ │ └── utils │ │ │ └── __init__.pyi │ │ ├── pyasn1 │ │ └── pyasn1 │ │ │ ├── codec │ │ │ ├── __init__.pyi │ │ │ ├── ber │ │ │ │ └── __init__.pyi │ │ │ ├── cer │ │ │ │ └── __init__.pyi │ │ │ ├── der │ │ │ │ └── __init__.pyi │ │ │ └── native │ │ │ │ └── __init__.pyi │ │ │ ├── compat │ │ │ ├── __init__.pyi │ │ │ └── integer.pyi │ │ │ ├── type │ │ │ └── __init__.pyi │ │ │ └── __init__.pyi │ │ ├── qrcode │ │ └── qrcode │ │ │ ├── image │ │ │ ├── __init__.pyi │ │ │ └── styles │ │ │ │ └── __init__.pyi │ │ │ ├── exceptions.pyi │ │ │ ├── release.pyi │ │ │ └── LUT.pyi │ │ ├── xdgenvpy │ │ └── xdgenvpy │ │ │ └── __init__.pyi │ │ ├── PyMySQL │ │ └── pymysql │ │ │ └── constants │ │ │ └── __init__.pyi │ │ ├── braintree │ │ └── braintree │ │ │ ├── test │ │ │ └── __init__.pyi │ │ │ ├── exceptions │ │ │ └── braintree_error.pyi │ │ │ ├── version.pyi │ │ │ └── blik_alias.pyi │ │ ├── channels │ │ └── channels │ │ │ ├── generic │ │ │ └── __init__.pyi │ │ │ ├── management │ │ │ ├── __init__.pyi │ │ │ └── commands │ │ │ │ └── __init__.pyi │ │ │ └── security │ │ │ └── __init__.pyi │ │ ├── console-menu │ │ └── consolemenu │ │ │ ├── version.pyi │ │ │ └── validators │ │ │ └── __init__.pyi │ │ ├── grpcio-status │ │ └── grpc_status │ │ │ └── __init__.pyi │ │ ├── gunicorn │ │ └── gunicorn │ │ │ ├── app │ │ │ └── __init__.pyi │ │ │ └── instrument │ │ │ └── __init__.pyi │ │ ├── html5lib │ │ └── html5lib │ │ │ ├── filters │ │ │ └── __init__.pyi │ │ │ ├── treeadapters │ │ │ └── genshi.pyi │ │ │ └── _trie │ │ │ └── __init__.pyi │ │ ├── openpyxl │ │ └── openpyxl │ │ │ ├── pivot │ │ │ └── __init__.pyi │ │ │ ├── reader │ │ │ └── __init__.pyi │ │ │ ├── writer │ │ │ ├── __init__.pyi │ │ │ └── theme.pyi │ │ │ ├── packaging │ │ │ └── __init__.pyi │ │ │ ├── worksheet │ │ │ └── __init__.pyi │ │ │ ├── compat │ │ │ ├── abc.pyi │ │ │ └── product.pyi │ │ │ ├── chart │ │ │ └── reader.pyi │ │ │ ├── formatting │ │ │ └── __init__.pyi │ │ │ ├── drawing │ │ │ └── __init__.pyi │ │ │ ├── comments │ │ │ └── __init__.pyi │ │ │ ├── formula │ │ │ └── __init__.pyi │ │ │ ├── workbook │ │ │ ├── __init__.pyi │ │ │ └── external_link │ │ │ │ └── __init__.pyi │ │ │ ├── chartsheet │ │ │ └── __init__.pyi │ │ │ └── utils │ │ │ ├── protection.pyi │ │ │ └── escape.pyi │ │ ├── pika │ │ └── pika │ │ │ └── adapters │ │ │ └── utils │ │ │ └── __init__.pyi │ │ ├── pyflakes │ │ └── pyflakes │ │ │ ├── scripts │ │ │ └── __init__.pyi │ │ │ ├── __main__.pyi │ │ │ └── __init__.pyi │ │ ├── pyserial │ │ └── serial │ │ │ ├── tools │ │ │ └── __init__.pyi │ │ │ ├── urlhandler │ │ │ ├── __init__.pyi │ │ │ └── protocol_rfc2217.pyi │ │ │ └── __main__.pyi │ │ ├── seaborn │ │ └── seaborn │ │ │ ├── _core │ │ │ ├── __init__.pyi │ │ │ └── exceptions.pyi │ │ │ ├── _marks │ │ │ └── __init__.pyi │ │ │ ├── _stats │ │ │ └── __init__.pyi │ │ │ ├── external │ │ │ └── __init__.pyi │ │ │ └── colors │ │ │ ├── crayons.pyi │ │ │ └── xkcd_rgb.pyi │ │ ├── workalendar │ │ └── workalendar │ │ │ ├── __init__.pyi │ │ │ └── usa │ │ │ ├── guam.pyi │ │ │ ├── idaho.pyi │ │ │ ├── iowa.pyi │ │ │ ├── maine.pyi │ │ │ ├── ohio.pyi │ │ │ ├── utah.pyi │ │ │ ├── alaska.pyi │ │ │ ├── arizona.pyi │ │ │ ├── arkansas.pyi │ │ │ ├── colorado.pyi │ │ │ ├── delaware.pyi │ │ │ ├── kansas.pyi │ │ │ ├── kentucky.pyi │ │ │ ├── maryland.pyi │ │ │ ├── michigan.pyi │ │ │ ├── missouri.pyi │ │ │ ├── montana.pyi │ │ │ ├── nebraska.pyi │ │ │ ├── nevada.pyi │ │ │ ├── new_york.pyi │ │ │ ├── oklahoma.pyi │ │ │ ├── oregon.pyi │ │ │ ├── vermont.pyi │ │ │ └── wyoming.pyi │ │ ├── yt-dlp │ │ └── yt_dlp │ │ │ ├── utils │ │ │ └── jslib │ │ │ │ └── __init__.pyi │ │ │ └── downloader │ │ │ └── mhtml.pyi │ │ ├── aws-xray-sdk │ │ └── aws_xray_sdk │ │ │ ├── ext │ │ │ ├── __init__.pyi │ │ │ ├── flask │ │ │ │ └── __init__.pyi │ │ │ ├── aiohttp │ │ │ │ ├── __init__.pyi │ │ │ │ └── middleware.pyi │ │ │ ├── bottle │ │ │ │ └── __init__.pyi │ │ │ ├── sqlalchemy │ │ │ │ ├── __init__.pyi │ │ │ │ └── util │ │ │ │ │ └── __init__.pyi │ │ │ ├── flask_sqlalchemy │ │ │ │ └── __init__.pyi │ │ │ ├── botocore │ │ │ │ ├── patch.pyi │ │ │ │ └── __init__.pyi │ │ │ ├── psycopg │ │ │ │ ├── patch.pyi │ │ │ │ └── __init__.pyi │ │ │ ├── psycopg2 │ │ │ │ ├── patch.pyi │ │ │ │ └── __init__.pyi │ │ │ ├── aiobotocore │ │ │ │ └── patch.pyi │ │ │ ├── pg8000 │ │ │ │ └── patch.pyi │ │ │ ├── httpx │ │ │ │ └── __init__.pyi │ │ │ ├── mysql │ │ │ │ └── __init__.pyi │ │ │ ├── pymongo │ │ │ │ └── __init__.pyi │ │ │ ├── pynamodb │ │ │ │ └── __init__.pyi │ │ │ ├── requests │ │ │ │ └── __init__.pyi │ │ │ ├── sqlalchemy_core │ │ │ │ └── patch.pyi │ │ │ └── sqlite3 │ │ │ │ └── __init__.pyi │ │ │ ├── core │ │ │ ├── emitters │ │ │ │ └── __init__.pyi │ │ │ ├── models │ │ │ │ └── __init__.pyi │ │ │ ├── plugins │ │ │ │ └── __init__.pyi │ │ │ ├── sampling │ │ │ │ ├── __init__.pyi │ │ │ │ └── local │ │ │ │ │ └── __init__.pyi │ │ │ ├── streaming │ │ │ │ └── __init__.pyi │ │ │ ├── utils │ │ │ │ └── __init__.pyi │ │ │ └── exceptions │ │ │ │ └── __init__.pyi │ │ │ ├── version.pyi │ │ │ └── __init__.pyi │ │ ├── click-web │ │ └── click_web │ │ │ └── resources │ │ │ └── __init__.pyi │ │ ├── convertdate │ │ └── convertdate │ │ │ └── data │ │ │ └── __init__.pyi │ │ ├── dateparser │ │ ├── dateparser_data │ │ │ └── __init__.pyi │ │ └── dateparser │ │ │ └── custom_language_detection │ │ │ └── __init__.pyi │ │ ├── grpcio-channelz │ │ └── grpc_channelz │ │ │ ├── __init__.pyi │ │ │ └── v1 │ │ │ └── __init__.pyi │ │ ├── opentracing │ │ └── opentracing │ │ │ ├── ext │ │ │ ├── __init__.pyi │ │ │ └── tags.pyi │ │ │ ├── harness │ │ │ └── __init__.pyi │ │ │ └── scope_managers │ │ │ └── constants.pyi │ │ ├── protobuf │ │ └── google │ │ │ └── protobuf │ │ │ ├── util │ │ │ └── __init__.pyi │ │ │ ├── compiler │ │ │ └── __init__.pyi │ │ │ ├── internal │ │ │ └── __init__.pyi │ │ │ └── __init__.pyi │ │ ├── pyinstaller │ │ └── PyInstaller │ │ │ ├── depend │ │ │ └── __init__.pyi │ │ │ ├── lib │ │ │ ├── __init__.pyi │ │ │ └── modulegraph │ │ │ │ └── __init__.pyi │ │ │ └── utils │ │ │ └── __init__.pyi │ │ ├── setuptools │ │ ├── setuptools │ │ │ ├── command │ │ │ │ └── __init__.pyi │ │ │ ├── version.pyi │ │ │ ├── launch.pyi │ │ │ ├── _distutils │ │ │ │ └── __init__.pyi │ │ │ ├── logging.pyi │ │ │ └── windows_support.pyi │ │ └── distutils │ │ │ ├── cmd.pyi │ │ │ ├── dist.pyi │ │ │ ├── errors.pyi │ │ │ ├── spawn.pyi │ │ │ ├── util.pyi │ │ │ ├── dep_util.pyi │ │ │ ├── filelist.pyi │ │ │ ├── _modified.pyi │ │ │ ├── compat │ │ │ └── __init__.pyi │ │ │ ├── extension.pyi │ │ │ ├── sysconfig.pyi │ │ │ ├── _msvccompiler.pyi │ │ │ ├── archive_util.pyi │ │ │ ├── command │ │ │ ├── bdist.pyi │ │ │ ├── build.pyi │ │ │ ├── sdist.pyi │ │ │ ├── build_py.pyi │ │ │ ├── install.pyi │ │ │ ├── bdist_rpm.pyi │ │ │ ├── build_clib.pyi │ │ │ ├── build_ext.pyi │ │ │ ├── install_data.pyi │ │ │ ├── install_lib.pyi │ │ │ └── install_scripts.pyi │ │ │ ├── unixccompiler.pyi │ │ │ ├── __init__.pyi │ │ │ └── compilers │ │ │ └── C │ │ │ ├── base.pyi │ │ │ ├── msvc.pyi │ │ │ ├── unix.pyi │ │ │ └── errors.pyi │ │ ├── shapely │ │ └── shapely │ │ │ └── algorithms │ │ │ └── __init__.pyi │ │ ├── antlr4-python3-runtime │ │ └── antlr4 │ │ │ ├── atn │ │ │ └── __init__.pyi │ │ │ ├── dfa │ │ │ └── __init__.pyi │ │ │ ├── error │ │ │ └── __init__.pyi │ │ │ ├── tree │ │ │ └── __init__.pyi │ │ │ └── xpath │ │ │ └── __init__.pyi │ │ ├── chevron │ │ └── chevron │ │ │ └── metadata.pyi │ │ ├── django-import-export │ │ ├── management │ │ │ ├── __init__.pyi │ │ │ └── commands │ │ │ │ └── __init__.pyi │ │ └── import_export │ │ │ ├── formats │ │ │ └── __init__.pyi │ │ │ ├── templatetags │ │ │ └── __init__.pyi │ │ │ └── __init__.pyi │ │ ├── grpcio-health-checking │ │ └── grpc_health │ │ │ ├── __init__.pyi │ │ │ └── v1 │ │ │ └── __init__.pyi │ │ ├── grpcio-reflection │ │ └── grpc_reflection │ │ │ ├── __init__.pyi │ │ │ └── v1alpha │ │ │ └── __init__.pyi │ │ ├── oauthlib │ │ └── oauthlib │ │ │ ├── openid │ │ │ └── connect │ │ │ │ ├── __init__.pyi │ │ │ │ └── core │ │ │ │ └── __init__.pyi │ │ │ └── oauth2 │ │ │ └── rfc8628 │ │ │ └── clients │ │ │ └── __init__.pyi │ │ ├── requests │ │ └── requests │ │ │ ├── certs.pyi │ │ │ └── status_codes.pyi │ │ ├── six │ │ └── six │ │ │ └── moves │ │ │ ├── queue.pyi │ │ │ ├── _thread.pyi │ │ │ ├── cPickle.pyi │ │ │ ├── copyreg.pyi │ │ │ ├── reprlib.pyi │ │ │ ├── tkinter.pyi │ │ │ ├── _dummy_thread.pyi │ │ │ ├── BaseHTTPServer.pyi │ │ │ ├── CGIHTTPServer.pyi │ │ │ ├── html_entities.pyi │ │ │ ├── html_parser.pyi │ │ │ ├── socketserver.pyi │ │ │ ├── tkinter_ttk.pyi │ │ │ ├── urllib_error.pyi │ │ │ ├── urllib_parse.pyi │ │ │ ├── SimpleHTTPServer.pyi │ │ │ ├── collections_abc.pyi │ │ │ ├── email_mime_base.pyi │ │ │ ├── email_mime_text.pyi │ │ │ ├── http_cookiejar.pyi │ │ │ ├── tkinter_dialog.pyi │ │ │ ├── urllib_request.pyi │ │ │ ├── urllib_response.pyi │ │ │ ├── tkinter_constants.pyi │ │ │ ├── tkinter_filedialog.pyi │ │ │ ├── urllib_robotparser.pyi │ │ │ ├── email_mime_multipart.pyi │ │ │ ├── tkinter_commondialog.pyi │ │ │ ├── tkinter_tkfiledialog.pyi │ │ │ ├── email_mime_nonmultipart.pyi │ │ │ └── urllib │ │ │ └── robotparser.pyi │ │ ├── tensorflow │ │ └── tensorflow │ │ │ ├── core │ │ │ └── protobuf │ │ │ │ └── __init__.pyi │ │ │ ├── python │ │ │ ├── trackable │ │ │ │ └── __init__.pyi │ │ │ ├── feature_column │ │ │ │ └── __init__.pyi │ │ │ ├── __init__.pyi │ │ │ └── keras │ │ │ │ └── __init__.pyi │ │ │ ├── initializers.pyi │ │ │ └── types │ │ │ └── __init__.pyi │ │ ├── flake8-simplify │ │ └── flake8_simplify │ │ │ └── rules │ │ │ └── __init__.pyi │ │ ├── reportlab │ │ └── reportlab │ │ │ ├── graphics │ │ │ ├── barcode │ │ │ │ └── fourstate.pyi │ │ │ ├── samples │ │ │ │ └── __init__.pyi │ │ │ ├── __init__.pyi │ │ │ ├── charts │ │ │ │ └── __init__.pyi │ │ │ └── widgets │ │ │ │ └── __init__.pyi │ │ │ ├── pdfbase │ │ │ └── __init__.pyi │ │ │ └── pdfgen │ │ │ └── __init__.pyi │ │ ├── unidiff │ │ └── unidiff │ │ │ ├── __version__.pyi │ │ │ └── errors.pyi │ │ ├── Flask-Cors │ │ └── flask_cors │ │ │ └── version.pyi │ │ ├── geopandas │ │ └── geopandas │ │ │ ├── tools │ │ │ ├── hilbert_curve.pyi │ │ │ └── _show_versions.pyi │ │ │ └── io │ │ │ └── __init__.pyi │ │ ├── nanoid │ │ └── nanoid │ │ │ ├── resources.pyi │ │ │ └── algorithm.pyi │ │ ├── bleach │ │ └── bleach │ │ │ └── parse_shim.pyi │ │ ├── docutils │ │ └── docutils │ │ │ └── utils │ │ │ ├── urischemes.pyi │ │ │ └── math │ │ │ └── unichar2tex.pyi │ │ ├── google-cloud-ndb │ │ └── google │ │ │ └── cloud │ │ │ └── ndb │ │ │ └── version.pyi │ │ ├── qrbill │ │ └── qrbill │ │ │ └── __init__.pyi │ │ ├── auth0-python │ │ └── auth0 │ │ │ └── utils.pyi │ │ ├── cffi │ │ └── cffi │ │ │ └── lock.pyi │ │ ├── django-filter │ │ └── django_filters │ │ │ └── compat.pyi │ │ ├── gdb │ │ └── gdb │ │ │ ├── dap │ │ │ ├── state.pyi │ │ │ └── pause.pyi │ │ │ └── prompt.pyi │ │ ├── zxcvbn │ │ └── zxcvbn │ │ │ └── frequency_lists.pyi │ │ ├── lupa │ │ └── lupa │ │ │ └── version.pyi │ │ ├── mysqlclient │ │ └── MySQLdb │ │ │ └── release.pyi │ │ ├── pyRFC3339 │ │ └── pyrfc3339 │ │ │ └── utils.pyi │ │ ├── pynput │ │ └── pynput │ │ │ ├── __init__.pyi │ │ │ ├── _info.pyi │ │ │ └── mouse │ │ │ └── _dummy.pyi │ │ ├── Pygments │ │ └── pygments │ │ │ ├── modeline.pyi │ │ │ └── formatters │ │ │ └── _mapping.pyi │ │ ├── assertpy │ │ └── assertpy │ │ │ └── helpers.pyi │ │ ├── pyluach │ │ └── pyluach │ │ │ └── __init__.pyi │ │ ├── retry │ │ └── retry │ │ │ └── __init__.pyi │ │ ├── Markdown │ │ └── markdown │ │ │ └── __meta__.pyi │ │ ├── webencodings │ │ └── webencodings │ │ │ └── labels.pyi │ │ ├── xlrd │ │ └── xlrd │ │ │ └── info.pyi │ │ ├── tzdata │ │ └── tzdata │ │ │ └── __init__.pyi │ │ └── watchpoints │ │ └── watchpoints │ │ └── ast_monkey.pyi └── pyrefly_derive │ └── .gitignore ├── .github └── ISSUE_TEMPLATE │ └── config.yml ├── rust-toolchain.toml ├── lsp ├── .gitignore └── images │ └── pyrefly-symbol.png ├── yarn.lock └── conformance └── third_party ├── _enums_member_values.py ├── _enums_members.py └── pyrefly.toml /empty.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/python/pyrefly/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/static/img/copy-icon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.claude/CLAUDE.md: -------------------------------------------------------------------------------- 1 | @../AGENTS.md 2 | -------------------------------------------------------------------------------- /website/static/CNAME: -------------------------------------------------------------------------------- 1 | pyrefly.org 2 | -------------------------------------------------------------------------------- /pyrefly/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /pyrefly/rust-toolchain: -------------------------------------------------------------------------------- 1 | nightly-2025-09-14 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | debug.json 2 | debug.js 3 | target/ 4 | -------------------------------------------------------------------------------- /pyrefly_wasm/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /pyrefly_wasm/rust-toolchain: -------------------------------------------------------------------------------- 1 | ../pyrefly/rust-toolchain -------------------------------------------------------------------------------- /crates/tsp_types/protocol_generator/.gitignore: -------------------------------------------------------------------------------- 1 | .venv 2 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/boto3-stubs/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/pandas-stubs/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_derive/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/boto3-stubs/s3/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/botocore-stubs/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/matplotlib-stubs/_api.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/matplotlib-stubs/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/pandas-stubs/io/parsers.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sklearn-stubs/py.typed: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sympy-stubs/py.typed: -------------------------------------------------------------------------------- 1 | partial -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/core/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/utils/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/boto3-stubs/ec2/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/assets/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/cli/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/client/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/search/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/server/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/util/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/matplotlib-stubs/_version.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/pandas-stubs/core/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/pandas-stubs/io/formats/css.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sklearn-stubs/metrics/_base.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sklearn-stubs/tests/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sklearn-stubs/utils/_arpack.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sklearn-stubs/utils/_mask.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/vispy-stubs/ext/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/urllib/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/wsgiref/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/xml/etree/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/xmlrpc/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/tqdm/tqdm/_dist_ver.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/gis/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/db/backends/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/middleware/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- 1 | [toolchain] 2 | channel = "nightly-2025-09-14" 3 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/boto3-stubs/dynamodb/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/boto3-stubs/resources/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/botocore-stubs/retries/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/build_info/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/client/api/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/client/cmd/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/server/rest/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/matplotlib-stubs/_preprocess_data.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/pandas-stubs/core/dtypes/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/pandas-stubs/core/dtypes/cast.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/pandas-stubs/core/ops/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/pandas-stubs/core/ops/docstrings.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/pandas-stubs/core/sparse/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/pandas-stubs/core/tools/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/pandas-stubs/core/util/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/skimage-stubs/_shared/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/skimage-stubs/scripts/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sklearn-stubs/externals/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sklearn-stubs/metrics/_plot/base.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/vispy-stubs/visuals/glsl/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/compression/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/concurrent/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/email/mime/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/pydoc_data/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/PyMeeus/pymeeus/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/RPi.GPIO/RPi/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/boltons/boltons/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/netaddr/netaddr/compat.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/xmldiff/xmldiff/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/gis/db/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/humanize/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/postgres/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/sessions/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/sites/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/core/handlers/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/core/servers/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/db/backends/base/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/template/loaders/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/templatetags/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/views/decorators/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/client/cache/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/client/conanfile/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/client/envvars/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/client/graph/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/client/recorder/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/client/store/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/server/crypto/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/server/service/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/server/store/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/server/store/url_manager.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/matplotlib-stubs/_c_internal_utils.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/matplotlib-stubs/backends/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/pandas-stubs/_libs/window/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/pandas-stubs/core/computation/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/pandas-stubs/core/groupby/categorical.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/pandas-stubs/core/indexes/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/pandas-stubs/core/interchange/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/pandas-stubs/core/reshape/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/pandas-stubs/core/strings/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/pandas-stubs/io/clipboard/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sklearn-stubs/datasets/data/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sklearn-stubs/datasets/descr/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sklearn-stubs/datasets/images/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sklearn-stubs/experimental/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sklearn-stubs/inspection/_pd_utils.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sklearn-stubs/metrics/_plot/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/compression/_common/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/Authlib/authlib/oidc/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/Jetson.GPIO/Jetson/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/WTForms/wtforms/csrf/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/colorful/colorful/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/docker/docker/models/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/flake8/flake8/api/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/flake8/flake8/main/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/gevent/gevent/_ffi/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/hvac/hvac/constants/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/jwcrypto/jwcrypto/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/ldap3/ldap3/core/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/ldap3/ldap3/protocol/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/ldap3/ldap3/strategy/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/ldap3/ldap3/utils/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/libsass/sassutils/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/passlib/passlib/ext/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/peewee/playhouse/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pony/pony/thirdparty/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pyasn1/pyasn1/codec/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pyasn1/pyasn1/compat/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pyasn1/pyasn1/type/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/pythonwin/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32/lib/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32comext/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/qrcode/qrcode/image/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/xdgenvpy/xdgenvpy/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/admin/views/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/admindocs/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/auth/handlers/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/contenttypes/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/flatpages/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/redirects/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/staticfiles/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/syndication/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/core/cache/backends/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/core/checks/security/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/core/mail/backends/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/db/backends/dummy/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/db/backends/mysql/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/db/backends/oracle/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/db/backends/sqlite3/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/template/backends/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/client/downloaders/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/paths/package_layouts/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/server/crypto/jwt/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/server/service/common/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/server/service/v1/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/server/service/v2/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/pandas-stubs/core/arrays/arrow/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sklearn-stubs/externals/_packaging/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sklearn-stubs/inspection/_plot/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/dbm/gnu.pyi: -------------------------------------------------------------------------------- 1 | from _gdbm import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/dbm/ndbm.pyi: -------------------------------------------------------------------------------- 1 | from _dbm import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/command/bdist_packager.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/Authlib/authlib/common/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/PyMySQL/pymysql/constants/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/braintree/braintree/test/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/channels/channels/generic/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/console-menu/consolemenu/version.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/flake8/flake8/formatting/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/flake8/flake8/options/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/flake8/flake8/plugins/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/grpcio-status/grpc_status/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/gunicorn/gunicorn/app/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/html5lib/html5lib/filters/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/ldap3/ldap3/extend/novell/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/ldap3/ldap3/operation/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/ldap3/ldap3/protocol/sasl/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/netaddr/netaddr/contrib/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/openpyxl/openpyxl/pivot/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/openpyxl/openpyxl/reader/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/openpyxl/openpyxl/writer/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/passlib/passlib/crypto/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/passlib/passlib/handlers/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pika/pika/adapters/utils/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pony/pony/flask/example/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pony/pony/orm/dbproviders/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pony/pony/orm/examples/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pony/pony/orm/integration/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pyasn1/pyasn1/codec/ber/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pyasn1/pyasn1/codec/cer/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pyasn1/pyasn1/codec/der/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pyflakes/pyflakes/scripts/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pyserial/serial/tools/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/gen_py/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/server/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32comext/bits/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32comext/mapi/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32comext/shell/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/seaborn/seaborn/_core/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/seaborn/seaborn/_marks/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/seaborn/seaborn/_stats/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/seaborn/seaborn/external/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/workalendar/workalendar/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/yt-dlp/yt_dlp/utils/jslib/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lsp/.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | node_modules 3 | .vscode-test 4 | *.vsix 5 | dist/ 6 | bin/ 7 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/admin/migrations/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/admin/templatetags/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/auth/migrations/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/gis/db/backends/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/gis/gdal/raster/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/gis/serializers/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/sessions/backends/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/sites/migrations/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/core/checks/compatibility/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/core/management/commands/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/db/backends/postgresql/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/server/rest/bottle_plugins/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/server/rest/controller/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/server/rest/controller/v1/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/skimage-stubs/scripts/skivi.pyi: -------------------------------------------------------------------------------- 1 | def main(): ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/compression/bz2.pyi: -------------------------------------------------------------------------------- 1 | from bz2 import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/json/tool.pyi: -------------------------------------------------------------------------------- 1 | def main() -> None: ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/this.pyi: -------------------------------------------------------------------------------- 1 | s: str 2 | d: dict[str, str] 3 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/Authlib/authlib/integrations/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/Authlib/authlib/oauth2/rfc8693/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/channels/channels/management/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/channels/channels/security/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/click-web/click_web/resources/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/convertdate/convertdate/data/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/dateparser/dateparser_data/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/grpcio-channelz/grpc_channelz/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/gunicorn/gunicorn/instrument/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/ldap3/ldap3/extend/microsoft/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/ldap3/ldap3/extend/standard/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/ldap3/ldap3/protocol/schemas/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/openpyxl/openpyxl/packaging/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/openpyxl/openpyxl/worksheet/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/opentracing/opentracing/ext/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/passlib/passlib/ext/django/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/protobuf/google/protobuf/util/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pyasn1/pyasn1/codec/native/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pyinstaller/PyInstaller/depend/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pyinstaller/PyInstaller/lib/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pyinstaller/PyInstaller/utils/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pyserial/serial/urlhandler/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32comext/axcontrol/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32comext/axdebug/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32comext/axscript/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32comext/ifilter/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32comext/internet/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32comext/propsys/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/qrcode/qrcode/image/styles/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/setuptools/setuptools/command/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/shapely/shapely/algorithms/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/tqdm/tqdm/version.pyi: -------------------------------------------------------------------------------- 1 | __version__: str 2 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/contenttypes/migrations/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/flatpages/migrations/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/flatpages/templatetags/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/gis/db/backends/base/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/gis/db/backends/mysql/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/gis/db/backends/oracle/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/gis/db/backends/postgis/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/gis/gdal/prototypes/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/humanize/templatetags/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/redirects/migrations/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/sessions/management/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/sessions/migrations/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/staticfiles/management/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/lsp/lsp_interaction/test_files/prefer_pyi_when_missing_in_py/pyrefly.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/server/rest/controller/common/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/util/misc.pyi: -------------------------------------------------------------------------------- 1 | def make_tuple(value): ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/compression/gzip.pyi: -------------------------------------------------------------------------------- 1 | from gzip import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/compression/lzma.pyi: -------------------------------------------------------------------------------- 1 | from lzma import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/compression/zlib.pyi: -------------------------------------------------------------------------------- 1 | from zlib import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/antlr4-python3-runtime/antlr4/atn/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/antlr4-python3-runtime/antlr4/dfa/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/antlr4-python3-runtime/antlr4/error/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/antlr4-python3-runtime/antlr4/tree/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/antlr4-python3-runtime/antlr4/xpath/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/flask/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/chevron/chevron/metadata.pyi: -------------------------------------------------------------------------------- 1 | version: str 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/console-menu/consolemenu/validators/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/django-import-export/management/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/docker/docker/version.pyi: -------------------------------------------------------------------------------- 1 | __version__: str 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/grpcio-channelz/grpc_channelz/v1/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/grpcio-health-checking/grpc_health/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/grpcio-reflection/grpc_reflection/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/ldap3/ldap3/protocol/formatters/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/oauthlib/oauthlib/openid/connect/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/opentracing/opentracing/harness/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/protobuf/google/protobuf/compiler/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/protobuf/google/protobuf/internal/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/dde.pyi: -------------------------------------------------------------------------------- 1 | from pythonwin.dde import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/odbc.pyi: -------------------------------------------------------------------------------- 1 | from win32.odbc import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/timer.pyi: -------------------------------------------------------------------------------- 1 | from win32.timer import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32comext/authorization/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32comext/axscript/client/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32comext/axscript/server/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32comext/directsound/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32comext/taskscheduler/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/requests/requests/certs.pyi: -------------------------------------------------------------------------------- 1 | # no public data 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/queue.pyi: -------------------------------------------------------------------------------- 1 | from queue import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/tensorflow/tensorflow/core/protobuf/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/auth/management/commands/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/gis/db/backends/spatialite/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/sessions/management/commands/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/lsp/lsp_interaction/test_files/cycle_class/pyrefly.toml: -------------------------------------------------------------------------------- 1 | search_path = ["."] 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/skimage-stubs/_shared/_dependency_checks.pyi: -------------------------------------------------------------------------------- 1 | has_mpl = ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sklearn-stubs/ensemble/_hist_gradient_boosting/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sklearn-stubs/utils/_tags.pyi: -------------------------------------------------------------------------------- 1 | _DEFAULT_TAGS: dict = ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/curses/panel.pyi: -------------------------------------------------------------------------------- 1 | from _curses_panel import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/aliases.pyi: -------------------------------------------------------------------------------- 1 | aliases: dict[str, str] 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/emitters/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/models/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/plugins/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/sampling/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/streaming/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/utils/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/aiohttp/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/bottle/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/sqlalchemy/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/channels/channels/management/commands/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/django-import-export/management/commands/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/flake8-simplify/flake8_simplify/rules/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/grpcio-health-checking/grpc_health/v1/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/ldap3/ldap3/utils/uri.pyi: -------------------------------------------------------------------------------- 1 | def parse_uri(uri): ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/oauthlib/oauthlib/openid/connect/core/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pyinstaller/PyInstaller/lib/modulegraph/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/mmapfile.pyi: -------------------------------------------------------------------------------- 1 | from win32.mmapfile import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/perfmon.pyi: -------------------------------------------------------------------------------- 1 | from win32.perfmon import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32api.pyi: -------------------------------------------------------------------------------- 1 | from win32.win32api import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32gui.pyi: -------------------------------------------------------------------------------- 1 | from win32.win32gui import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32job.pyi: -------------------------------------------------------------------------------- 1 | from win32.win32job import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32lz.pyi: -------------------------------------------------------------------------------- 1 | from win32.win32lz import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32net.pyi: -------------------------------------------------------------------------------- 1 | from win32.win32net import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32pdh.pyi: -------------------------------------------------------------------------------- 1 | from win32.win32pdh import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32ras.pyi: -------------------------------------------------------------------------------- 1 | from win32.win32ras import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32ts.pyi: -------------------------------------------------------------------------------- 1 | from win32.win32ts import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/winnt.pyi: -------------------------------------------------------------------------------- 1 | from win32.lib.winnt import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/winxpgui.pyi: -------------------------------------------------------------------------------- 1 | from win32.winxpgui import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/reportlab/reportlab/graphics/barcode/fourstate.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/reportlab/reportlab/graphics/samples/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/_thread.pyi: -------------------------------------------------------------------------------- 1 | from _thread import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/cPickle.pyi: -------------------------------------------------------------------------------- 1 | from pickle import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/copyreg.pyi: -------------------------------------------------------------------------------- 1 | from copyreg import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/reprlib.pyi: -------------------------------------------------------------------------------- 1 | from reprlib import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/tkinter.pyi: -------------------------------------------------------------------------------- 1 | from tkinter import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/tensorflow/tensorflow/python/trackable/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/unidiff/unidiff/__version__.pyi: -------------------------------------------------------------------------------- 1 | __version__: str 2 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/contenttypes/management/commands/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/staticfiles/management/commands/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/assets/templates/info_graph_dot.pyi: -------------------------------------------------------------------------------- 1 | content: str 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/assets/templates/info_graph_html.pyi: -------------------------------------------------------------------------------- 1 | content: str 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sklearn-stubs/cluster/_k_means_common.pyi: -------------------------------------------------------------------------------- 1 | CHUNK_SIZE: int = 256 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/Flask-Cors/flask_cors/version.pyi: -------------------------------------------------------------------------------- 1 | __version__: str 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/exceptions/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/sampling/local/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/sqlalchemy/util/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/django-import-export/import_export/formats/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/grpcio-reflection/grpc_reflection/v1alpha/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pony/pony/orm/__init__.pyi: -------------------------------------------------------------------------------- 1 | from pony.orm.core import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/commctrl.pyi: -------------------------------------------------------------------------------- 1 | from win32.lib.commctrl import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/mmsystem.pyi: -------------------------------------------------------------------------------- 1 | from win32.lib.mmsystem import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/regutil.pyi: -------------------------------------------------------------------------------- 1 | from win32.lib.regutil import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/sspicon.pyi: -------------------------------------------------------------------------------- 1 | from win32.lib.sspicon import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win2kras.pyi: -------------------------------------------------------------------------------- 1 | from win32.lib.win2kras import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32con.pyi: -------------------------------------------------------------------------------- 1 | from win32.lib.win32con import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32cred.pyi: -------------------------------------------------------------------------------- 1 | from win32.win32cred import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32crypt.pyi: -------------------------------------------------------------------------------- 1 | from win32.win32crypt import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32event.pyi: -------------------------------------------------------------------------------- 1 | from win32.win32event import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32file.pyi: -------------------------------------------------------------------------------- 1 | from win32.win32file import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32help.pyi: -------------------------------------------------------------------------------- 1 | from win32.win32help import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32inet.pyi: -------------------------------------------------------------------------------- 1 | from win32.win32inet import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32pipe.pyi: -------------------------------------------------------------------------------- 1 | from win32.win32pipe import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32print.pyi: -------------------------------------------------------------------------------- 1 | from win32.win32print import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32trace.pyi: -------------------------------------------------------------------------------- 1 | from win32.win32trace import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32ui.pyi: -------------------------------------------------------------------------------- 1 | from pythonwin.win32ui import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32wnet.pyi: -------------------------------------------------------------------------------- 1 | from win32.win32wnet import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/winerror.pyi: -------------------------------------------------------------------------------- 1 | from win32.lib.winerror import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/winperf.pyi: -------------------------------------------------------------------------------- 1 | from win32.lib.winperf import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/setuptools/setuptools/version.pyi: -------------------------------------------------------------------------------- 1 | __version__: str 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/_dummy_thread.pyi: -------------------------------------------------------------------------------- 1 | from _thread import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/tensorflow/tensorflow/python/feature_column/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyrefly/lib/test/lsp/lsp_interaction/test_files/duplicate_export_test/pyrefly.toml: -------------------------------------------------------------------------------- 1 | search_path = ["./"] 2 | -------------------------------------------------------------------------------- /pyrefly/lib/test/lsp/lsp_interaction/test_files/prefixed_with_underscore/pyrefly.toml: -------------------------------------------------------------------------------- 1 | [tool.pyrefly] 2 | -------------------------------------------------------------------------------- /pyrefly/lib/test/lsp/lsp_interaction/test_files/tests_requiring_config/pyrefly.toml: -------------------------------------------------------------------------------- 1 | search_path = ["."] 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/assets/templates/search_table_html.pyi: -------------------------------------------------------------------------------- 1 | content: str 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/client/tools/android.pyi: -------------------------------------------------------------------------------- 1 | def to_android_abi(arch): ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/curses/has_key.pyi: -------------------------------------------------------------------------------- 1 | def has_key(ch: int | str) -> bool: ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/flask_sqlalchemy/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/dateparser/dateparser/custom_language_detection/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/django-import-export/import_export/templatetags/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/geopandas/geopandas/tools/hilbert_curve.pyi: -------------------------------------------------------------------------------- 1 | MAX_LEVEL: int 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/gevent/gevent/libev/__init__.pyi: -------------------------------------------------------------------------------- 1 | __all__: list[str] = [] 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/gevent/gevent/libuv/__init__.pyi: -------------------------------------------------------------------------------- 1 | __all__: list[str] = [] 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/nanoid/nanoid/resources.pyi: -------------------------------------------------------------------------------- 1 | alphabet: str 2 | size: int 3 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/openpyxl/openpyxl/compat/abc.pyi: -------------------------------------------------------------------------------- 1 | from abc import ABC as ABC 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/opentracing/opentracing/ext/tags.pyi: -------------------------------------------------------------------------------- 1 | from ..tags import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/pywintypes.pyi: -------------------------------------------------------------------------------- 1 | from win32.lib.pywintypes import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/util.pyi: -------------------------------------------------------------------------------- 1 | def IIDToInterfaceName(iid): ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32console.pyi: -------------------------------------------------------------------------------- 1 | from win32.win32console import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32evtlog.pyi: -------------------------------------------------------------------------------- 1 | from win32.win32evtlog import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32netcon.pyi: -------------------------------------------------------------------------------- 1 | from win32.lib.win32netcon import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32process.pyi: -------------------------------------------------------------------------------- 1 | from win32.win32process import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32profile.pyi: -------------------------------------------------------------------------------- 1 | from win32.win32profile import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32security.pyi: -------------------------------------------------------------------------------- 1 | from win32.win32security import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32service.pyi: -------------------------------------------------------------------------------- 1 | from win32.win32service import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32uiole.pyi: -------------------------------------------------------------------------------- 1 | from pythonwin.win32uiole import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/winioctlcon.pyi: -------------------------------------------------------------------------------- 1 | from win32.lib.winioctlcon import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/winxptheme.pyi: -------------------------------------------------------------------------------- 1 | from win32.lib.winxptheme import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/seaborn/seaborn/colors/crayons.pyi: -------------------------------------------------------------------------------- 1 | crayons: dict[str, str] 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/setuptools/setuptools/launch.pyi: -------------------------------------------------------------------------------- 1 | def run() -> None: ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/BaseHTTPServer.pyi: -------------------------------------------------------------------------------- 1 | from http.server import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/CGIHTTPServer.pyi: -------------------------------------------------------------------------------- 1 | from http.server import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/html_entities.pyi: -------------------------------------------------------------------------------- 1 | from html.entities import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/html_parser.pyi: -------------------------------------------------------------------------------- 1 | from html.parser import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/socketserver.pyi: -------------------------------------------------------------------------------- 1 | from socketserver import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/tkinter_ttk.pyi: -------------------------------------------------------------------------------- 1 | from tkinter.ttk import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/urllib_error.pyi: -------------------------------------------------------------------------------- 1 | from urllib.error import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/urllib_parse.pyi: -------------------------------------------------------------------------------- 1 | from urllib.parse import * 2 | -------------------------------------------------------------------------------- /lsp/images/pyrefly-symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/lsp/images/pyrefly-symbol.png -------------------------------------------------------------------------------- /pyrefly/lib/test/lsp/lsp_interaction/test_files/missing_source_with_config/pyrefly.toml: -------------------------------------------------------------------------------- 1 | search_path = ["."] 2 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | -------------------------------------------------------------------------------- /conformance/third_party/_enums_member_values.py: -------------------------------------------------------------------------------- 1 | """ 2 | Dummy implementation _enums_member_values stub. 3 | """ 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/client/rest/__init__.pyi: -------------------------------------------------------------------------------- 1 | def response_to_str(response): ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/server/conf/default_server_conf.pyi: -------------------------------------------------------------------------------- 1 | default_server_conf: str 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/server/service/mime.pyi: -------------------------------------------------------------------------------- 1 | def get_mime_type(filepath): ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/util/sha.pyi: -------------------------------------------------------------------------------- 1 | def sha1(value): ... 2 | def sha256(value): ... 3 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sympy-stubs/solvers/deutils.pyi: -------------------------------------------------------------------------------- 1 | def ode_order(expr, func) -> int: ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sympy-stubs/utilities/magic.pyi: -------------------------------------------------------------------------------- 1 | def pollute(names, objects) -> None: ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/asyncio/log.pyi: -------------------------------------------------------------------------------- 1 | import logging 2 | 3 | logger: logging.Logger 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/xml/etree/cElementTree.pyi: -------------------------------------------------------------------------------- 1 | from xml.etree.ElementTree import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/xml/parsers/__init__.pyi: -------------------------------------------------------------------------------- 1 | from xml.parsers import expat as expat 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/bleach/bleach/parse_shim.pyi: -------------------------------------------------------------------------------- 1 | from urllib import parse as parse 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/django-import-export/import_export/__init__.pyi: -------------------------------------------------------------------------------- 1 | __version__: str 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/docutils/docutils/utils/urischemes.pyi: -------------------------------------------------------------------------------- 1 | schemes: dict[str, str] 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/version.pyi: -------------------------------------------------------------------------------- 1 | __version__: str 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/ldap3/ldap3/operation/unbind.pyi: -------------------------------------------------------------------------------- 1 | def unbind_operation(): ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/passlib/passlib/crypto/scrypt/_salsa.pyi: -------------------------------------------------------------------------------- 1 | def salsa20(input): ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/ntsecuritycon.pyi: -------------------------------------------------------------------------------- 1 | from win32.lib.ntsecuritycon import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/servicemanager.pyi: -------------------------------------------------------------------------------- 1 | from win32.servicemanager import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32clipboard.pyi: -------------------------------------------------------------------------------- 1 | from win32.win32clipboard import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32cryptcon.pyi: -------------------------------------------------------------------------------- 1 | from win32.lib.win32cryptcon import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32inetcon.pyi: -------------------------------------------------------------------------------- 1 | from win32.lib.win32inetcon import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32pdhquery.pyi: -------------------------------------------------------------------------------- 1 | from win32.lib.win32pdhquery import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32timezone.pyi: -------------------------------------------------------------------------------- 1 | from win32.lib.win32timezone import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32verstamp.pyi: -------------------------------------------------------------------------------- 1 | from win32.lib.win32verstamp import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/qrbill/qrbill/__init__.pyi: -------------------------------------------------------------------------------- 1 | from .bill import QRBill as QRBill 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/seaborn/seaborn/colors/xkcd_rgb.pyi: -------------------------------------------------------------------------------- 1 | xkcd_rgb: dict[str, str] 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/SimpleHTTPServer.pyi: -------------------------------------------------------------------------------- 1 | from http.server import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/collections_abc.pyi: -------------------------------------------------------------------------------- 1 | from collections.abc import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/email_mime_base.pyi: -------------------------------------------------------------------------------- 1 | from email.mime.base import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/email_mime_text.pyi: -------------------------------------------------------------------------------- 1 | from email.mime.text import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/http_cookiejar.pyi: -------------------------------------------------------------------------------- 1 | from http.cookiejar import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/tkinter_dialog.pyi: -------------------------------------------------------------------------------- 1 | from tkinter.dialog import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/urllib_request.pyi: -------------------------------------------------------------------------------- 1 | from .urllib.request import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/urllib_response.pyi: -------------------------------------------------------------------------------- 1 | from .urllib.response import * 2 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/gis/geos/error.pyi: -------------------------------------------------------------------------------- 1 | class GEOSException(Exception): ... 2 | -------------------------------------------------------------------------------- /pyrefly/lib/test/lsp/lsp_interaction/test_files/config_with_workspace_smaller/pyrefly.toml: -------------------------------------------------------------------------------- 1 | search_path = ["."] 2 | -------------------------------------------------------------------------------- /website/static/videos/hover.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/videos/hover.mp4 -------------------------------------------------------------------------------- /website/static/videos/openvsx.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/videos/openvsx.mp4 -------------------------------------------------------------------------------- /website/static/videos/rename.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/videos/rename.mp4 -------------------------------------------------------------------------------- /conformance/third_party/_enums_members.py: -------------------------------------------------------------------------------- 1 | """ 2 | Dummy implementation for stub file for enums_members test. 3 | """ 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sklearn-stubs/__check_build/__init__.pyi: -------------------------------------------------------------------------------- 1 | from ._check_build import check_build 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sklearn-stubs/__check_build/_check_build.pyi: -------------------------------------------------------------------------------- 1 | def check_build() -> None: ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sklearn-stubs/utils/_fast_dict.pyi: -------------------------------------------------------------------------------- 1 | class IntFloatDict: 2 | cpp_map: dict 3 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sympy-stubs/printing/gtk.pyi: -------------------------------------------------------------------------------- 1 | def print_gtk(x, start_viewer=...) -> None: ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/__main__.pyi: -------------------------------------------------------------------------------- 1 | def __getattr__(name: str): ... # incomplete module 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/auth0-python/auth0/utils.pyi: -------------------------------------------------------------------------------- 1 | def is_async_available() -> bool: ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/cffi/cffi/lock.pyi: -------------------------------------------------------------------------------- 1 | from _thread import allocate_lock as allocate_lock 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/django-filter/django_filters/compat.pyi: -------------------------------------------------------------------------------- 1 | def is_crispy() -> bool: ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/gdb/gdb/dap/state.pyi: -------------------------------------------------------------------------------- 1 | def set_thread(thread_id: int) -> None: ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/gdb/gdb/prompt.pyi: -------------------------------------------------------------------------------- 1 | def substitute_prompt(prompt: str) -> str: ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/openpyxl/openpyxl/chart/reader.pyi: -------------------------------------------------------------------------------- 1 | def read_chart(chartspace): ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/opentracing/opentracing/scope_managers/constants.pyi: -------------------------------------------------------------------------------- 1 | ACTIVE_ATTR: str 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/passlib/passlib/crypto/scrypt/_gen_files.pyi: -------------------------------------------------------------------------------- 1 | def main() -> None: ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pyflakes/pyflakes/__main__.pyi: -------------------------------------------------------------------------------- 1 | from pyflakes.api import main as main 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/adsi/__init__.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.adsi import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/adsi/adsi.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.adsi.adsi import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/bits/__init__.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.bits import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/bits/bits.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.bits.bits import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/mapi/__init__.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.mapi import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/mapi/mapi.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.mapi.mapi import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/shell/__init__.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.shell import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32comext/axscript/asputil.pyi: -------------------------------------------------------------------------------- 1 | def iif(cond, t, f): ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32evtlogutil.pyi: -------------------------------------------------------------------------------- 1 | from win32.lib.win32evtlogutil import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32gui_struct.pyi: -------------------------------------------------------------------------------- 1 | from win32.lib.win32gui_struct import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32serviceutil.pyi: -------------------------------------------------------------------------------- 1 | from win32.lib.win32serviceutil import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32transaction.pyi: -------------------------------------------------------------------------------- 1 | from win32.win32transaction import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/qrcode/qrcode/exceptions.pyi: -------------------------------------------------------------------------------- 1 | class DataOverflowError(Exception): ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/setuptools/distutils/cmd.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils.cmd import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/tkinter_constants.pyi: -------------------------------------------------------------------------------- 1 | from tkinter.constants import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/tkinter_filedialog.pyi: -------------------------------------------------------------------------------- 1 | from tkinter.filedialog import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/urllib_robotparser.pyi: -------------------------------------------------------------------------------- 1 | from urllib.robotparser import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/unidiff/unidiff/errors.pyi: -------------------------------------------------------------------------------- 1 | class UnidiffParseError(Exception): ... 2 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/messages/utils.pyi: -------------------------------------------------------------------------------- 1 | def get_level_tags() -> dict[int, str]: ... 2 | -------------------------------------------------------------------------------- /website/static/videos/move-file.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/videos/move-file.mp4 -------------------------------------------------------------------------------- /website/static/videos/typeshed.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/videos/typeshed.mp4 -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/model/__init__.pyi: -------------------------------------------------------------------------------- 1 | from .conan_generator import Generator as Generator 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/pandas-stubs/io/formats/__init__.pyi: -------------------------------------------------------------------------------- 1 | from pandas.io.formats import style as style 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/skimage-stubs/draw/_polygon2mask.pyi: -------------------------------------------------------------------------------- 1 | def polygon2mask(image_shape, polygon): ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/vispy-stubs/util/eq.pyi: -------------------------------------------------------------------------------- 1 | from numpy import bool_, ndarray 2 | 3 | def eq(a, b): ... 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/botocore/patch.pyi: -------------------------------------------------------------------------------- 1 | def patch() -> None: ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/psycopg/patch.pyi: -------------------------------------------------------------------------------- 1 | def patch() -> None: ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/psycopg2/patch.pyi: -------------------------------------------------------------------------------- 1 | def patch() -> None: ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/docker/docker/api/__init__.pyi: -------------------------------------------------------------------------------- 1 | from .client import APIClient as APIClient 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/docutils/docutils/utils/math/unichar2tex.pyi: -------------------------------------------------------------------------------- 1 | uni2tex_table: dict[int, str] 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/flake8/flake8/formatting/_windows_color.pyi: -------------------------------------------------------------------------------- 1 | terminal_supports_color: bool 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/openpyxl/openpyxl/formatting/__init__.pyi: -------------------------------------------------------------------------------- 1 | from .rule import Rule as Rule 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pyserial/serial/__main__.pyi: -------------------------------------------------------------------------------- 1 | from serial.tools import miniterm as miniterm 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/adsi/adsicon.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.adsi.adsicon import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/axdebug/__init__.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.axdebug import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/axdebug/adb.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.axdebug.adb import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/axdebug/util.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.axdebug.util import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/axscript/__init__.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.axscript import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/ifilter/__init__.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.ifilter import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/internet/__init__.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.internet import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/mapi/exchange.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.mapi.exchange import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/mapi/mapitags.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.mapi.mapitags import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/mapi/mapiutil.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.mapi.mapiutil import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/propsys/__init__.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.propsys import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/propsys/pscon.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.propsys.pscon import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/shell/shell.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.shell.shell import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/setuptools/distutils/dist.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils.dist import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/setuptools/distutils/errors.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils.errors import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/setuptools/distutils/spawn.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils.spawn import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/setuptools/distutils/util.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils.util import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/email_mime_multipart.pyi: -------------------------------------------------------------------------------- 1 | from email.mime.multipart import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/tkinter_commondialog.pyi: -------------------------------------------------------------------------------- 1 | from tkinter.commondialog import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/tkinter_tkfiledialog.pyi: -------------------------------------------------------------------------------- 1 | from tkinter.filedialog import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/zxcvbn/zxcvbn/frequency_lists.pyi: -------------------------------------------------------------------------------- 1 | FREQUENCY_LISTS: dict[str, list[str]] 2 | -------------------------------------------------------------------------------- /pyrefly/lib/test/lsp/lsp_interaction/test_files/config_with_workspace_larger/module_dir/pyrefly.toml: -------------------------------------------------------------------------------- 1 | search_path = ["."] 2 | -------------------------------------------------------------------------------- /pyrefly/lib/test/lsp/lsp_interaction/test_files/disable_type_error_in_config/pyrefly.toml: -------------------------------------------------------------------------------- 1 | disable-type-errors-in-ide = true 2 | -------------------------------------------------------------------------------- /pyrefly_wasm/.cargo/config.toml: -------------------------------------------------------------------------------- 1 | [target.wasm32-unknown-unknown] 2 | rustflags = ['--cfg', 'getrandom_backend="wasm_js"'] 3 | -------------------------------------------------------------------------------- /website/static/videos/autocomplete.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/videos/autocomplete.mp4 -------------------------------------------------------------------------------- /website/static/videos/diagnostics.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/videos/diagnostics.mp4 -------------------------------------------------------------------------------- /website/static/videos/inlay-hints.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/videos/inlay-hints.mp4 -------------------------------------------------------------------------------- /conformance/third_party/pyrefly.toml: -------------------------------------------------------------------------------- 1 | # Empty configuration file to make sure pyrefly treats this directory as the project root. 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/pandas-stubs/_libs/tslibs/conversion.pyi: -------------------------------------------------------------------------------- 1 | class OutOfBoundsTimedelta(ValueError): ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/vispy-stubs/visuals/graphs/__init__.pyi: -------------------------------------------------------------------------------- 1 | from .graph import GraphVisual as GraphVisual 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/debug.pyi: -------------------------------------------------------------------------------- 1 | from typing import Final 2 | 3 | DEBUG: Final[str | None] 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/Authlib/authlib/oauth1/errors.pyi: -------------------------------------------------------------------------------- 1 | from authlib.oauth1.rfc5849.errors import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/aiobotocore/patch.pyi: -------------------------------------------------------------------------------- 1 | def patch() -> None: ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/docker/docker/credentials/utils.pyi: -------------------------------------------------------------------------------- 1 | def create_environment_dict(overrides): ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/geopandas/geopandas/tools/_show_versions.pyi: -------------------------------------------------------------------------------- 1 | def show_versions() -> None: ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/html5lib/html5lib/treeadapters/genshi.pyi: -------------------------------------------------------------------------------- 1 | def to_genshi(walker) -> None: ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/ldap3/ldap3/protocol/sasl/plain.pyi: -------------------------------------------------------------------------------- 1 | def sasl_plain(connection, controls): ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/lupa/lupa/version.pyi: -------------------------------------------------------------------------------- 1 | from typing import Final 2 | 3 | __version__: Final[str] 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/mysqlclient/MySQLdb/release.pyi: -------------------------------------------------------------------------------- 1 | version_info: tuple[int, int, int, str, int] 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/openpyxl/openpyxl/drawing/__init__.pyi: -------------------------------------------------------------------------------- 1 | from .drawing import Drawing as Drawing 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pony/pony/utils/__init__.pyi: -------------------------------------------------------------------------------- 1 | from .properties import * 2 | from .utils import * 3 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pyRFC3339/pyrfc3339/utils.pyi: -------------------------------------------------------------------------------- 1 | def format_timezone(utcoffset: int) -> str: ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pynput/pynput/__init__.pyi: -------------------------------------------------------------------------------- 1 | from . import keyboard as keyboard, mouse as mouse 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pynput/pynput/_info.pyi: -------------------------------------------------------------------------------- 1 | __author__: str 2 | __version__: tuple[int, int, int] 3 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/axcontrol/__init__.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.axcontrol import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/axdebug/axdebug.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.axdebug.axdebug import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/directsound/__init__.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.directsound import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/ifilter/ifilter.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.ifilter.ifilter import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/mapi/emsabtags.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.mapi.emsabtags import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/propsys/propsys.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.propsys.propsys import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/shell/shellcon.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.shell.shellcon import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/qrcode/qrcode/release.pyi: -------------------------------------------------------------------------------- 1 | def update_manpage(data: dict[str, str]) -> None: ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/requests/requests/status_codes.pyi: -------------------------------------------------------------------------------- 1 | from typing import Any 2 | 3 | codes: Any 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/seaborn/seaborn/_core/exceptions.pyi: -------------------------------------------------------------------------------- 1 | class PlotSpecError(RuntimeError): ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/setuptools/distutils/dep_util.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils.dep_util import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/setuptools/distutils/filelist.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils.filelist import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/email_mime_nonmultipart.pyi: -------------------------------------------------------------------------------- 1 | from email.mime.nonmultipart import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/tqdm/tqdm/_main.pyi: -------------------------------------------------------------------------------- 1 | from .cli import * 2 | from .cli import __all__ as __all__ 3 | -------------------------------------------------------------------------------- /website/blog/blog_imgs/ide-blog-hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/blog/blog_imgs/ide-blog-hero.png -------------------------------------------------------------------------------- /website/blog/blog_imgs/ide-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/blog/blog_imgs/ide-settings.png -------------------------------------------------------------------------------- /website/blog/blog_imgs/pydantic-blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/blog/blog_imgs/pydantic-blog.png -------------------------------------------------------------------------------- /website/blog/blog_imgs/release-news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/blog/blog_imgs/release-news.png -------------------------------------------------------------------------------- /website/static/fonts/Inter_18pt-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/fonts/Inter_18pt-Bold.ttf -------------------------------------------------------------------------------- /website/static/fonts/MaisonNeue-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/fonts/MaisonNeue-Bold.ttf -------------------------------------------------------------------------------- /website/static/fonts/MaisonNeue-Book.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/fonts/MaisonNeue-Book.ttf -------------------------------------------------------------------------------- /website/static/fonts/MaisonNeue-Demi.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/fonts/MaisonNeue-Demi.ttf -------------------------------------------------------------------------------- /website/static/fonts/MaisonNeue-Mono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/fonts/MaisonNeue-Mono.ttf -------------------------------------------------------------------------------- /website/static/videos/call-hierarchy.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/videos/call-hierarchy.mp4 -------------------------------------------------------------------------------- /website/static/videos/signature-help.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/videos/signature-help.mp4 -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/pandas-stubs/core/computation/api.pyi: -------------------------------------------------------------------------------- 1 | from pandas.core.computation.eval import eval as eval 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/pandas-stubs/io/sas/__init__.pyi: -------------------------------------------------------------------------------- 1 | from pandas.io.sas.sasreader import read_sas as read_sas 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/pandas-stubs/tseries/api.pyi: -------------------------------------------------------------------------------- 1 | from pandas.tseries.frequencies import infer_freq as infer_freq 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/pandas-stubs/util/_print_versions.pyi: -------------------------------------------------------------------------------- 1 | def show_versions(as_json: bool = False) -> None: ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/vispy-stubs/scene/widgets/anchor.pyi: -------------------------------------------------------------------------------- 1 | from ..node import Node 2 | 3 | class Anchor(Node): ... 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/_bootlocale.pyi: -------------------------------------------------------------------------------- 1 | def getpreferredencoding(do_setlocale: bool = True) -> str: ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/Authlib/authlib/oauth1/rfc5849/util.pyi: -------------------------------------------------------------------------------- 1 | def escape(s): ... 2 | def unescape(s): ... 3 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/Jetson.GPIO/Jetson/GPIO/__init__.pyi: -------------------------------------------------------------------------------- 1 | from .gpio import * 2 | 3 | VERSION: str = ... 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/ldap3/ldap3/protocol/sasl/external.pyi: -------------------------------------------------------------------------------- 1 | def sasl_external(connection, controls): ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/openpyxl/openpyxl/comments/__init__.pyi: -------------------------------------------------------------------------------- 1 | from .comments import Comment as Comment 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/openpyxl/openpyxl/formula/__init__.pyi: -------------------------------------------------------------------------------- 1 | from .tokenizer import Tokenizer as Tokenizer 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/openpyxl/openpyxl/workbook/__init__.pyi: -------------------------------------------------------------------------------- 1 | from .workbook import Workbook as Workbook 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/openpyxl/openpyxl/writer/theme.pyi: -------------------------------------------------------------------------------- 1 | theme_xml: str 2 | 3 | def write_theme(): ... 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pyasn1/pyasn1/__init__.pyi: -------------------------------------------------------------------------------- 1 | from typing import Final 2 | 3 | __version__: Final[str] 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/authorization/__init__.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.authorization import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/axdebug/contexts.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.axdebug.contexts import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/axdebug/debugger.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.axdebug.debugger import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/axdebug/documents.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.axdebug.documents import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/axdebug/gateways.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.axdebug.gateways import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/axdebug/stackframe.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.axdebug.stackframe import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/axscript/asputil.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.axscript.asputil import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/axscript/axscript.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.axscript.axscript import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/ifilter/ifiltercon.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.ifilter.ifiltercon import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/internet/inetcon.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.internet.inetcon import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/internet/internet.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.internet.internet import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/taskscheduler/__init__.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.taskscheduler import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/setuptools/distutils/_modified.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils._modified import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/setuptools/distutils/compat/__init__.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils.compat import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/setuptools/distutils/extension.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils.extension import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/setuptools/distutils/sysconfig.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils.sysconfig import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/tensorflow/tensorflow/initializers.pyi: -------------------------------------------------------------------------------- 1 | from tensorflow.keras.initializers import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/tqdm/tqdm/_tqdm_gui.pyi: -------------------------------------------------------------------------------- 1 | from .gui import * 2 | from .gui import __all__ as __all__ 3 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/conf/locale/__init__.pyi: -------------------------------------------------------------------------------- 1 | from typing import Any 2 | 3 | LANG_INFO: dict[str, Any] 4 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/views/__init__.pyi: -------------------------------------------------------------------------------- 1 | from .generic.base import View as View 2 | 3 | __all__ = ["View"] 4 | -------------------------------------------------------------------------------- /pyrefly/lib/test/lsp/lsp_interaction/test_files/custom_interpreter_config/src/pyrefly.toml: -------------------------------------------------------------------------------- 1 | python-interpreter-path = "../bin/python" 2 | -------------------------------------------------------------------------------- /website/blog/blog_imgs/pyrefly_intro.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/blog/blog_imgs/pyrefly_intro.webp -------------------------------------------------------------------------------- /website/blog/blog_imgs/why-typing-blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/blog/blog_imgs/why-typing-blog.png -------------------------------------------------------------------------------- /website/static/fonts/Inter_18pt-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/fonts/Inter_18pt-Italic.ttf -------------------------------------------------------------------------------- /website/static/fonts/Inter_18pt-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/fonts/Inter_18pt-Regular.ttf -------------------------------------------------------------------------------- /website/static/fonts/MaisonNeue-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/fonts/MaisonNeue-Bold.woff -------------------------------------------------------------------------------- /website/static/fonts/MaisonNeue-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/fonts/MaisonNeue-Bold.woff2 -------------------------------------------------------------------------------- /website/static/fonts/MaisonNeue-Book.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/fonts/MaisonNeue-Book.woff -------------------------------------------------------------------------------- /website/static/fonts/MaisonNeue-Book.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/fonts/MaisonNeue-Book.woff2 -------------------------------------------------------------------------------- /website/static/fonts/MaisonNeue-Demi.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/fonts/MaisonNeue-Demi.woff -------------------------------------------------------------------------------- /website/static/fonts/MaisonNeue-Demi.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/fonts/MaisonNeue-Demi.woff2 -------------------------------------------------------------------------------- /website/static/fonts/MaisonNeue-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/fonts/MaisonNeue-Light.ttf -------------------------------------------------------------------------------- /website/static/fonts/MaisonNeue-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/fonts/MaisonNeue-Light.woff -------------------------------------------------------------------------------- /website/static/fonts/MaisonNeue-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/fonts/MaisonNeue-Light.woff2 -------------------------------------------------------------------------------- /website/static/fonts/MaisonNeue-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/fonts/MaisonNeue-Medium.ttf -------------------------------------------------------------------------------- /website/static/fonts/MaisonNeue-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/fonts/MaisonNeue-Medium.woff -------------------------------------------------------------------------------- /website/static/fonts/MaisonNeue-Mono.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/fonts/MaisonNeue-Mono.woff -------------------------------------------------------------------------------- /website/static/fonts/MaisonNeue-Mono.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/fonts/MaisonNeue-Mono.woff2 -------------------------------------------------------------------------------- /website/static/videos/IDE-file-rename.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/videos/IDE-file-rename.mp4 -------------------------------------------------------------------------------- /website/static/videos/document-symbols.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/videos/document-symbols.mp4 -------------------------------------------------------------------------------- /website/static/videos/go-to-declaration.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/videos/go-to-declaration.mp4 -------------------------------------------------------------------------------- /website/static/videos/go-to-definition.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/videos/go-to-definition.mp4 -------------------------------------------------------------------------------- /website/static/videos/jupyter-notebook.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/videos/jupyter-notebook.mp4 -------------------------------------------------------------------------------- /website/static/videos/workspace-symbols.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/videos/workspace-symbols.mp4 -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sklearn-stubs/utils/_show_versions.pyi: -------------------------------------------------------------------------------- 1 | # License: BSD 3 clause 2 | 3 | def show_versions(): ... 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/ctypes/macholib/__init__.pyi: -------------------------------------------------------------------------------- 1 | from typing import Final 2 | 3 | __version__: Final[str] 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/pydoc_data/topics.pyi: -------------------------------------------------------------------------------- 1 | from typing import Final 2 | 3 | topics: Final[dict[str, str]] 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/Authlib/authlib/oidc/core/util.pyi: -------------------------------------------------------------------------------- 1 | def create_half_hash(s: str, alg: str) -> str: ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/Pygments/pygments/modeline.pyi: -------------------------------------------------------------------------------- 1 | def get_filetype_from_buffer(buf, max_lines: int = 5): ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/assertpy/assertpy/helpers.pyi: -------------------------------------------------------------------------------- 1 | __tracebackhide__: bool 2 | 3 | class HelpersMixin: ... 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/braintree/braintree/exceptions/braintree_error.pyi: -------------------------------------------------------------------------------- 1 | class BraintreeError(Exception): ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/braintree/braintree/version.pyi: -------------------------------------------------------------------------------- 1 | from typing import Final 2 | 3 | Version: Final[str] 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/gevent/gevent/ares.pyi: -------------------------------------------------------------------------------- 1 | from gevent.resolver.cares import * 2 | 3 | __all__ = ["channel"] 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/gevent/gevent/time.pyi: -------------------------------------------------------------------------------- 1 | from gevent.hub import sleep as sleep 2 | 3 | __all__ = ["sleep"] 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/nanoid/nanoid/algorithm.pyi: -------------------------------------------------------------------------------- 1 | def algorithm_generate(random_bytes: int) -> bytearray: ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/openpyxl/openpyxl/compat/product.pyi: -------------------------------------------------------------------------------- 1 | def product(sequence): ... 2 | 3 | prod = product 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/passlib/passlib/__init__.pyi: -------------------------------------------------------------------------------- 1 | from typing import Final 2 | 3 | __version__: Final[str] 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pony/pony/flask/example/config.pyi: -------------------------------------------------------------------------------- 1 | config: dict[str, bool | str | dict[str, str | bool]] 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pyflakes/pyflakes/__init__.pyi: -------------------------------------------------------------------------------- 1 | from typing import Final 2 | 3 | __version__: Final[str] 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pyluach/pyluach/__init__.pyi: -------------------------------------------------------------------------------- 1 | from typing import Final 2 | 3 | __version__: Final[str] 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/axcontrol/axcontrol.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.axcontrol.axcontrol import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/axdebug/expressions.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.axdebug.expressions import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/axscript/client/__init__.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.axscript.client import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/axscript/server/__init__.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.axscript.server import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/retry/retry/__init__.pyi: -------------------------------------------------------------------------------- 1 | from .api import retry as retry 2 | 3 | __all__ = ["retry"] 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/setuptools/distutils/_msvccompiler.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils._msvccompiler import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/setuptools/distutils/archive_util.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils.archive_util import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/setuptools/distutils/command/bdist.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils.command.bdist import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/setuptools/distutils/command/build.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils.command.build import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/setuptools/distutils/command/sdist.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils.command.sdist import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/setuptools/distutils/unixccompiler.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils.unixccompiler import * 2 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/auth/urls.pyi: -------------------------------------------------------------------------------- 1 | from django.urls import _AnyURL 2 | 3 | urlpatterns: list[_AnyURL] 4 | -------------------------------------------------------------------------------- /pyrefly/lib/test/lsp/lsp_interaction/test_files/diagnostics_file_not_in_includes/pyrefly.toml: -------------------------------------------------------------------------------- 1 | project-includes = ["type_errors_include.py"] 2 | -------------------------------------------------------------------------------- /website/static/fonts/Inter_18pt-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/fonts/Inter_18pt-SemiBold.ttf -------------------------------------------------------------------------------- /website/static/fonts/MaisonNeue-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/fonts/MaisonNeue-Medium.woff2 -------------------------------------------------------------------------------- /website/static/img/Pyrefly-Preview-Symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/img/Pyrefly-Preview-Symbol.png -------------------------------------------------------------------------------- /website/static/videos/document-highlights.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/videos/document-highlights.mp4 -------------------------------------------------------------------------------- /website/static/videos/find-all-references.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/videos/find-all-references.mp4 -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/client/build/__init__.pyi: -------------------------------------------------------------------------------- 1 | def defs_to_string(defs): ... 2 | def join_arguments(args): ... 3 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/client/cmd/frogarian.pyi: -------------------------------------------------------------------------------- 1 | frogarian: str 2 | 3 | def cmd_frogarian(output) -> None: ... 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/conans-stubs/conan.pyi: -------------------------------------------------------------------------------- 1 | from conans.client.command import main as main 2 | 3 | def run() -> None: ... 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/pandas-stubs/util/_decorators.pyi: -------------------------------------------------------------------------------- 1 | from pandas._libs.properties import cache_readonly as cache_readonly 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/vispy-stubs/README.md: -------------------------------------------------------------------------------- 1 | These stubs were created with https://github.com/gramster/docs2stubs. 2 | 3 | 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/bisect.pyi: -------------------------------------------------------------------------------- 1 | from _bisect import * 2 | 3 | bisect = bisect_right 4 | insort = insort_right 5 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/version.pyi: -------------------------------------------------------------------------------- 1 | from typing import Final 2 | 3 | VERSION: Final[str] 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/geopandas/geopandas/io/__init__.pyi: -------------------------------------------------------------------------------- 1 | from . import arrow as arrow, file as file, sql as sql 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/html5lib/html5lib/_trie/__init__.pyi: -------------------------------------------------------------------------------- 1 | from .py import Trie as Trie 2 | 3 | __all__ = ["Trie"] 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/hvac/hvac/__init__.pyi: -------------------------------------------------------------------------------- 1 | from hvac.v1 import Client as Client 2 | 3 | __all__ = ("Client",) 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/ldap3/ldap3/protocol/schemas/ad2012R2.pyi: -------------------------------------------------------------------------------- 1 | ad_2012_r2_schema: str 2 | ad_2012_r2_dsa_info: str 3 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/ldap3/ldap3/protocol/schemas/ds389.pyi: -------------------------------------------------------------------------------- 1 | ds389_1_3_3_schema: str 2 | ds389_1_3_3_dsa_info: str 3 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/ldap3/ldap3/protocol/schemas/edir888.pyi: -------------------------------------------------------------------------------- 1 | edir_8_8_8_schema: str 2 | edir_8_8_8_dsa_info: str 3 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/ldap3/ldap3/protocol/schemas/edir914.pyi: -------------------------------------------------------------------------------- 1 | edir_9_1_4_schema: str 2 | edir_9_1_4_dsa_info: str 3 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/ldap3/ldap3/protocol/schemas/slapd24.pyi: -------------------------------------------------------------------------------- 1 | slapd_2_4_schema: str 2 | slapd_2_4_dsa_info: str 3 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/openpyxl/openpyxl/chartsheet/__init__.pyi: -------------------------------------------------------------------------------- 1 | from .chartsheet import Chartsheet as Chartsheet 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/passlib/passlib/ext/django/models.pyi: -------------------------------------------------------------------------------- 1 | from typing import Any 2 | 3 | password_context: Any 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pyserial/serial/urlhandler/protocol_rfc2217.pyi: -------------------------------------------------------------------------------- 1 | from serial.rfc2217 import Serial as Serial 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/axdebug/codecontainer.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.axdebug.codecontainer import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/axscript/client/debug.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.axscript.client.debug import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/axscript/client/error.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.axscript.client.error import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/axscript/server/axsite.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.axscript.server.axsite import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/directsound/directsound.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.directsound.directsound import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/setuptools/distutils/__init__.pyi: -------------------------------------------------------------------------------- 1 | from typing import Final 2 | 3 | __version__: Final[str] 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/setuptools/distutils/command/build_py.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils.command.build_py import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/setuptools/distutils/command/install.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils.command.install import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/setuptools/distutils/compilers/C/base.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils.compilers.C.base import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/setuptools/distutils/compilers/C/msvc.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils.compilers.C.msvc import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/setuptools/distutils/compilers/C/unix.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils.compilers.C.unix import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/tensorflow/tensorflow/python/__init__.pyi: -------------------------------------------------------------------------------- 1 | def __getattr__(name: str): ... # incomplete module 2 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/admindocs/urls.pyi: -------------------------------------------------------------------------------- 1 | from django.urls import _AnyURL 2 | 3 | urlpatterns: list[_AnyURL] 4 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/flatpages/urls.pyi: -------------------------------------------------------------------------------- 1 | from django.urls import _AnyURL 2 | 3 | urlpatterns: list[_AnyURL] 4 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/gis/apps.pyi: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | class GISConfig(AppConfig): ... 4 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/db/backends/signals.pyi: -------------------------------------------------------------------------------- 1 | from django.dispatch import Signal 2 | 3 | connection_created: Signal 4 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/utils/hashable.pyi: -------------------------------------------------------------------------------- 1 | from typing import Any 2 | 3 | def make_hashable(value: Any) -> Any: ... 4 | -------------------------------------------------------------------------------- /pyrefly/lib/test/lsp/lsp_interaction/test_files/marker_file_no_config/pyproject.toml: -------------------------------------------------------------------------------- 1 | [project] 2 | name = "test-project" 3 | version = "0.1.0" 4 | -------------------------------------------------------------------------------- /website/static/fonts/Inter_18pt-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/fonts/Inter_18pt-BoldItalic.ttf -------------------------------------------------------------------------------- /website/static/fonts/MaisonNeue-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/fonts/MaisonNeue-BoldItalic.ttf -------------------------------------------------------------------------------- /website/static/fonts/MaisonNeue-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/fonts/MaisonNeue-BoldItalic.woff -------------------------------------------------------------------------------- /website/static/fonts/MaisonNeue-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/fonts/MaisonNeue-BoldItalic.woff2 -------------------------------------------------------------------------------- /website/static/fonts/MaisonNeue-BookItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/fonts/MaisonNeue-BookItalic.ttf -------------------------------------------------------------------------------- /website/static/fonts/MaisonNeue-BookItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/fonts/MaisonNeue-BookItalic.woff -------------------------------------------------------------------------------- /website/static/fonts/MaisonNeue-BookItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/fonts/MaisonNeue-BookItalic.woff2 -------------------------------------------------------------------------------- /website/static/fonts/MaisonNeue-DemiItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/fonts/MaisonNeue-DemiItalic.ttf -------------------------------------------------------------------------------- /website/static/fonts/MaisonNeue-DemiItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/fonts/MaisonNeue-DemiItalic.woff -------------------------------------------------------------------------------- /website/static/fonts/MaisonNeue-DemiItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/fonts/MaisonNeue-DemiItalic.woff2 -------------------------------------------------------------------------------- /website/static/fonts/MaisonNeue-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/fonts/MaisonNeue-LightItalic.ttf -------------------------------------------------------------------------------- /website/static/fonts/MaisonNeue-LightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/fonts/MaisonNeue-LightItalic.woff -------------------------------------------------------------------------------- /website/static/fonts/MaisonNeue-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/fonts/MaisonNeue-MediumItalic.ttf -------------------------------------------------------------------------------- /website/static/fonts/MaisonNeue-MonoItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/fonts/MaisonNeue-MonoItalic.ttf -------------------------------------------------------------------------------- /website/static/fonts/MaisonNeue-MonoItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/fonts/MaisonNeue-MonoItalic.woff -------------------------------------------------------------------------------- /website/static/fonts/MaisonNeue-MonoItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/fonts/MaisonNeue-MonoItalic.woff2 -------------------------------------------------------------------------------- /website/static/videos/cmd-click-inlay-hint.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/videos/cmd-click-inlay-hint.mp4 -------------------------------------------------------------------------------- /website/static/videos/go-to-implementation.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/videos/go-to-implementation.mp4 -------------------------------------------------------------------------------- /website/static/videos/go-to-type-definition.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/videos/go-to-type-definition.mp4 -------------------------------------------------------------------------------- /website/static/videos/pyrefly-ide-comparison.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/videos/pyrefly-ide-comparison.mov -------------------------------------------------------------------------------- /website/static/videos/pyright-ide-comparison.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/videos/pyright-ide-comparison.mov -------------------------------------------------------------------------------- /website/static/videos/semantic-highlighting.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/videos/semantic-highlighting.mp4 -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/pandas-stubs/_libs/tslibs/base.pyi: -------------------------------------------------------------------------------- 1 | from datetime import datetime 2 | 3 | class ABCTimestamp(datetime): ... 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/skimage-stubs/README.md: -------------------------------------------------------------------------------- 1 | These stubs were created with https://github.com/gramster/docs2stubs. 2 | 3 | 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sympy-stubs/testing/__init__.pyi: -------------------------------------------------------------------------------- 1 | from sympy.testing.runtests import doctest 2 | 3 | __all__ = ["doctest"] 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/vispy-stubs/util/osmesa_gl.pyi: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | from . import logger 4 | 5 | def fix_osmesa_gl_lib(): ... 6 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/importlib/metadata/diagnose.pyi: -------------------------------------------------------------------------------- 1 | def inspect(path: str) -> None: ... 2 | def run() -> None: ... 3 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/Authlib/authlib/jose/rfc7518/util.pyi: -------------------------------------------------------------------------------- 1 | def encode_int(num, bits): ... 2 | def decode_int(b): ... 3 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/aiohttp/middleware.pyi: -------------------------------------------------------------------------------- 1 | async def middleware(request, handler): ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/gdb/gdb/dap/pause.pyi: -------------------------------------------------------------------------------- 1 | from _typeshed import Unused 2 | 3 | def pause(**args: Unused) -> None: ... 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/gevent/gevent/resolver_ares.pyi: -------------------------------------------------------------------------------- 1 | from gevent.resolver.ares import * 2 | 3 | __all__ = ["Resolver"] 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/openpyxl/openpyxl/utils/protection.pyi: -------------------------------------------------------------------------------- 1 | def hash_password(plaintext_password: str = "") -> str: ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/passlib/passlib/utils/md4.pyi: -------------------------------------------------------------------------------- 1 | from typing import Any 2 | 3 | md4: Any 4 | 5 | __all__ = ["md4"] 6 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/protobuf/google/protobuf/__init__.pyi: -------------------------------------------------------------------------------- 1 | from typing import Final 2 | 3 | __version__: Final[str] 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/axscript/client/framework.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.axscript.client.framework import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/qrcode/qrcode/LUT.pyi: -------------------------------------------------------------------------------- 1 | from typing import Final 2 | 3 | rsPoly_LUT: Final[dict[int, list[int]]] 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/reportlab/reportlab/graphics/__init__.pyi: -------------------------------------------------------------------------------- 1 | from typing import Final 2 | 3 | __version__: Final[str] 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/reportlab/reportlab/pdfbase/__init__.pyi: -------------------------------------------------------------------------------- 1 | from typing import Final 2 | 3 | __version__: Final[str] 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/reportlab/reportlab/pdfgen/__init__.pyi: -------------------------------------------------------------------------------- 1 | from typing import Final 2 | 3 | __version__: Final[str] 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/setuptools/distutils/command/bdist_rpm.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils.command.bdist_rpm import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/setuptools/distutils/command/build_clib.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils.command.build_clib import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/setuptools/distutils/command/build_ext.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils.command.build_ext import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/setuptools/distutils/compilers/C/errors.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils.compilers.C.errors import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/tensorflow/tensorflow/types/__init__.pyi: -------------------------------------------------------------------------------- 1 | from tensorflow.types import experimental as experimental 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/tqdm/tqdm/_tqdm_notebook.pyi: -------------------------------------------------------------------------------- 1 | from .notebook import * 2 | from .notebook import __all__ as __all__ 3 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/auth/apps.pyi: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | class AuthConfig(AppConfig): ... 4 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/contrib/sites/apps.pyi: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | class SitesConfig(AppConfig): ... 4 | -------------------------------------------------------------------------------- /pyrefly/lib/test/django/third-party/django-stubs/core/files/__init__.pyi: -------------------------------------------------------------------------------- 1 | from django.core.files.base import File as File 2 | 3 | __all__ = ["File"] 4 | -------------------------------------------------------------------------------- /pyrefly/lib/test/lsp/lsp_interaction/test_files/untyped_import_ignored/pyrefly.toml: -------------------------------------------------------------------------------- 1 | search-path = ["."] 2 | site-package-path = ["site_packages"] 3 | -------------------------------------------------------------------------------- /website/static/fonts/Inter_18pt-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/fonts/Inter_18pt-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /website/static/fonts/MaisonNeue-LightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/fonts/MaisonNeue-LightItalic.woff2 -------------------------------------------------------------------------------- /website/static/fonts/MaisonNeue-MediumItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/fonts/MaisonNeue-MediumItalic.woff -------------------------------------------------------------------------------- /website/static/fonts/MaisonNeue-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/fonts/MaisonNeue-MediumItalic.woff2 -------------------------------------------------------------------------------- /website/static/videos/double-click-inlay-hint.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/pyrefly/HEAD/website/static/videos/double-click-inlay-hint.mp4 -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/matplotlib-stubs/axes/__init__.pyi: -------------------------------------------------------------------------------- 1 | from ._axes import * # noqa: F403 2 | from ._subplots import * # noqa: F403 3 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/skimage-stubs/morphology/greyreconstruct.pyi: -------------------------------------------------------------------------------- 1 | import warnings 2 | 3 | from .grayreconstruct import reconstruction 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sklearn-stubs/neighbors/_kd_tree.pyi: -------------------------------------------------------------------------------- 1 | from ._binary_tree import BinaryTree 2 | 3 | class KDTree(BinaryTree): ... 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sklearn-stubs/utils/stats.pyi: -------------------------------------------------------------------------------- 1 | import numpy as np 2 | 3 | from .extmath import stable_cumsum as stable_cumsum 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sympy-stubs/discrete/recurrences.pyi: -------------------------------------------------------------------------------- 1 | def linrec(coeffs, init, n) -> int: ... 2 | def linrec_coeffs(c, n): ... 3 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sympy-stubs/polys/fglmtools.pyi: -------------------------------------------------------------------------------- 1 | from typing import Any 2 | 3 | def matrix_fglm(F, ring, O_to) -> list[Any]: ... 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/collections/abc.pyi: -------------------------------------------------------------------------------- 1 | from _collections_abc import * 2 | from _collections_abc import __all__ as __all__ 3 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/Authlib/authlib/jose/jwk.pyi: -------------------------------------------------------------------------------- 1 | def loads(obj, kid=None): ... 2 | def dumps(key, kty=None, **params): ... 3 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/Markdown/markdown/__meta__.pyi: -------------------------------------------------------------------------------- 1 | __version_info__: tuple[int, int, int, str, int] 2 | __version__: str 3 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/pg8000/patch.pyi: -------------------------------------------------------------------------------- 1 | def patch() -> None: ... 2 | def unpatch() -> None: ... 3 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/boltons/boltons/easterutils.pyi: -------------------------------------------------------------------------------- 1 | from typing import NoReturn 2 | 3 | def gobs_program() -> NoReturn: ... 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc8628/clients/__init__.pyi: -------------------------------------------------------------------------------- 1 | from .device import DeviceClient as DeviceClient 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/openpyxl/openpyxl/workbook/external_link/__init__.pyi: -------------------------------------------------------------------------------- 1 | from .external import ExternalLink as ExternalLink 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/authorization/authorization.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.authorization.authorization import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pywin32/win32com/taskscheduler/taskscheduler.pyi: -------------------------------------------------------------------------------- 1 | from win32comext.taskscheduler.taskscheduler import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/setuptools/distutils/command/install_data.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils.command.install_data import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/setuptools/distutils/command/install_lib.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils.command.install_lib import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/setuptools/setuptools/_distutils/__init__.pyi: -------------------------------------------------------------------------------- 1 | from typing import Final 2 | 3 | __version__: Final[str] 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/six/six/moves/urllib/robotparser.pyi: -------------------------------------------------------------------------------- 1 | from urllib.robotparser import RobotFileParser as RobotFileParser 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/tensorflow/tensorflow/python/keras/__init__.pyi: -------------------------------------------------------------------------------- 1 | def __getattr__(name: str): ... # incomplete module 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/webencodings/webencodings/labels.pyi: -------------------------------------------------------------------------------- 1 | from typing import Final 2 | 3 | LABELS: Final[dict[str, str]] 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/xlrd/xlrd/info.pyi: -------------------------------------------------------------------------------- 1 | from typing import Final 2 | 3 | __version__: Final[str] 4 | __VERSION__: Final[str] 5 | -------------------------------------------------------------------------------- /pyrefly/lib/test/lsp/lsp_interaction/test_files/rename_third_party/pyrefly.toml: -------------------------------------------------------------------------------- 1 | 2 | site_package_path = ["venv_third_party/lib/python3.12/site-packages"] 3 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/matplotlib-stubs/docstring.pyi: -------------------------------------------------------------------------------- 1 | from typing import Any 2 | 3 | def __getattr__(name: str) -> Any: ... # incomplete 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/matplotlib-stubs/textmanager.pyi: -------------------------------------------------------------------------------- 1 | from typing import Any 2 | 3 | def __getattr__(name: str) -> Any: ... # incomplete 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/matplotlib-stubs/tight_layout.pyi: -------------------------------------------------------------------------------- 1 | from typing import Any 2 | 3 | def __getattr__(name: str) -> Any: ... # incomplete 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/matplotlib-stubs/tri/__init__.pyi: -------------------------------------------------------------------------------- 1 | from typing import Any 2 | 3 | def __getattr__(name: str) -> Any: ... # incomplete 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/matplotlib-stubs/type1font.pyi: -------------------------------------------------------------------------------- 1 | from typing import Any 2 | 3 | def __getattr__(name: str) -> Any: ... # incomplete 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/skimage-stubs/measure/pnpoly.pyi: -------------------------------------------------------------------------------- 1 | def grid_points_in_poly(shape, verts): ... 2 | def points_in_poly(points, verts): ... 3 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sklearn-stubs/_build_utils/openmp_helpers.pyi: -------------------------------------------------------------------------------- 1 | def get_openmp_flag(compiler): ... 2 | def check_openmp_support(): ... 3 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sklearn-stubs/neighbors/_ball_tree.pyi: -------------------------------------------------------------------------------- 1 | from ._binary_tree import BinaryTree 2 | 3 | class BallTree(BinaryTree): ... 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sympy-stubs/algebras/__init__.pyi: -------------------------------------------------------------------------------- 1 | from sympy.algebras.quaternion import Quaternion 2 | 3 | __all__ = ["Quaternion"] 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sympy-stubs/parsing/__init__.pyi: -------------------------------------------------------------------------------- 1 | from sympy.parsing.sympy_parser import parse_expr 2 | 3 | __all__ = ["parse_expr"] 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/Authlib/authlib/oidc/discovery/well_known.pyi: -------------------------------------------------------------------------------- 1 | def get_well_known_url(issuer, external: bool = False): ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/Pygments/pygments/formatters/_mapping.pyi: -------------------------------------------------------------------------------- 1 | from _typeshed import Incomplete 2 | 3 | FORMATTERS: Incomplete 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/hvac/hvac/constants/azure.pyi: -------------------------------------------------------------------------------- 1 | from collections.abc import Iterable 2 | 3 | VALID_ENVIRONMENTS: Iterable[str] 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/ldap3/ldap3/extend/microsoft/unlockAccount.pyi: -------------------------------------------------------------------------------- 1 | def ad_unlock_account(connection, user_dn, controls=None): ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/reportlab/reportlab/graphics/charts/__init__.pyi: -------------------------------------------------------------------------------- 1 | from typing import Final 2 | 3 | __version__: Final[str] 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/reportlab/reportlab/graphics/widgets/__init__.pyi: -------------------------------------------------------------------------------- 1 | from typing import Final 2 | 3 | __version__: Final[str] 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/setuptools/distutils/command/install_scripts.pyi: -------------------------------------------------------------------------------- 1 | from setuptools._distutils.command.install_scripts import * 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/setuptools/setuptools/logging.pyi: -------------------------------------------------------------------------------- 1 | def configure() -> None: ... 2 | def set_threshold(level: int) -> int: ... 3 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/tqdm/tqdm/auto.pyi: -------------------------------------------------------------------------------- 1 | from .asyncio import tqdm as tqdm, trange as trange 2 | 3 | __all__ = ["tqdm", "trange"] 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/workalendar/workalendar/usa/guam.pyi: -------------------------------------------------------------------------------- 1 | from .core import UnitedStates 2 | 3 | class Guam(UnitedStates): ... 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/workalendar/workalendar/usa/idaho.pyi: -------------------------------------------------------------------------------- 1 | from .core import UnitedStates 2 | 3 | class Idaho(UnitedStates): ... 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/workalendar/workalendar/usa/iowa.pyi: -------------------------------------------------------------------------------- 1 | from .core import UnitedStates 2 | 3 | class Iowa(UnitedStates): ... 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/workalendar/workalendar/usa/maine.pyi: -------------------------------------------------------------------------------- 1 | from .core import UnitedStates 2 | 3 | class Maine(UnitedStates): ... 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/workalendar/workalendar/usa/ohio.pyi: -------------------------------------------------------------------------------- 1 | from .core import UnitedStates 2 | 3 | class Ohio(UnitedStates): ... 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/workalendar/workalendar/usa/utah.pyi: -------------------------------------------------------------------------------- 1 | from .core import UnitedStates 2 | 3 | class Utah(UnitedStates): ... 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/yt-dlp/yt_dlp/downloader/mhtml.pyi: -------------------------------------------------------------------------------- 1 | from .fragment import FragmentFD 2 | 3 | class MhtmlFD(FragmentFD): ... 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/matplotlib-stubs/blocking_input.pyi: -------------------------------------------------------------------------------- 1 | from typing import Any 2 | 3 | def __getattr__(name: str) -> Any: ... # incomplete 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/matplotlib-stubs/testing/__init__.pyi: -------------------------------------------------------------------------------- 1 | from typing import Any 2 | 3 | def __getattr__(name: str) -> Any: ... # incomplete 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/stubs/sympy-stubs/plotting/pygletplot/plot_object.pyi: -------------------------------------------------------------------------------- 1 | class PlotObject: 2 | visible = ... 3 | def draw(self) -> None: ... 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/bcppcompiler.pyi: -------------------------------------------------------------------------------- 1 | from distutils.ccompiler import CCompiler 2 | 3 | class BCPPCompiler(CCompiler): ... 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/msvccompiler.pyi: -------------------------------------------------------------------------------- 1 | from distutils.ccompiler import CCompiler 2 | 3 | class MSVCCompiler(CCompiler): ... 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stdlib/sqlite3/dump.pyi: -------------------------------------------------------------------------------- 1 | # This file is intentionally empty. The runtime module contains only 2 | # private functions. 3 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/__init__.pyi: -------------------------------------------------------------------------------- 1 | from .sdk_config import SDKConfig 2 | 3 | global_sdk_config: SDKConfig 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/botocore/__init__.pyi: -------------------------------------------------------------------------------- 1 | from .patch import patch as patch 2 | 3 | __all__ = ["patch"] 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/httpx/__init__.pyi: -------------------------------------------------------------------------------- 1 | from .patch import patch as patch 2 | 3 | __all__ = ["patch"] 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/mysql/__init__.pyi: -------------------------------------------------------------------------------- 1 | from .patch import patch as patch 2 | 3 | __all__ = ["patch"] 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/psycopg/__init__.pyi: -------------------------------------------------------------------------------- 1 | from .patch import patch as patch 2 | 3 | __all__ = ["patch"] 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/psycopg2/__init__.pyi: -------------------------------------------------------------------------------- 1 | from .patch import patch as patch 2 | 3 | __all__ = ["patch"] 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/pymongo/__init__.pyi: -------------------------------------------------------------------------------- 1 | from .patch import patch as patch 2 | 3 | __all__ = ["patch"] 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/pynamodb/__init__.pyi: -------------------------------------------------------------------------------- 1 | from .patch import patch as patch 2 | 3 | __all__ = ["patch"] 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/requests/__init__.pyi: -------------------------------------------------------------------------------- 1 | from .patch import patch as patch 2 | 3 | __all__ = ["patch"] 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/sqlalchemy_core/patch.pyi: -------------------------------------------------------------------------------- 1 | def patch() -> None: ... 2 | def unpatch() -> None: ... 3 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/ext/sqlite3/__init__.pyi: -------------------------------------------------------------------------------- 1 | from .patch import patch as patch 2 | 3 | __all__ = ["patch"] 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/braintree/braintree/blik_alias.pyi: -------------------------------------------------------------------------------- 1 | from braintree.resource import Resource 2 | 3 | class BlikAlias(Resource): ... 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/ldap3/ldap3/operation/abandon.pyi: -------------------------------------------------------------------------------- 1 | def abandon_operation(msg_id): ... 2 | def abandon_request_to_dict(request): ... 3 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/openpyxl/openpyxl/utils/escape.pyi: -------------------------------------------------------------------------------- 1 | def escape(value: str) -> str: ... 2 | def unescape(value: str) -> str: ... 3 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pyasn1/pyasn1/compat/integer.pyi: -------------------------------------------------------------------------------- 1 | def to_bytes(value: int, signed: bool = False, length: int = 0) -> bytes: ... 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/pynput/pynput/mouse/_dummy.pyi: -------------------------------------------------------------------------------- 1 | from ._base import Button as Button, Controller as Controller, Listener as Listener 2 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/setuptools/setuptools/windows_support.pyi: -------------------------------------------------------------------------------- 1 | def windows_only(func): ... 2 | def hide_file(path: str) -> None: ... 3 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/tqdm/tqdm/_tqdm_pandas.pyi: -------------------------------------------------------------------------------- 1 | __all__ = ["tqdm_pandas"] 2 | 3 | def tqdm_pandas(tclass, **tqdm_kwargs) -> None: ... 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/tqdm/tqdm/autonotebook.pyi: -------------------------------------------------------------------------------- 1 | from .std import tqdm as tqdm, trange as trange 2 | 3 | __all__ = ["tqdm", "trange"] 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/tzdata/tzdata/__init__.pyi: -------------------------------------------------------------------------------- 1 | from typing import Final 2 | 3 | __version__: Final[str] 4 | IANA_VERSION: Final[str] 5 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/watchpoints/watchpoints/ast_monkey.pyi: -------------------------------------------------------------------------------- 1 | import ast 2 | 3 | def ast_parse_node(node: ast.expr) -> ast.Module: ... 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/workalendar/workalendar/usa/alaska.pyi: -------------------------------------------------------------------------------- 1 | from .core import UnitedStates 2 | 3 | class Alaska(UnitedStates): ... 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/workalendar/workalendar/usa/arizona.pyi: -------------------------------------------------------------------------------- 1 | from .core import UnitedStates 2 | 3 | class Arizona(UnitedStates): ... 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/workalendar/workalendar/usa/arkansas.pyi: -------------------------------------------------------------------------------- 1 | from .core import UnitedStates 2 | 3 | class Arkansas(UnitedStates): ... 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/workalendar/workalendar/usa/colorado.pyi: -------------------------------------------------------------------------------- 1 | from .core import UnitedStates 2 | 3 | class Colorado(UnitedStates): ... 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/workalendar/workalendar/usa/delaware.pyi: -------------------------------------------------------------------------------- 1 | from .core import UnitedStates 2 | 3 | class Delaware(UnitedStates): ... 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/workalendar/workalendar/usa/kansas.pyi: -------------------------------------------------------------------------------- 1 | from .core import UnitedStates 2 | 3 | class Kansas(UnitedStates): ... 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/workalendar/workalendar/usa/kentucky.pyi: -------------------------------------------------------------------------------- 1 | from .core import UnitedStates 2 | 3 | class Kentucky(UnitedStates): ... 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/workalendar/workalendar/usa/maryland.pyi: -------------------------------------------------------------------------------- 1 | from .core import UnitedStates 2 | 3 | class Maryland(UnitedStates): ... 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/workalendar/workalendar/usa/michigan.pyi: -------------------------------------------------------------------------------- 1 | from .core import UnitedStates 2 | 3 | class Michigan(UnitedStates): ... 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/workalendar/workalendar/usa/missouri.pyi: -------------------------------------------------------------------------------- 1 | from .core import UnitedStates 2 | 3 | class Missouri(UnitedStates): ... 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/workalendar/workalendar/usa/montana.pyi: -------------------------------------------------------------------------------- 1 | from .core import UnitedStates 2 | 3 | class Montana(UnitedStates): ... 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/workalendar/workalendar/usa/nebraska.pyi: -------------------------------------------------------------------------------- 1 | from .core import UnitedStates 2 | 3 | class Nebraska(UnitedStates): ... 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/workalendar/workalendar/usa/nevada.pyi: -------------------------------------------------------------------------------- 1 | from .core import UnitedStates 2 | 3 | class Nevada(UnitedStates): ... 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/workalendar/workalendar/usa/new_york.pyi: -------------------------------------------------------------------------------- 1 | from .core import UnitedStates 2 | 3 | class NewYork(UnitedStates): ... 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/workalendar/workalendar/usa/oklahoma.pyi: -------------------------------------------------------------------------------- 1 | from .core import UnitedStates 2 | 3 | class Oklahoma(UnitedStates): ... 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/workalendar/workalendar/usa/oregon.pyi: -------------------------------------------------------------------------------- 1 | from .core import UnitedStates 2 | 3 | class Oregon(UnitedStates): ... 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/workalendar/workalendar/usa/vermont.pyi: -------------------------------------------------------------------------------- 1 | from .core import UnitedStates 2 | 3 | class Vermont(UnitedStates): ... 4 | -------------------------------------------------------------------------------- /crates/pyrefly_bundled/third_party/typeshed/stubs/workalendar/workalendar/usa/wyoming.pyi: -------------------------------------------------------------------------------- 1 | from .core import UnitedStates 2 | 3 | class Wyoming(UnitedStates): ... 4 | --------------------------------------------------------------------------------