py2docfx 0.1.16.dev2064350__py3-none-any.whl → 0.1.17__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- py2docfx/convert_prepare/environment.py +1 -3
- py2docfx/convert_prepare/get_source.py +1 -6
- py2docfx/convert_prepare/package_info.py +1 -1
- py2docfx/docfx_yaml/miss_reference.py +1 -1
- py2docfx/docfx_yaml/parameter_utils.py +58 -6
- py2docfx/docfx_yaml/tests/roots/test-translator-typing/code_with_typing.py +14 -0
- py2docfx/docfx_yaml/tests/roots/test-translator-typing/conf.py +18 -0
- py2docfx/docfx_yaml/tests/test_translator_typing.py +39 -0
- py2docfx/docfx_yaml/utils.py +2 -2
- py2docfx/venv/basevenv/Lib/site-packages/certifi/__init__.py +1 -1
- py2docfx/venv/basevenv/Lib/site-packages/certifi/core.py +1 -32
- py2docfx/venv/basevenv/Lib/site-packages/charset_normalizer/cli/__main__.py +62 -2
- py2docfx/venv/basevenv/Lib/site-packages/charset_normalizer/constant.py +17 -0
- py2docfx/venv/basevenv/Lib/site-packages/charset_normalizer/legacy.py +1 -3
- py2docfx/venv/basevenv/Lib/site-packages/charset_normalizer/md.py +19 -14
- py2docfx/venv/basevenv/Lib/site-packages/charset_normalizer/utils.py +6 -0
- py2docfx/venv/basevenv/Lib/site-packages/charset_normalizer/version.py +1 -1
- py2docfx/venv/basevenv/Lib/site-packages/packaging/__init__.py +1 -1
- py2docfx/venv/basevenv/Lib/site-packages/packaging/_elffile.py +1 -2
- py2docfx/venv/basevenv/Lib/site-packages/packaging/_manylinux.py +1 -2
- py2docfx/venv/basevenv/Lib/site-packages/packaging/_parser.py +1 -2
- py2docfx/venv/basevenv/Lib/site-packages/packaging/_tokenizer.py +5 -4
- py2docfx/venv/basevenv/Lib/site-packages/packaging/licenses/__init__.py +1 -1
- py2docfx/venv/basevenv/Lib/site-packages/packaging/markers.py +53 -22
- py2docfx/venv/basevenv/Lib/site-packages/packaging/metadata.py +1 -2
- py2docfx/venv/basevenv/Lib/site-packages/packaging/specifiers.py +1 -2
- py2docfx/venv/basevenv/Lib/site-packages/packaging/tags.py +39 -0
- py2docfx/venv/basevenv/Lib/site-packages/pkg_resources/__init__.py +6 -7
- py2docfx/venv/basevenv/Lib/site-packages/pygments/__init__.py +1 -1
- py2docfx/venv/basevenv/Lib/site-packages/pygments/lexers/_sql_builtins.py +106 -0
- py2docfx/venv/basevenv/Lib/site-packages/pygments/lexers/scripting.py +5 -3
- py2docfx/venv/basevenv/Lib/site-packages/pygments/lexers/sql.py +24 -118
- py2docfx/venv/basevenv/Lib/site-packages/requests/__version__.py +2 -2
- py2docfx/venv/basevenv/Lib/site-packages/requests/compat.py +12 -0
- py2docfx/venv/basevenv/Lib/site-packages/requests/models.py +3 -1
- py2docfx/venv/basevenv/Lib/site-packages/requests/utils.py +6 -16
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/__init__.py +0 -38
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/_discovery.py +33 -0
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/_distutils/command/build_scripts.py +1 -1
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/_distutils/command/config.py +0 -2
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/_distutils/compilers/C/tests/test_unix.py +63 -0
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/_distutils/compilers/C/unix.py +5 -6
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/_entry_points.py +4 -0
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/_normalization.py +0 -2
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/_path.py +12 -3
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/_reqs.py +1 -1
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/_scripts.py +361 -0
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/_shutil.py +6 -0
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/build_meta.py +25 -37
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/command/bdist_egg.py +9 -11
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/command/bdist_wheel.py +1 -1
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/command/build_ext.py +29 -28
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/command/develop.py +39 -179
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/command/easy_install.py +17 -2352
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/command/editable_wheel.py +14 -31
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/command/egg_info.py +0 -2
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/command/install.py +3 -55
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/command/install_scripts.py +5 -11
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/command/sdist.py +1 -1
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/compat/py310.py +11 -0
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/dist.py +10 -12
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/installer.py +34 -29
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/tests/contexts.py +0 -14
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/tests/fixtures.py +235 -0
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/tests/integration/test_pbr.py +20 -0
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/tests/test_build_meta.py +0 -24
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/tests/test_develop.py +1 -64
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/tests/test_dist.py +2 -2
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/tests/test_dist_info.py +0 -63
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/tests/test_editable_install.py +15 -41
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/tests/test_egg_info.py +3 -2
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/tests/test_scripts.py +12 -0
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/tests/test_wheel.py +12 -36
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/tests/test_windows_wrappers.py +3 -4
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/wheel.py +49 -24
- py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/__init__.py +6 -0
- py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/arabic_stemmer.py +798 -797
- py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/armenian_stemmer.py +212 -213
- py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/basestemmer.py +20 -54
- py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/basque_stemmer.py +202 -228
- py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/catalan_stemmer.py +370 -375
- py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/danish_stemmer.py +63 -61
- py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/dutch_porter_stemmer.py +466 -0
- py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/dutch_stemmer.py +1217 -343
- py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/english_stemmer.py +295 -264
- py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/esperanto_stemmer.py +588 -0
- py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/estonian_stemmer.py +850 -0
- py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/finnish_stemmer.py +144 -143
- py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/french_stemmer.py +308 -246
- py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/german_stemmer.py +224 -167
- py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/greek_stemmer.py +1314 -1313
- py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/hindi_stemmer.py +39 -38
- py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/hungarian_stemmer.py +231 -256
- py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/indonesian_stemmer.py +61 -64
- py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/irish_stemmer.py +101 -106
- py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/italian_stemmer.py +272 -272
- py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/lithuanian_stemmer.py +233 -240
- py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/nepali_stemmer.py +108 -134
- py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/norwegian_stemmer.py +108 -63
- py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/porter_stemmer.py +101 -108
- py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/portuguese_stemmer.py +241 -250
- py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/romanian_stemmer.py +332 -296
- py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/russian_stemmer.py +178 -179
- py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/serbian_stemmer.py +2331 -2332
- py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/spanish_stemmer.py +254 -259
- py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/swedish_stemmer.py +143 -70
- py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/tamil_stemmer.py +638 -1491
- py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/turkish_stemmer.py +326 -292
- py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/yiddish_stemmer.py +245 -246
- py2docfx/venv/basevenv/Lib/site-packages/urllib3/_version.py +2 -2
- py2docfx/venv/basevenv/Lib/site-packages/urllib3/connection.py +87 -38
- py2docfx/venv/basevenv/Lib/site-packages/urllib3/contrib/emscripten/fetch.py +20 -0
- py2docfx/venv/basevenv/Lib/site-packages/urllib3/poolmanager.py +17 -1
- py2docfx/venv/basevenv/Lib/site-packages/urllib3/response.py +53 -24
- py2docfx/venv/basevenv/Lib/site-packages/urllib3/util/request.py +12 -4
- py2docfx/venv/basevenv/Lib/site-packages/urllib3/util/ssl_.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/azure/core/_version.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/azure/core/pipeline/_base_async.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/azure/core/pipeline/transport/_aiohttp.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/azure/core/pipeline/transport/_base_async.py +2 -1
- py2docfx/venv/venv1/Lib/site-packages/azure/core/pipeline/transport/_requests_asyncio.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/azure/core/rest/_aiohttp.py +2 -2
- py2docfx/venv/venv1/Lib/site-packages/azure/core/rest/_requests_asyncio.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/azure/core/tracing/opentelemetry.py +13 -1
- py2docfx/venv/venv1/Lib/site-packages/azure/core/utils/_pipeline_transport_rest_shared_async.py +2 -1
- py2docfx/venv/venv1/Lib/site-packages/azure/core/utils/_utils.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/_constants.py +1 -0
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/default.py +23 -2
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/environment.py +12 -16
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/service_fabric.py +22 -1
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/user_password.py +10 -6
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/vscode.py +13 -4
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/auth_code_redirect_handler.py +3 -5
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/msal_client.py +2 -1
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/_persistent_cache.py +3 -2
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/_version.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/azd_cli.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/azure_cli.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/azure_powershell.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/chained.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/default.py +22 -2
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/environment.py +2 -2
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/service_fabric.py +17 -1
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/vscode.py +4 -4
- py2docfx/venv/venv1/Lib/site-packages/certifi/__init__.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/certifi/core.py +1 -32
- py2docfx/venv/venv1/Lib/site-packages/charset_normalizer/cli/__main__.py +62 -2
- py2docfx/venv/venv1/Lib/site-packages/charset_normalizer/constant.py +17 -0
- py2docfx/venv/venv1/Lib/site-packages/charset_normalizer/legacy.py +1 -3
- py2docfx/venv/venv1/Lib/site-packages/charset_normalizer/md.py +19 -14
- py2docfx/venv/venv1/Lib/site-packages/charset_normalizer/utils.py +6 -0
- py2docfx/venv/venv1/Lib/site-packages/charset_normalizer/version.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/cryptography/__about__.py +2 -2
- py2docfx/venv/venv1/Lib/site-packages/cryptography/__init__.py +2 -2
- py2docfx/venv/venv1/Lib/site-packages/cryptography/fernet.py +2 -1
- py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/_oid.py +35 -2
- py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/backends/openssl/backend.py +33 -10
- py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/bindings/_rust/__init__.pyi +14 -5
- py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/bindings/_rust/ocsp.pyi +2 -2
- py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/bindings/_rust/openssl/__init__.pyi +3 -0
- py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/bindings/_rust/openssl/aead.pyi +49 -45
- py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/bindings/_rust/openssl/ciphers.pyi +2 -2
- py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/bindings/_rust/openssl/ed25519.pyi +2 -1
- py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/bindings/_rust/openssl/ed448.pyi +2 -1
- py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/bindings/_rust/openssl/hashes.pyi +10 -1
- py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/bindings/_rust/openssl/hmac.pyi +3 -2
- py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/bindings/_rust/openssl/kdf.pyi +8 -2
- py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/bindings/_rust/openssl/keys.pyi +3 -2
- py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/bindings/_rust/openssl/poly1305.pyi +6 -4
- py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/bindings/_rust/openssl/x25519.pyi +2 -1
- py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/bindings/_rust/openssl/x448.pyi +2 -1
- py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/bindings/_rust/pkcs12.pyi +9 -3
- py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/bindings/_rust/pkcs7.pyi +7 -6
- py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/bindings/_rust/test_support.pyi +2 -1
- py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/bindings/_rust/x509.pyi +79 -12
- py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/bindings/openssl/_conditional.py +9 -1
- py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/bindings/openssl/binding.py +2 -1
- py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/decrepit/ciphers/algorithms.py +5 -0
- py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/_cipheralgorithm.py +4 -2
- py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/_serialization.py +1 -2
- py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/asymmetric/dh.py +12 -0
- py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/asymmetric/dsa.py +16 -3
- py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/asymmetric/ec.py +47 -3
- py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/asymmetric/ed25519.py +16 -3
- py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/asymmetric/ed448.py +16 -3
- py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/asymmetric/rsa.py +14 -0
- py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/asymmetric/x25519.py +14 -1
- py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/asymmetric/x448.py +14 -1
- py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/ciphers/algorithms.py +6 -6
- py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/ciphers/base.py +5 -4
- py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/ciphers/modes.py +18 -18
- py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/hashes.py +5 -1
- py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/kdf/concatkdf.py +5 -4
- py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/kdf/hkdf.py +4 -4
- py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/kdf/kbkdf.py +7 -4
- py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/kdf/pbkdf2.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/kdf/x963kdf.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/padding.py +7 -121
- py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/serialization/__init__.py +2 -0
- py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/serialization/pkcs12.py +21 -1
- py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/serialization/pkcs7.py +48 -6
- py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/serialization/ssh.py +68 -18
- py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/twofactor/hotp.py +3 -2
- py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/twofactor/totp.py +2 -1
- py2docfx/venv/venv1/Lib/site-packages/cryptography/utils.py +15 -3
- py2docfx/venv/venv1/Lib/site-packages/cryptography/x509/__init__.py +3 -0
- py2docfx/venv/venv1/Lib/site-packages/cryptography/x509/base.py +39 -6
- py2docfx/venv/venv1/Lib/site-packages/cryptography/x509/extensions.py +100 -49
- py2docfx/venv/venv1/Lib/site-packages/cryptography/x509/name.py +27 -15
- py2docfx/venv/venv1/Lib/site-packages/cryptography/x509/ocsp.py +60 -25
- py2docfx/venv/venv1/Lib/site-packages/cryptography/x509/oid.py +2 -0
- py2docfx/venv/venv1/Lib/site-packages/cryptography/x509/verification.py +6 -0
- py2docfx/venv/venv1/Lib/site-packages/google/api_core/bidi.py +17 -4
- py2docfx/venv/venv1/Lib/site-packages/google/api_core/client_info.py +6 -0
- py2docfx/venv/venv1/Lib/site-packages/google/api_core/gapic_v1/client_info.py +1 -0
- py2docfx/venv/venv1/Lib/site-packages/google/api_core/retry/retry_base.py +13 -4
- py2docfx/venv/venv1/Lib/site-packages/google/api_core/retry/retry_streaming.py +7 -6
- py2docfx/venv/venv1/Lib/site-packages/google/api_core/retry/retry_streaming_async.py +8 -5
- py2docfx/venv/venv1/Lib/site-packages/google/api_core/retry/retry_unary.py +7 -6
- py2docfx/venv/venv1/Lib/site-packages/google/api_core/retry/retry_unary_async.py +7 -6
- py2docfx/venv/venv1/Lib/site-packages/google/api_core/version.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/google/auth/_default.py +2 -36
- py2docfx/venv/venv1/Lib/site-packages/google/auth/_helpers.py +240 -0
- py2docfx/venv/venv1/Lib/site-packages/google/auth/aio/_helpers.py +62 -0
- py2docfx/venv/venv1/Lib/site-packages/google/auth/aio/transport/aiohttp.py +6 -0
- py2docfx/venv/venv1/Lib/site-packages/google/auth/compute_engine/_metadata.py +5 -1
- py2docfx/venv/venv1/Lib/site-packages/google/auth/compute_engine/credentials.py +2 -1
- py2docfx/venv/venv1/Lib/site-packages/google/auth/identity_pool.py +91 -2
- py2docfx/venv/venv1/Lib/site-packages/google/auth/impersonated_credentials.py +75 -0
- py2docfx/venv/venv1/Lib/site-packages/google/auth/transport/__init__.py +1 -0
- py2docfx/venv/venv1/Lib/site-packages/google/auth/transport/_aiohttp_requests.py +8 -1
- py2docfx/venv/venv1/Lib/site-packages/google/auth/transport/_http_client.py +3 -1
- py2docfx/venv/venv1/Lib/site-packages/google/auth/transport/requests.py +4 -1
- py2docfx/venv/venv1/Lib/site-packages/google/auth/transport/urllib3.py +15 -5
- py2docfx/venv/venv1/Lib/site-packages/google/auth/version.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/google/oauth2/id_token.py +12 -0
- py2docfx/venv/venv1/Lib/site-packages/google/oauth2/webauthn_types.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/__init__.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/any.py +15 -1
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/any_pb2.py +3 -3
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/api_pb2.py +3 -3
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/compiler/plugin_pb2.py +3 -3
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/descriptor.py +15 -2
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/descriptor_pb2.py +258 -113
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/descriptor_pool.py +22 -8
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/duration_pb2.py +3 -3
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/empty_pb2.py +3 -3
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/field_mask_pb2.py +3 -3
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/internal/decoder.py +106 -23
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/internal/field_mask.py +3 -1
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/internal/python_edition_defaults.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/internal/python_message.py +21 -18
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/internal/testing_refleaks.py +8 -2
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/internal/well_known_types.py +60 -43
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/json_format.py +4 -5
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/message_factory.py +16 -0
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/runtime_version.py +2 -2
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/source_context_pb2.py +3 -3
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/struct_pb2.py +3 -3
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/text_format.py +11 -7
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/timestamp_pb2.py +3 -3
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/type_pb2.py +3 -3
- py2docfx/venv/venv1/Lib/site-packages/google/protobuf/wrappers_pb2.py +3 -3
- py2docfx/venv/venv1/Lib/site-packages/google/rpc/error_details_pb2.py +29 -23
- py2docfx/venv/venv1/Lib/site-packages/google/rpc/error_details_pb2.pyi +41 -2
- py2docfx/venv/venv1/Lib/site-packages/msal/application.py +1 -0
- py2docfx/venv/venv1/Lib/site-packages/msal/individual_cache.py +9 -5
- py2docfx/venv/venv1/Lib/site-packages/msal/managed_identity.py +4 -5
- py2docfx/venv/venv1/Lib/site-packages/msal/sku.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/msal/throttled_http_client.py +58 -30
- py2docfx/venv/venv1/Lib/site-packages/opencensus/__init__.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/opencensus/ext/__init__.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/opencensus/ext/azure/__init__.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/opencensus/ext/azure/common/__init__.py +138 -138
- py2docfx/venv/venv1/Lib/site-packages/opencensus/ext/azure/common/exporter.py +93 -93
- py2docfx/venv/venv1/Lib/site-packages/opencensus/ext/azure/common/processor.py +63 -63
- py2docfx/venv/venv1/Lib/site-packages/opencensus/ext/azure/common/protocol.py +206 -206
- py2docfx/venv/venv1/Lib/site-packages/opencensus/ext/azure/common/storage.py +205 -205
- py2docfx/venv/venv1/Lib/site-packages/opencensus/ext/azure/common/transport.py +355 -355
- py2docfx/venv/venv1/Lib/site-packages/opencensus/ext/azure/common/utils.py +79 -79
- py2docfx/venv/venv1/Lib/site-packages/opencensus/ext/azure/common/version.py +15 -15
- py2docfx/venv/venv1/Lib/site-packages/opencensus/ext/azure/log_exporter/__init__.py +314 -314
- py2docfx/venv/venv1/Lib/site-packages/opencensus/ext/azure/metrics_exporter/__init__.py +190 -190
- py2docfx/venv/venv1/Lib/site-packages/opencensus/ext/azure/metrics_exporter/standard_metrics/__init__.py +62 -62
- py2docfx/venv/venv1/Lib/site-packages/opencensus/ext/azure/metrics_exporter/standard_metrics/cpu.py +50 -50
- py2docfx/venv/venv1/Lib/site-packages/opencensus/ext/azure/metrics_exporter/standard_metrics/http_requests.py +176 -176
- py2docfx/venv/venv1/Lib/site-packages/opencensus/ext/azure/metrics_exporter/standard_metrics/memory.py +42 -42
- py2docfx/venv/venv1/Lib/site-packages/opencensus/ext/azure/metrics_exporter/standard_metrics/process.py +87 -87
- py2docfx/venv/venv1/Lib/site-packages/opencensus/ext/azure/statsbeat/__init__.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/opencensus/ext/azure/statsbeat/state.py +50 -50
- py2docfx/venv/venv1/Lib/site-packages/opencensus/ext/azure/statsbeat/statsbeat.py +100 -100
- py2docfx/venv/venv1/Lib/site-packages/opencensus/ext/azure/statsbeat/statsbeat_metrics.py +480 -480
- py2docfx/venv/venv1/Lib/site-packages/opencensus/ext/azure/trace_exporter/__init__.py +236 -236
- py2docfx/venv/venv1/Lib/site-packages/packaging/__init__.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/packaging/_elffile.py +1 -2
- py2docfx/venv/venv1/Lib/site-packages/packaging/_manylinux.py +1 -2
- py2docfx/venv/venv1/Lib/site-packages/packaging/_parser.py +1 -2
- py2docfx/venv/venv1/Lib/site-packages/packaging/_tokenizer.py +5 -4
- py2docfx/venv/venv1/Lib/site-packages/packaging/licenses/__init__.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/packaging/markers.py +53 -22
- py2docfx/venv/venv1/Lib/site-packages/packaging/metadata.py +1 -2
- py2docfx/venv/venv1/Lib/site-packages/packaging/specifiers.py +1 -2
- py2docfx/venv/venv1/Lib/site-packages/packaging/tags.py +39 -0
- py2docfx/venv/venv1/Lib/site-packages/pkg_resources/__init__.py +6 -7
- py2docfx/venv/venv1/Lib/site-packages/requests/__version__.py +2 -2
- py2docfx/venv/venv1/Lib/site-packages/requests/compat.py +12 -0
- py2docfx/venv/venv1/Lib/site-packages/requests/models.py +3 -1
- py2docfx/venv/venv1/Lib/site-packages/requests/utils.py +6 -16
- py2docfx/venv/venv1/Lib/site-packages/rsa/__init__.py +2 -2
- py2docfx/venv/venv1/Lib/site-packages/rsa/asn1.py +52 -52
- py2docfx/venv/venv1/Lib/site-packages/rsa/cli.py +321 -321
- py2docfx/venv/venv1/Lib/site-packages/rsa/common.py +184 -184
- py2docfx/venv/venv1/Lib/site-packages/rsa/core.py +53 -53
- py2docfx/venv/venv1/Lib/site-packages/rsa/key.py +858 -858
- py2docfx/venv/venv1/Lib/site-packages/rsa/parallel.py +96 -96
- py2docfx/venv/venv1/Lib/site-packages/rsa/pem.py +134 -134
- py2docfx/venv/venv1/Lib/site-packages/rsa/pkcs1.py +485 -485
- py2docfx/venv/venv1/Lib/site-packages/rsa/pkcs1_v2.py +100 -100
- py2docfx/venv/venv1/Lib/site-packages/rsa/prime.py +198 -198
- py2docfx/venv/venv1/Lib/site-packages/rsa/py.typed +1 -1
- py2docfx/venv/venv1/Lib/site-packages/rsa/randnum.py +95 -95
- py2docfx/venv/venv1/Lib/site-packages/rsa/transform.py +72 -72
- py2docfx/venv/venv1/Lib/site-packages/rsa/util.py +97 -97
- py2docfx/venv/venv1/Lib/site-packages/setuptools/__init__.py +0 -38
- py2docfx/venv/venv1/Lib/site-packages/setuptools/_discovery.py +33 -0
- py2docfx/venv/venv1/Lib/site-packages/setuptools/_distutils/command/build_scripts.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/setuptools/_distutils/command/config.py +0 -2
- py2docfx/venv/venv1/Lib/site-packages/setuptools/_distutils/compilers/C/tests/test_unix.py +63 -0
- py2docfx/venv/venv1/Lib/site-packages/setuptools/_distutils/compilers/C/unix.py +5 -6
- py2docfx/venv/venv1/Lib/site-packages/setuptools/_entry_points.py +4 -0
- py2docfx/venv/venv1/Lib/site-packages/setuptools/_normalization.py +0 -2
- py2docfx/venv/venv1/Lib/site-packages/setuptools/_path.py +12 -3
- py2docfx/venv/venv1/Lib/site-packages/setuptools/_reqs.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/setuptools/_scripts.py +361 -0
- py2docfx/venv/venv1/Lib/site-packages/setuptools/_shutil.py +6 -0
- py2docfx/venv/venv1/Lib/site-packages/setuptools/build_meta.py +25 -37
- py2docfx/venv/venv1/Lib/site-packages/setuptools/command/bdist_egg.py +9 -11
- py2docfx/venv/venv1/Lib/site-packages/setuptools/command/bdist_wheel.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/setuptools/command/build_ext.py +29 -28
- py2docfx/venv/venv1/Lib/site-packages/setuptools/command/develop.py +39 -179
- py2docfx/venv/venv1/Lib/site-packages/setuptools/command/easy_install.py +17 -2352
- py2docfx/venv/venv1/Lib/site-packages/setuptools/command/editable_wheel.py +14 -31
- py2docfx/venv/venv1/Lib/site-packages/setuptools/command/egg_info.py +0 -2
- py2docfx/venv/venv1/Lib/site-packages/setuptools/command/install.py +3 -55
- py2docfx/venv/venv1/Lib/site-packages/setuptools/command/install_scripts.py +5 -11
- py2docfx/venv/venv1/Lib/site-packages/setuptools/command/sdist.py +1 -1
- py2docfx/venv/venv1/Lib/site-packages/setuptools/compat/py310.py +11 -0
- py2docfx/venv/venv1/Lib/site-packages/setuptools/dist.py +10 -12
- py2docfx/venv/venv1/Lib/site-packages/setuptools/installer.py +34 -29
- py2docfx/venv/venv1/Lib/site-packages/setuptools/tests/contexts.py +0 -14
- py2docfx/venv/venv1/Lib/site-packages/setuptools/tests/fixtures.py +235 -0
- py2docfx/venv/venv1/Lib/site-packages/setuptools/tests/integration/test_pbr.py +20 -0
- py2docfx/venv/venv1/Lib/site-packages/setuptools/tests/test_build_meta.py +0 -24
- py2docfx/venv/venv1/Lib/site-packages/setuptools/tests/test_develop.py +1 -64
- py2docfx/venv/venv1/Lib/site-packages/setuptools/tests/test_dist.py +2 -2
- py2docfx/venv/venv1/Lib/site-packages/setuptools/tests/test_dist_info.py +0 -63
- py2docfx/venv/venv1/Lib/site-packages/setuptools/tests/test_editable_install.py +15 -41
- py2docfx/venv/venv1/Lib/site-packages/setuptools/tests/test_egg_info.py +3 -2
- py2docfx/venv/venv1/Lib/site-packages/setuptools/tests/test_scripts.py +12 -0
- py2docfx/venv/venv1/Lib/site-packages/setuptools/tests/test_wheel.py +12 -36
- py2docfx/venv/venv1/Lib/site-packages/setuptools/tests/test_windows_wrappers.py +3 -4
- py2docfx/venv/venv1/Lib/site-packages/setuptools/wheel.py +49 -24
- py2docfx/venv/venv1/Lib/site-packages/typing_extensions.py +357 -703
- py2docfx/venv/venv1/Lib/site-packages/urllib3/_version.py +2 -2
- py2docfx/venv/venv1/Lib/site-packages/urllib3/connection.py +87 -38
- py2docfx/venv/venv1/Lib/site-packages/urllib3/contrib/emscripten/fetch.py +20 -0
- py2docfx/venv/venv1/Lib/site-packages/urllib3/poolmanager.py +17 -1
- py2docfx/venv/venv1/Lib/site-packages/urllib3/response.py +53 -24
- py2docfx/venv/venv1/Lib/site-packages/urllib3/util/request.py +12 -4
- py2docfx/venv/venv1/Lib/site-packages/urllib3/util/ssl_.py +1 -1
- {py2docfx-0.1.16.dev2064350.dist-info → py2docfx-0.1.17.dist-info}/METADATA +1 -1
- {py2docfx-0.1.16.dev2064350.dist-info → py2docfx-0.1.17.dist-info}/RECORD +374 -372
- {py2docfx-0.1.16.dev2064350.dist-info → py2docfx-0.1.17.dist-info}/WHEEL +1 -1
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/package_index.py +0 -1137
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/sandbox.py +0 -536
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/tests/server.py +0 -86
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/tests/test_easy_install.py +0 -1476
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/tests/test_packageindex.py +0 -267
- py2docfx/venv/basevenv/Lib/site-packages/setuptools/tests/test_sandbox.py +0 -134
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/application.py +0 -119
- py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/application.py +0 -121
- py2docfx/venv/venv1/Lib/site-packages/setuptools/package_index.py +0 -1137
- py2docfx/venv/venv1/Lib/site-packages/setuptools/sandbox.py +0 -536
- py2docfx/venv/venv1/Lib/site-packages/setuptools/tests/server.py +0 -86
- py2docfx/venv/venv1/Lib/site-packages/setuptools/tests/test_easy_install.py +0 -1476
- py2docfx/venv/venv1/Lib/site-packages/setuptools/tests/test_packageindex.py +0 -267
- py2docfx/venv/venv1/Lib/site-packages/setuptools/tests/test_sandbox.py +0 -134
- {py2docfx-0.1.16.dev2064350.dist-info → py2docfx-0.1.17.dist-info}/top_level.txt +0 -0
@@ -1,4 +1,5 @@
|
|
1
|
-
|
1
|
+
#-*- coding: utf-8 -*-
|
2
|
+
# Generated from russian.sbl by Snowball 3.0.1 - https://snowballstem.org/
|
2
3
|
|
3
4
|
from .basestemmer import BaseStemmer
|
4
5
|
from .among import Among
|
@@ -7,167 +8,10 @@ from .among import Among
|
|
7
8
|
class RussianStemmer(BaseStemmer):
|
8
9
|
'''
|
9
10
|
This class implements the stemming algorithm defined by a snowball script.
|
10
|
-
Generated by Snowball
|
11
|
+
Generated from russian.sbl by Snowball 3.0.1 - https://snowballstem.org/
|
11
12
|
'''
|
12
13
|
|
13
|
-
|
14
|
-
Among(u"\u0432", -1, 1),
|
15
|
-
Among(u"\u0438\u0432", 0, 2),
|
16
|
-
Among(u"\u044B\u0432", 0, 2),
|
17
|
-
Among(u"\u0432\u0448\u0438", -1, 1),
|
18
|
-
Among(u"\u0438\u0432\u0448\u0438", 3, 2),
|
19
|
-
Among(u"\u044B\u0432\u0448\u0438", 3, 2),
|
20
|
-
Among(u"\u0432\u0448\u0438\u0441\u044C", -1, 1),
|
21
|
-
Among(u"\u0438\u0432\u0448\u0438\u0441\u044C", 6, 2),
|
22
|
-
Among(u"\u044B\u0432\u0448\u0438\u0441\u044C", 6, 2)
|
23
|
-
]
|
24
|
-
|
25
|
-
a_1 = [
|
26
|
-
Among(u"\u0435\u0435", -1, 1),
|
27
|
-
Among(u"\u0438\u0435", -1, 1),
|
28
|
-
Among(u"\u043E\u0435", -1, 1),
|
29
|
-
Among(u"\u044B\u0435", -1, 1),
|
30
|
-
Among(u"\u0438\u043C\u0438", -1, 1),
|
31
|
-
Among(u"\u044B\u043C\u0438", -1, 1),
|
32
|
-
Among(u"\u0435\u0439", -1, 1),
|
33
|
-
Among(u"\u0438\u0439", -1, 1),
|
34
|
-
Among(u"\u043E\u0439", -1, 1),
|
35
|
-
Among(u"\u044B\u0439", -1, 1),
|
36
|
-
Among(u"\u0435\u043C", -1, 1),
|
37
|
-
Among(u"\u0438\u043C", -1, 1),
|
38
|
-
Among(u"\u043E\u043C", -1, 1),
|
39
|
-
Among(u"\u044B\u043C", -1, 1),
|
40
|
-
Among(u"\u0435\u0433\u043E", -1, 1),
|
41
|
-
Among(u"\u043E\u0433\u043E", -1, 1),
|
42
|
-
Among(u"\u0435\u043C\u0443", -1, 1),
|
43
|
-
Among(u"\u043E\u043C\u0443", -1, 1),
|
44
|
-
Among(u"\u0438\u0445", -1, 1),
|
45
|
-
Among(u"\u044B\u0445", -1, 1),
|
46
|
-
Among(u"\u0435\u044E", -1, 1),
|
47
|
-
Among(u"\u043E\u044E", -1, 1),
|
48
|
-
Among(u"\u0443\u044E", -1, 1),
|
49
|
-
Among(u"\u044E\u044E", -1, 1),
|
50
|
-
Among(u"\u0430\u044F", -1, 1),
|
51
|
-
Among(u"\u044F\u044F", -1, 1)
|
52
|
-
]
|
53
|
-
|
54
|
-
a_2 = [
|
55
|
-
Among(u"\u0435\u043C", -1, 1),
|
56
|
-
Among(u"\u043D\u043D", -1, 1),
|
57
|
-
Among(u"\u0432\u0448", -1, 1),
|
58
|
-
Among(u"\u0438\u0432\u0448", 2, 2),
|
59
|
-
Among(u"\u044B\u0432\u0448", 2, 2),
|
60
|
-
Among(u"\u0449", -1, 1),
|
61
|
-
Among(u"\u044E\u0449", 5, 1),
|
62
|
-
Among(u"\u0443\u044E\u0449", 6, 2)
|
63
|
-
]
|
64
|
-
|
65
|
-
a_3 = [
|
66
|
-
Among(u"\u0441\u044C", -1, 1),
|
67
|
-
Among(u"\u0441\u044F", -1, 1)
|
68
|
-
]
|
69
|
-
|
70
|
-
a_4 = [
|
71
|
-
Among(u"\u043B\u0430", -1, 1),
|
72
|
-
Among(u"\u0438\u043B\u0430", 0, 2),
|
73
|
-
Among(u"\u044B\u043B\u0430", 0, 2),
|
74
|
-
Among(u"\u043D\u0430", -1, 1),
|
75
|
-
Among(u"\u0435\u043D\u0430", 3, 2),
|
76
|
-
Among(u"\u0435\u0442\u0435", -1, 1),
|
77
|
-
Among(u"\u0438\u0442\u0435", -1, 2),
|
78
|
-
Among(u"\u0439\u0442\u0435", -1, 1),
|
79
|
-
Among(u"\u0435\u0439\u0442\u0435", 7, 2),
|
80
|
-
Among(u"\u0443\u0439\u0442\u0435", 7, 2),
|
81
|
-
Among(u"\u043B\u0438", -1, 1),
|
82
|
-
Among(u"\u0438\u043B\u0438", 10, 2),
|
83
|
-
Among(u"\u044B\u043B\u0438", 10, 2),
|
84
|
-
Among(u"\u0439", -1, 1),
|
85
|
-
Among(u"\u0435\u0439", 13, 2),
|
86
|
-
Among(u"\u0443\u0439", 13, 2),
|
87
|
-
Among(u"\u043B", -1, 1),
|
88
|
-
Among(u"\u0438\u043B", 16, 2),
|
89
|
-
Among(u"\u044B\u043B", 16, 2),
|
90
|
-
Among(u"\u0435\u043C", -1, 1),
|
91
|
-
Among(u"\u0438\u043C", -1, 2),
|
92
|
-
Among(u"\u044B\u043C", -1, 2),
|
93
|
-
Among(u"\u043D", -1, 1),
|
94
|
-
Among(u"\u0435\u043D", 22, 2),
|
95
|
-
Among(u"\u043B\u043E", -1, 1),
|
96
|
-
Among(u"\u0438\u043B\u043E", 24, 2),
|
97
|
-
Among(u"\u044B\u043B\u043E", 24, 2),
|
98
|
-
Among(u"\u043D\u043E", -1, 1),
|
99
|
-
Among(u"\u0435\u043D\u043E", 27, 2),
|
100
|
-
Among(u"\u043D\u043D\u043E", 27, 1),
|
101
|
-
Among(u"\u0435\u0442", -1, 1),
|
102
|
-
Among(u"\u0443\u0435\u0442", 30, 2),
|
103
|
-
Among(u"\u0438\u0442", -1, 2),
|
104
|
-
Among(u"\u044B\u0442", -1, 2),
|
105
|
-
Among(u"\u044E\u0442", -1, 1),
|
106
|
-
Among(u"\u0443\u044E\u0442", 34, 2),
|
107
|
-
Among(u"\u044F\u0442", -1, 2),
|
108
|
-
Among(u"\u043D\u044B", -1, 1),
|
109
|
-
Among(u"\u0435\u043D\u044B", 37, 2),
|
110
|
-
Among(u"\u0442\u044C", -1, 1),
|
111
|
-
Among(u"\u0438\u0442\u044C", 39, 2),
|
112
|
-
Among(u"\u044B\u0442\u044C", 39, 2),
|
113
|
-
Among(u"\u0435\u0448\u044C", -1, 1),
|
114
|
-
Among(u"\u0438\u0448\u044C", -1, 2),
|
115
|
-
Among(u"\u044E", -1, 2),
|
116
|
-
Among(u"\u0443\u044E", 44, 2)
|
117
|
-
]
|
118
|
-
|
119
|
-
a_5 = [
|
120
|
-
Among(u"\u0430", -1, 1),
|
121
|
-
Among(u"\u0435\u0432", -1, 1),
|
122
|
-
Among(u"\u043E\u0432", -1, 1),
|
123
|
-
Among(u"\u0435", -1, 1),
|
124
|
-
Among(u"\u0438\u0435", 3, 1),
|
125
|
-
Among(u"\u044C\u0435", 3, 1),
|
126
|
-
Among(u"\u0438", -1, 1),
|
127
|
-
Among(u"\u0435\u0438", 6, 1),
|
128
|
-
Among(u"\u0438\u0438", 6, 1),
|
129
|
-
Among(u"\u0430\u043C\u0438", 6, 1),
|
130
|
-
Among(u"\u044F\u043C\u0438", 6, 1),
|
131
|
-
Among(u"\u0438\u044F\u043C\u0438", 10, 1),
|
132
|
-
Among(u"\u0439", -1, 1),
|
133
|
-
Among(u"\u0435\u0439", 12, 1),
|
134
|
-
Among(u"\u0438\u0435\u0439", 13, 1),
|
135
|
-
Among(u"\u0438\u0439", 12, 1),
|
136
|
-
Among(u"\u043E\u0439", 12, 1),
|
137
|
-
Among(u"\u0430\u043C", -1, 1),
|
138
|
-
Among(u"\u0435\u043C", -1, 1),
|
139
|
-
Among(u"\u0438\u0435\u043C", 18, 1),
|
140
|
-
Among(u"\u043E\u043C", -1, 1),
|
141
|
-
Among(u"\u044F\u043C", -1, 1),
|
142
|
-
Among(u"\u0438\u044F\u043C", 21, 1),
|
143
|
-
Among(u"\u043E", -1, 1),
|
144
|
-
Among(u"\u0443", -1, 1),
|
145
|
-
Among(u"\u0430\u0445", -1, 1),
|
146
|
-
Among(u"\u044F\u0445", -1, 1),
|
147
|
-
Among(u"\u0438\u044F\u0445", 26, 1),
|
148
|
-
Among(u"\u044B", -1, 1),
|
149
|
-
Among(u"\u044C", -1, 1),
|
150
|
-
Among(u"\u044E", -1, 1),
|
151
|
-
Among(u"\u0438\u044E", 30, 1),
|
152
|
-
Among(u"\u044C\u044E", 30, 1),
|
153
|
-
Among(u"\u044F", -1, 1),
|
154
|
-
Among(u"\u0438\u044F", 33, 1),
|
155
|
-
Among(u"\u044C\u044F", 33, 1)
|
156
|
-
]
|
157
|
-
|
158
|
-
a_6 = [
|
159
|
-
Among(u"\u043E\u0441\u0442", -1, 1),
|
160
|
-
Among(u"\u043E\u0441\u0442\u044C", -1, 1)
|
161
|
-
]
|
162
|
-
|
163
|
-
a_7 = [
|
164
|
-
Among(u"\u0435\u0439\u0448\u0435", -1, 1),
|
165
|
-
Among(u"\u043D", -1, 2),
|
166
|
-
Among(u"\u0435\u0439\u0448", -1, 1),
|
167
|
-
Among(u"\u044C", -1, 3)
|
168
|
-
]
|
169
|
-
|
170
|
-
g_v = [33, 65, 8, 232]
|
14
|
+
g_v = {u"а", u"е", u"и", u"о", u"у", u"ы", u"э", u"ю", u"я"}
|
171
15
|
|
172
16
|
I_p2 = 0
|
173
17
|
I_pV = 0
|
@@ -177,17 +21,17 @@ class RussianStemmer(BaseStemmer):
|
|
177
21
|
self.I_p2 = self.limit
|
178
22
|
v_1 = self.cursor
|
179
23
|
try:
|
180
|
-
if not self.go_out_grouping(RussianStemmer.g_v
|
24
|
+
if not self.go_out_grouping(RussianStemmer.g_v):
|
181
25
|
raise lab0()
|
182
26
|
self.cursor += 1
|
183
27
|
self.I_pV = self.cursor
|
184
|
-
if not self.go_in_grouping(RussianStemmer.g_v
|
28
|
+
if not self.go_in_grouping(RussianStemmer.g_v):
|
185
29
|
raise lab0()
|
186
30
|
self.cursor += 1
|
187
|
-
if not self.go_out_grouping(RussianStemmer.g_v
|
31
|
+
if not self.go_out_grouping(RussianStemmer.g_v):
|
188
32
|
raise lab0()
|
189
33
|
self.cursor += 1
|
190
|
-
if not self.go_in_grouping(RussianStemmer.g_v
|
34
|
+
if not self.go_in_grouping(RussianStemmer.g_v):
|
191
35
|
raise lab0()
|
192
36
|
self.cursor += 1
|
193
37
|
self.I_p2 = self.cursor
|
@@ -196,9 +40,7 @@ class RussianStemmer(BaseStemmer):
|
|
196
40
|
return True
|
197
41
|
|
198
42
|
def __r_R2(self):
|
199
|
-
|
200
|
-
return False
|
201
|
-
return True
|
43
|
+
return self.I_p2 <= self.cursor
|
202
44
|
|
203
45
|
def __r_perfective_gerund(self):
|
204
46
|
self.ket = self.cursor
|
@@ -210,12 +52,12 @@ class RussianStemmer(BaseStemmer):
|
|
210
52
|
try:
|
211
53
|
v_1 = self.limit - self.cursor
|
212
54
|
try:
|
213
|
-
if not self.eq_s_b(u"
|
55
|
+
if not self.eq_s_b(u"а"):
|
214
56
|
raise lab1()
|
215
57
|
raise lab0()
|
216
58
|
except lab1: pass
|
217
59
|
self.cursor = self.limit - v_1
|
218
|
-
if not self.eq_s_b(u"
|
60
|
+
if not self.eq_s_b(u"я"):
|
219
61
|
return False
|
220
62
|
except lab0: pass
|
221
63
|
if not self.slice_del():
|
@@ -252,12 +94,12 @@ class RussianStemmer(BaseStemmer):
|
|
252
94
|
try:
|
253
95
|
v_2 = self.limit - self.cursor
|
254
96
|
try:
|
255
|
-
if not self.eq_s_b(u"
|
97
|
+
if not self.eq_s_b(u"а"):
|
256
98
|
raise lab2()
|
257
99
|
raise lab1()
|
258
100
|
except lab2: pass
|
259
101
|
self.cursor = self.limit - v_2
|
260
|
-
if not self.eq_s_b(u"
|
102
|
+
if not self.eq_s_b(u"я"):
|
261
103
|
self.cursor = self.limit - v_1
|
262
104
|
raise lab0()
|
263
105
|
except lab1: pass
|
@@ -291,12 +133,12 @@ class RussianStemmer(BaseStemmer):
|
|
291
133
|
try:
|
292
134
|
v_1 = self.limit - self.cursor
|
293
135
|
try:
|
294
|
-
if not self.eq_s_b(u"
|
136
|
+
if not self.eq_s_b(u"а"):
|
295
137
|
raise lab1()
|
296
138
|
raise lab0()
|
297
139
|
except lab1: pass
|
298
140
|
self.cursor = self.limit - v_1
|
299
|
-
if not self.eq_s_b(u"
|
141
|
+
if not self.eq_s_b(u"я"):
|
300
142
|
return False
|
301
143
|
except lab0: pass
|
302
144
|
if not self.slice_del():
|
@@ -341,16 +183,16 @@ class RussianStemmer(BaseStemmer):
|
|
341
183
|
return False
|
342
184
|
|
343
185
|
self.ket = self.cursor
|
344
|
-
if not self.eq_s_b(u"
|
186
|
+
if not self.eq_s_b(u"н"):
|
345
187
|
return False
|
346
188
|
self.bra = self.cursor
|
347
|
-
if not self.eq_s_b(u"
|
189
|
+
if not self.eq_s_b(u"н"):
|
348
190
|
return False
|
349
191
|
if not self.slice_del():
|
350
192
|
return False
|
351
193
|
|
352
194
|
elif among_var == 2:
|
353
|
-
if not self.eq_s_b(u"
|
195
|
+
if not self.eq_s_b(u"н"):
|
354
196
|
return False
|
355
197
|
if not self.slice_del():
|
356
198
|
return False
|
@@ -372,7 +214,7 @@ class RussianStemmer(BaseStemmer):
|
|
372
214
|
v_3 = self.cursor
|
373
215
|
try:
|
374
216
|
self.bra = self.cursor
|
375
|
-
if not self.eq_s(u"
|
217
|
+
if not self.eq_s(u"ё"):
|
376
218
|
raise lab3()
|
377
219
|
self.ket = self.cursor
|
378
220
|
self.cursor = v_3
|
@@ -383,7 +225,7 @@ class RussianStemmer(BaseStemmer):
|
|
383
225
|
raise lab1()
|
384
226
|
self.cursor += 1
|
385
227
|
except lab2: pass
|
386
|
-
if not self.slice_from(u"
|
228
|
+
if not self.slice_from(u"е"):
|
387
229
|
return False
|
388
230
|
continue
|
389
231
|
except lab1: pass
|
@@ -437,7 +279,7 @@ class RussianStemmer(BaseStemmer):
|
|
437
279
|
v_11 = self.limit - self.cursor
|
438
280
|
try:
|
439
281
|
self.ket = self.cursor
|
440
|
-
if not self.eq_s_b(u"
|
282
|
+
if not self.eq_s_b(u"и"):
|
441
283
|
self.cursor = self.limit - v_11
|
442
284
|
raise lab11()
|
443
285
|
self.bra = self.cursor
|
@@ -455,6 +297,163 @@ class RussianStemmer(BaseStemmer):
|
|
455
297
|
self.cursor = self.limit_backward
|
456
298
|
return True
|
457
299
|
|
300
|
+
a_0 = [
|
301
|
+
Among(u"в", -1, 1),
|
302
|
+
Among(u"ив", 0, 2),
|
303
|
+
Among(u"ыв", 0, 2),
|
304
|
+
Among(u"вши", -1, 1),
|
305
|
+
Among(u"ивши", 3, 2),
|
306
|
+
Among(u"ывши", 3, 2),
|
307
|
+
Among(u"вшись", -1, 1),
|
308
|
+
Among(u"ившись", 6, 2),
|
309
|
+
Among(u"ывшись", 6, 2)
|
310
|
+
]
|
311
|
+
|
312
|
+
a_1 = [
|
313
|
+
Among(u"ее", -1, 1),
|
314
|
+
Among(u"ие", -1, 1),
|
315
|
+
Among(u"ое", -1, 1),
|
316
|
+
Among(u"ые", -1, 1),
|
317
|
+
Among(u"ими", -1, 1),
|
318
|
+
Among(u"ыми", -1, 1),
|
319
|
+
Among(u"ей", -1, 1),
|
320
|
+
Among(u"ий", -1, 1),
|
321
|
+
Among(u"ой", -1, 1),
|
322
|
+
Among(u"ый", -1, 1),
|
323
|
+
Among(u"ем", -1, 1),
|
324
|
+
Among(u"им", -1, 1),
|
325
|
+
Among(u"ом", -1, 1),
|
326
|
+
Among(u"ым", -1, 1),
|
327
|
+
Among(u"его", -1, 1),
|
328
|
+
Among(u"ого", -1, 1),
|
329
|
+
Among(u"ему", -1, 1),
|
330
|
+
Among(u"ому", -1, 1),
|
331
|
+
Among(u"их", -1, 1),
|
332
|
+
Among(u"ых", -1, 1),
|
333
|
+
Among(u"ею", -1, 1),
|
334
|
+
Among(u"ою", -1, 1),
|
335
|
+
Among(u"ую", -1, 1),
|
336
|
+
Among(u"юю", -1, 1),
|
337
|
+
Among(u"ая", -1, 1),
|
338
|
+
Among(u"яя", -1, 1)
|
339
|
+
]
|
340
|
+
|
341
|
+
a_2 = [
|
342
|
+
Among(u"ем", -1, 1),
|
343
|
+
Among(u"нн", -1, 1),
|
344
|
+
Among(u"вш", -1, 1),
|
345
|
+
Among(u"ивш", 2, 2),
|
346
|
+
Among(u"ывш", 2, 2),
|
347
|
+
Among(u"щ", -1, 1),
|
348
|
+
Among(u"ющ", 5, 1),
|
349
|
+
Among(u"ующ", 6, 2)
|
350
|
+
]
|
351
|
+
|
352
|
+
a_3 = [
|
353
|
+
Among(u"сь", -1, 1),
|
354
|
+
Among(u"ся", -1, 1)
|
355
|
+
]
|
356
|
+
|
357
|
+
a_4 = [
|
358
|
+
Among(u"ла", -1, 1),
|
359
|
+
Among(u"ила", 0, 2),
|
360
|
+
Among(u"ыла", 0, 2),
|
361
|
+
Among(u"на", -1, 1),
|
362
|
+
Among(u"ена", 3, 2),
|
363
|
+
Among(u"ете", -1, 1),
|
364
|
+
Among(u"ите", -1, 2),
|
365
|
+
Among(u"йте", -1, 1),
|
366
|
+
Among(u"ейте", 7, 2),
|
367
|
+
Among(u"уйте", 7, 2),
|
368
|
+
Among(u"ли", -1, 1),
|
369
|
+
Among(u"или", 10, 2),
|
370
|
+
Among(u"ыли", 10, 2),
|
371
|
+
Among(u"й", -1, 1),
|
372
|
+
Among(u"ей", 13, 2),
|
373
|
+
Among(u"уй", 13, 2),
|
374
|
+
Among(u"л", -1, 1),
|
375
|
+
Among(u"ил", 16, 2),
|
376
|
+
Among(u"ыл", 16, 2),
|
377
|
+
Among(u"ем", -1, 1),
|
378
|
+
Among(u"им", -1, 2),
|
379
|
+
Among(u"ым", -1, 2),
|
380
|
+
Among(u"н", -1, 1),
|
381
|
+
Among(u"ен", 22, 2),
|
382
|
+
Among(u"ло", -1, 1),
|
383
|
+
Among(u"ило", 24, 2),
|
384
|
+
Among(u"ыло", 24, 2),
|
385
|
+
Among(u"но", -1, 1),
|
386
|
+
Among(u"ено", 27, 2),
|
387
|
+
Among(u"нно", 27, 1),
|
388
|
+
Among(u"ет", -1, 1),
|
389
|
+
Among(u"ует", 30, 2),
|
390
|
+
Among(u"ит", -1, 2),
|
391
|
+
Among(u"ыт", -1, 2),
|
392
|
+
Among(u"ют", -1, 1),
|
393
|
+
Among(u"уют", 34, 2),
|
394
|
+
Among(u"ят", -1, 2),
|
395
|
+
Among(u"ны", -1, 1),
|
396
|
+
Among(u"ены", 37, 2),
|
397
|
+
Among(u"ть", -1, 1),
|
398
|
+
Among(u"ить", 39, 2),
|
399
|
+
Among(u"ыть", 39, 2),
|
400
|
+
Among(u"ешь", -1, 1),
|
401
|
+
Among(u"ишь", -1, 2),
|
402
|
+
Among(u"ю", -1, 2),
|
403
|
+
Among(u"ую", 44, 2)
|
404
|
+
]
|
405
|
+
|
406
|
+
a_5 = [
|
407
|
+
Among(u"а", -1, 1),
|
408
|
+
Among(u"ев", -1, 1),
|
409
|
+
Among(u"ов", -1, 1),
|
410
|
+
Among(u"е", -1, 1),
|
411
|
+
Among(u"ие", 3, 1),
|
412
|
+
Among(u"ье", 3, 1),
|
413
|
+
Among(u"и", -1, 1),
|
414
|
+
Among(u"еи", 6, 1),
|
415
|
+
Among(u"ии", 6, 1),
|
416
|
+
Among(u"ами", 6, 1),
|
417
|
+
Among(u"ями", 6, 1),
|
418
|
+
Among(u"иями", 10, 1),
|
419
|
+
Among(u"й", -1, 1),
|
420
|
+
Among(u"ей", 12, 1),
|
421
|
+
Among(u"ией", 13, 1),
|
422
|
+
Among(u"ий", 12, 1),
|
423
|
+
Among(u"ой", 12, 1),
|
424
|
+
Among(u"ам", -1, 1),
|
425
|
+
Among(u"ем", -1, 1),
|
426
|
+
Among(u"ием", 18, 1),
|
427
|
+
Among(u"ом", -1, 1),
|
428
|
+
Among(u"ям", -1, 1),
|
429
|
+
Among(u"иям", 21, 1),
|
430
|
+
Among(u"о", -1, 1),
|
431
|
+
Among(u"у", -1, 1),
|
432
|
+
Among(u"ах", -1, 1),
|
433
|
+
Among(u"ях", -1, 1),
|
434
|
+
Among(u"иях", 26, 1),
|
435
|
+
Among(u"ы", -1, 1),
|
436
|
+
Among(u"ь", -1, 1),
|
437
|
+
Among(u"ю", -1, 1),
|
438
|
+
Among(u"ию", 30, 1),
|
439
|
+
Among(u"ью", 30, 1),
|
440
|
+
Among(u"я", -1, 1),
|
441
|
+
Among(u"ия", 33, 1),
|
442
|
+
Among(u"ья", 33, 1)
|
443
|
+
]
|
444
|
+
|
445
|
+
a_6 = [
|
446
|
+
Among(u"ост", -1, 1),
|
447
|
+
Among(u"ость", -1, 1)
|
448
|
+
]
|
449
|
+
|
450
|
+
a_7 = [
|
451
|
+
Among(u"ейше", -1, 1),
|
452
|
+
Among(u"н", -1, 2),
|
453
|
+
Among(u"ейш", -1, 1),
|
454
|
+
Among(u"ь", -1, 3)
|
455
|
+
]
|
456
|
+
|
458
457
|
|
459
458
|
class lab0(BaseException): pass
|
460
459
|
|