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.
Files changed (388) hide show
  1. py2docfx/convert_prepare/environment.py +1 -3
  2. py2docfx/convert_prepare/get_source.py +1 -6
  3. py2docfx/convert_prepare/package_info.py +1 -1
  4. py2docfx/docfx_yaml/miss_reference.py +1 -1
  5. py2docfx/docfx_yaml/parameter_utils.py +58 -6
  6. py2docfx/docfx_yaml/tests/roots/test-translator-typing/code_with_typing.py +14 -0
  7. py2docfx/docfx_yaml/tests/roots/test-translator-typing/conf.py +18 -0
  8. py2docfx/docfx_yaml/tests/test_translator_typing.py +39 -0
  9. py2docfx/docfx_yaml/utils.py +2 -2
  10. py2docfx/venv/basevenv/Lib/site-packages/certifi/__init__.py +1 -1
  11. py2docfx/venv/basevenv/Lib/site-packages/certifi/core.py +1 -32
  12. py2docfx/venv/basevenv/Lib/site-packages/charset_normalizer/cli/__main__.py +62 -2
  13. py2docfx/venv/basevenv/Lib/site-packages/charset_normalizer/constant.py +17 -0
  14. py2docfx/venv/basevenv/Lib/site-packages/charset_normalizer/legacy.py +1 -3
  15. py2docfx/venv/basevenv/Lib/site-packages/charset_normalizer/md.py +19 -14
  16. py2docfx/venv/basevenv/Lib/site-packages/charset_normalizer/utils.py +6 -0
  17. py2docfx/venv/basevenv/Lib/site-packages/charset_normalizer/version.py +1 -1
  18. py2docfx/venv/basevenv/Lib/site-packages/packaging/__init__.py +1 -1
  19. py2docfx/venv/basevenv/Lib/site-packages/packaging/_elffile.py +1 -2
  20. py2docfx/venv/basevenv/Lib/site-packages/packaging/_manylinux.py +1 -2
  21. py2docfx/venv/basevenv/Lib/site-packages/packaging/_parser.py +1 -2
  22. py2docfx/venv/basevenv/Lib/site-packages/packaging/_tokenizer.py +5 -4
  23. py2docfx/venv/basevenv/Lib/site-packages/packaging/licenses/__init__.py +1 -1
  24. py2docfx/venv/basevenv/Lib/site-packages/packaging/markers.py +53 -22
  25. py2docfx/venv/basevenv/Lib/site-packages/packaging/metadata.py +1 -2
  26. py2docfx/venv/basevenv/Lib/site-packages/packaging/specifiers.py +1 -2
  27. py2docfx/venv/basevenv/Lib/site-packages/packaging/tags.py +39 -0
  28. py2docfx/venv/basevenv/Lib/site-packages/pkg_resources/__init__.py +6 -7
  29. py2docfx/venv/basevenv/Lib/site-packages/pygments/__init__.py +1 -1
  30. py2docfx/venv/basevenv/Lib/site-packages/pygments/lexers/_sql_builtins.py +106 -0
  31. py2docfx/venv/basevenv/Lib/site-packages/pygments/lexers/scripting.py +5 -3
  32. py2docfx/venv/basevenv/Lib/site-packages/pygments/lexers/sql.py +24 -118
  33. py2docfx/venv/basevenv/Lib/site-packages/requests/__version__.py +2 -2
  34. py2docfx/venv/basevenv/Lib/site-packages/requests/compat.py +12 -0
  35. py2docfx/venv/basevenv/Lib/site-packages/requests/models.py +3 -1
  36. py2docfx/venv/basevenv/Lib/site-packages/requests/utils.py +6 -16
  37. py2docfx/venv/basevenv/Lib/site-packages/setuptools/__init__.py +0 -38
  38. py2docfx/venv/basevenv/Lib/site-packages/setuptools/_discovery.py +33 -0
  39. py2docfx/venv/basevenv/Lib/site-packages/setuptools/_distutils/command/build_scripts.py +1 -1
  40. py2docfx/venv/basevenv/Lib/site-packages/setuptools/_distutils/command/config.py +0 -2
  41. py2docfx/venv/basevenv/Lib/site-packages/setuptools/_distutils/compilers/C/tests/test_unix.py +63 -0
  42. py2docfx/venv/basevenv/Lib/site-packages/setuptools/_distutils/compilers/C/unix.py +5 -6
  43. py2docfx/venv/basevenv/Lib/site-packages/setuptools/_entry_points.py +4 -0
  44. py2docfx/venv/basevenv/Lib/site-packages/setuptools/_normalization.py +0 -2
  45. py2docfx/venv/basevenv/Lib/site-packages/setuptools/_path.py +12 -3
  46. py2docfx/venv/basevenv/Lib/site-packages/setuptools/_reqs.py +1 -1
  47. py2docfx/venv/basevenv/Lib/site-packages/setuptools/_scripts.py +361 -0
  48. py2docfx/venv/basevenv/Lib/site-packages/setuptools/_shutil.py +6 -0
  49. py2docfx/venv/basevenv/Lib/site-packages/setuptools/build_meta.py +25 -37
  50. py2docfx/venv/basevenv/Lib/site-packages/setuptools/command/bdist_egg.py +9 -11
  51. py2docfx/venv/basevenv/Lib/site-packages/setuptools/command/bdist_wheel.py +1 -1
  52. py2docfx/venv/basevenv/Lib/site-packages/setuptools/command/build_ext.py +29 -28
  53. py2docfx/venv/basevenv/Lib/site-packages/setuptools/command/develop.py +39 -179
  54. py2docfx/venv/basevenv/Lib/site-packages/setuptools/command/easy_install.py +17 -2352
  55. py2docfx/venv/basevenv/Lib/site-packages/setuptools/command/editable_wheel.py +14 -31
  56. py2docfx/venv/basevenv/Lib/site-packages/setuptools/command/egg_info.py +0 -2
  57. py2docfx/venv/basevenv/Lib/site-packages/setuptools/command/install.py +3 -55
  58. py2docfx/venv/basevenv/Lib/site-packages/setuptools/command/install_scripts.py +5 -11
  59. py2docfx/venv/basevenv/Lib/site-packages/setuptools/command/sdist.py +1 -1
  60. py2docfx/venv/basevenv/Lib/site-packages/setuptools/compat/py310.py +11 -0
  61. py2docfx/venv/basevenv/Lib/site-packages/setuptools/dist.py +10 -12
  62. py2docfx/venv/basevenv/Lib/site-packages/setuptools/installer.py +34 -29
  63. py2docfx/venv/basevenv/Lib/site-packages/setuptools/tests/contexts.py +0 -14
  64. py2docfx/venv/basevenv/Lib/site-packages/setuptools/tests/fixtures.py +235 -0
  65. py2docfx/venv/basevenv/Lib/site-packages/setuptools/tests/integration/test_pbr.py +20 -0
  66. py2docfx/venv/basevenv/Lib/site-packages/setuptools/tests/test_build_meta.py +0 -24
  67. py2docfx/venv/basevenv/Lib/site-packages/setuptools/tests/test_develop.py +1 -64
  68. py2docfx/venv/basevenv/Lib/site-packages/setuptools/tests/test_dist.py +2 -2
  69. py2docfx/venv/basevenv/Lib/site-packages/setuptools/tests/test_dist_info.py +0 -63
  70. py2docfx/venv/basevenv/Lib/site-packages/setuptools/tests/test_editable_install.py +15 -41
  71. py2docfx/venv/basevenv/Lib/site-packages/setuptools/tests/test_egg_info.py +3 -2
  72. py2docfx/venv/basevenv/Lib/site-packages/setuptools/tests/test_scripts.py +12 -0
  73. py2docfx/venv/basevenv/Lib/site-packages/setuptools/tests/test_wheel.py +12 -36
  74. py2docfx/venv/basevenv/Lib/site-packages/setuptools/tests/test_windows_wrappers.py +3 -4
  75. py2docfx/venv/basevenv/Lib/site-packages/setuptools/wheel.py +49 -24
  76. py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/__init__.py +6 -0
  77. py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/arabic_stemmer.py +798 -797
  78. py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/armenian_stemmer.py +212 -213
  79. py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/basestemmer.py +20 -54
  80. py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/basque_stemmer.py +202 -228
  81. py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/catalan_stemmer.py +370 -375
  82. py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/danish_stemmer.py +63 -61
  83. py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/dutch_porter_stemmer.py +466 -0
  84. py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/dutch_stemmer.py +1217 -343
  85. py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/english_stemmer.py +295 -264
  86. py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/esperanto_stemmer.py +588 -0
  87. py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/estonian_stemmer.py +850 -0
  88. py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/finnish_stemmer.py +144 -143
  89. py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/french_stemmer.py +308 -246
  90. py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/german_stemmer.py +224 -167
  91. py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/greek_stemmer.py +1314 -1313
  92. py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/hindi_stemmer.py +39 -38
  93. py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/hungarian_stemmer.py +231 -256
  94. py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/indonesian_stemmer.py +61 -64
  95. py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/irish_stemmer.py +101 -106
  96. py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/italian_stemmer.py +272 -272
  97. py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/lithuanian_stemmer.py +233 -240
  98. py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/nepali_stemmer.py +108 -134
  99. py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/norwegian_stemmer.py +108 -63
  100. py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/porter_stemmer.py +101 -108
  101. py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/portuguese_stemmer.py +241 -250
  102. py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/romanian_stemmer.py +332 -296
  103. py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/russian_stemmer.py +178 -179
  104. py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/serbian_stemmer.py +2331 -2332
  105. py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/spanish_stemmer.py +254 -259
  106. py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/swedish_stemmer.py +143 -70
  107. py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/tamil_stemmer.py +638 -1491
  108. py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/turkish_stemmer.py +326 -292
  109. py2docfx/venv/basevenv/Lib/site-packages/snowballstemmer/yiddish_stemmer.py +245 -246
  110. py2docfx/venv/basevenv/Lib/site-packages/urllib3/_version.py +2 -2
  111. py2docfx/venv/basevenv/Lib/site-packages/urllib3/connection.py +87 -38
  112. py2docfx/venv/basevenv/Lib/site-packages/urllib3/contrib/emscripten/fetch.py +20 -0
  113. py2docfx/venv/basevenv/Lib/site-packages/urllib3/poolmanager.py +17 -1
  114. py2docfx/venv/basevenv/Lib/site-packages/urllib3/response.py +53 -24
  115. py2docfx/venv/basevenv/Lib/site-packages/urllib3/util/request.py +12 -4
  116. py2docfx/venv/basevenv/Lib/site-packages/urllib3/util/ssl_.py +1 -1
  117. py2docfx/venv/venv1/Lib/site-packages/azure/core/_version.py +1 -1
  118. py2docfx/venv/venv1/Lib/site-packages/azure/core/pipeline/_base_async.py +1 -1
  119. py2docfx/venv/venv1/Lib/site-packages/azure/core/pipeline/transport/_aiohttp.py +1 -1
  120. py2docfx/venv/venv1/Lib/site-packages/azure/core/pipeline/transport/_base_async.py +2 -1
  121. py2docfx/venv/venv1/Lib/site-packages/azure/core/pipeline/transport/_requests_asyncio.py +1 -1
  122. py2docfx/venv/venv1/Lib/site-packages/azure/core/rest/_aiohttp.py +2 -2
  123. py2docfx/venv/venv1/Lib/site-packages/azure/core/rest/_requests_asyncio.py +1 -1
  124. py2docfx/venv/venv1/Lib/site-packages/azure/core/tracing/opentelemetry.py +13 -1
  125. py2docfx/venv/venv1/Lib/site-packages/azure/core/utils/_pipeline_transport_rest_shared_async.py +2 -1
  126. py2docfx/venv/venv1/Lib/site-packages/azure/core/utils/_utils.py +1 -1
  127. py2docfx/venv/venv1/Lib/site-packages/azure/identity/_constants.py +1 -0
  128. py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/default.py +23 -2
  129. py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/environment.py +12 -16
  130. py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/service_fabric.py +22 -1
  131. py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/user_password.py +10 -6
  132. py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/vscode.py +13 -4
  133. py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/auth_code_redirect_handler.py +3 -5
  134. py2docfx/venv/venv1/Lib/site-packages/azure/identity/_internal/msal_client.py +2 -1
  135. py2docfx/venv/venv1/Lib/site-packages/azure/identity/_persistent_cache.py +3 -2
  136. py2docfx/venv/venv1/Lib/site-packages/azure/identity/_version.py +1 -1
  137. py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/azd_cli.py +1 -1
  138. py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/azure_cli.py +1 -1
  139. py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/azure_powershell.py +1 -1
  140. py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/chained.py +1 -1
  141. py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/default.py +22 -2
  142. py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/environment.py +2 -2
  143. py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/service_fabric.py +17 -1
  144. py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/vscode.py +4 -4
  145. py2docfx/venv/venv1/Lib/site-packages/certifi/__init__.py +1 -1
  146. py2docfx/venv/venv1/Lib/site-packages/certifi/core.py +1 -32
  147. py2docfx/venv/venv1/Lib/site-packages/charset_normalizer/cli/__main__.py +62 -2
  148. py2docfx/venv/venv1/Lib/site-packages/charset_normalizer/constant.py +17 -0
  149. py2docfx/venv/venv1/Lib/site-packages/charset_normalizer/legacy.py +1 -3
  150. py2docfx/venv/venv1/Lib/site-packages/charset_normalizer/md.py +19 -14
  151. py2docfx/venv/venv1/Lib/site-packages/charset_normalizer/utils.py +6 -0
  152. py2docfx/venv/venv1/Lib/site-packages/charset_normalizer/version.py +1 -1
  153. py2docfx/venv/venv1/Lib/site-packages/cryptography/__about__.py +2 -2
  154. py2docfx/venv/venv1/Lib/site-packages/cryptography/__init__.py +2 -2
  155. py2docfx/venv/venv1/Lib/site-packages/cryptography/fernet.py +2 -1
  156. py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/_oid.py +35 -2
  157. py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/backends/openssl/backend.py +33 -10
  158. py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/bindings/_rust/__init__.pyi +14 -5
  159. py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/bindings/_rust/ocsp.pyi +2 -2
  160. py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/bindings/_rust/openssl/__init__.pyi +3 -0
  161. py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/bindings/_rust/openssl/aead.pyi +49 -45
  162. py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/bindings/_rust/openssl/ciphers.pyi +2 -2
  163. py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/bindings/_rust/openssl/ed25519.pyi +2 -1
  164. py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/bindings/_rust/openssl/ed448.pyi +2 -1
  165. py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/bindings/_rust/openssl/hashes.pyi +10 -1
  166. py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/bindings/_rust/openssl/hmac.pyi +3 -2
  167. py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/bindings/_rust/openssl/kdf.pyi +8 -2
  168. py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/bindings/_rust/openssl/keys.pyi +3 -2
  169. py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/bindings/_rust/openssl/poly1305.pyi +6 -4
  170. py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/bindings/_rust/openssl/x25519.pyi +2 -1
  171. py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/bindings/_rust/openssl/x448.pyi +2 -1
  172. py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/bindings/_rust/pkcs12.pyi +9 -3
  173. py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/bindings/_rust/pkcs7.pyi +7 -6
  174. py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/bindings/_rust/test_support.pyi +2 -1
  175. py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/bindings/_rust/x509.pyi +79 -12
  176. py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/bindings/openssl/_conditional.py +9 -1
  177. py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/bindings/openssl/binding.py +2 -1
  178. py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/decrepit/ciphers/algorithms.py +5 -0
  179. py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/_cipheralgorithm.py +4 -2
  180. py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/_serialization.py +1 -2
  181. py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/asymmetric/dh.py +12 -0
  182. py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/asymmetric/dsa.py +16 -3
  183. py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/asymmetric/ec.py +47 -3
  184. py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/asymmetric/ed25519.py +16 -3
  185. py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/asymmetric/ed448.py +16 -3
  186. py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/asymmetric/rsa.py +14 -0
  187. py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/asymmetric/x25519.py +14 -1
  188. py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/asymmetric/x448.py +14 -1
  189. py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/ciphers/algorithms.py +6 -6
  190. py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/ciphers/base.py +5 -4
  191. py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/ciphers/modes.py +18 -18
  192. py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/hashes.py +5 -1
  193. py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/kdf/concatkdf.py +5 -4
  194. py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/kdf/hkdf.py +4 -4
  195. py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/kdf/kbkdf.py +7 -4
  196. py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/kdf/pbkdf2.py +1 -1
  197. py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/kdf/x963kdf.py +1 -1
  198. py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/padding.py +7 -121
  199. py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/serialization/__init__.py +2 -0
  200. py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/serialization/pkcs12.py +21 -1
  201. py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/serialization/pkcs7.py +48 -6
  202. py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/serialization/ssh.py +68 -18
  203. py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/twofactor/hotp.py +3 -2
  204. py2docfx/venv/venv1/Lib/site-packages/cryptography/hazmat/primitives/twofactor/totp.py +2 -1
  205. py2docfx/venv/venv1/Lib/site-packages/cryptography/utils.py +15 -3
  206. py2docfx/venv/venv1/Lib/site-packages/cryptography/x509/__init__.py +3 -0
  207. py2docfx/venv/venv1/Lib/site-packages/cryptography/x509/base.py +39 -6
  208. py2docfx/venv/venv1/Lib/site-packages/cryptography/x509/extensions.py +100 -49
  209. py2docfx/venv/venv1/Lib/site-packages/cryptography/x509/name.py +27 -15
  210. py2docfx/venv/venv1/Lib/site-packages/cryptography/x509/ocsp.py +60 -25
  211. py2docfx/venv/venv1/Lib/site-packages/cryptography/x509/oid.py +2 -0
  212. py2docfx/venv/venv1/Lib/site-packages/cryptography/x509/verification.py +6 -0
  213. py2docfx/venv/venv1/Lib/site-packages/google/api_core/bidi.py +17 -4
  214. py2docfx/venv/venv1/Lib/site-packages/google/api_core/client_info.py +6 -0
  215. py2docfx/venv/venv1/Lib/site-packages/google/api_core/gapic_v1/client_info.py +1 -0
  216. py2docfx/venv/venv1/Lib/site-packages/google/api_core/retry/retry_base.py +13 -4
  217. py2docfx/venv/venv1/Lib/site-packages/google/api_core/retry/retry_streaming.py +7 -6
  218. py2docfx/venv/venv1/Lib/site-packages/google/api_core/retry/retry_streaming_async.py +8 -5
  219. py2docfx/venv/venv1/Lib/site-packages/google/api_core/retry/retry_unary.py +7 -6
  220. py2docfx/venv/venv1/Lib/site-packages/google/api_core/retry/retry_unary_async.py +7 -6
  221. py2docfx/venv/venv1/Lib/site-packages/google/api_core/version.py +1 -1
  222. py2docfx/venv/venv1/Lib/site-packages/google/auth/_default.py +2 -36
  223. py2docfx/venv/venv1/Lib/site-packages/google/auth/_helpers.py +240 -0
  224. py2docfx/venv/venv1/Lib/site-packages/google/auth/aio/_helpers.py +62 -0
  225. py2docfx/venv/venv1/Lib/site-packages/google/auth/aio/transport/aiohttp.py +6 -0
  226. py2docfx/venv/venv1/Lib/site-packages/google/auth/compute_engine/_metadata.py +5 -1
  227. py2docfx/venv/venv1/Lib/site-packages/google/auth/compute_engine/credentials.py +2 -1
  228. py2docfx/venv/venv1/Lib/site-packages/google/auth/identity_pool.py +91 -2
  229. py2docfx/venv/venv1/Lib/site-packages/google/auth/impersonated_credentials.py +75 -0
  230. py2docfx/venv/venv1/Lib/site-packages/google/auth/transport/__init__.py +1 -0
  231. py2docfx/venv/venv1/Lib/site-packages/google/auth/transport/_aiohttp_requests.py +8 -1
  232. py2docfx/venv/venv1/Lib/site-packages/google/auth/transport/_http_client.py +3 -1
  233. py2docfx/venv/venv1/Lib/site-packages/google/auth/transport/requests.py +4 -1
  234. py2docfx/venv/venv1/Lib/site-packages/google/auth/transport/urllib3.py +15 -5
  235. py2docfx/venv/venv1/Lib/site-packages/google/auth/version.py +1 -1
  236. py2docfx/venv/venv1/Lib/site-packages/google/oauth2/id_token.py +12 -0
  237. py2docfx/venv/venv1/Lib/site-packages/google/oauth2/webauthn_types.py +1 -1
  238. py2docfx/venv/venv1/Lib/site-packages/google/protobuf/__init__.py +1 -1
  239. py2docfx/venv/venv1/Lib/site-packages/google/protobuf/any.py +15 -1
  240. py2docfx/venv/venv1/Lib/site-packages/google/protobuf/any_pb2.py +3 -3
  241. py2docfx/venv/venv1/Lib/site-packages/google/protobuf/api_pb2.py +3 -3
  242. py2docfx/venv/venv1/Lib/site-packages/google/protobuf/compiler/plugin_pb2.py +3 -3
  243. py2docfx/venv/venv1/Lib/site-packages/google/protobuf/descriptor.py +15 -2
  244. py2docfx/venv/venv1/Lib/site-packages/google/protobuf/descriptor_pb2.py +258 -113
  245. py2docfx/venv/venv1/Lib/site-packages/google/protobuf/descriptor_pool.py +22 -8
  246. py2docfx/venv/venv1/Lib/site-packages/google/protobuf/duration_pb2.py +3 -3
  247. py2docfx/venv/venv1/Lib/site-packages/google/protobuf/empty_pb2.py +3 -3
  248. py2docfx/venv/venv1/Lib/site-packages/google/protobuf/field_mask_pb2.py +3 -3
  249. py2docfx/venv/venv1/Lib/site-packages/google/protobuf/internal/decoder.py +106 -23
  250. py2docfx/venv/venv1/Lib/site-packages/google/protobuf/internal/field_mask.py +3 -1
  251. py2docfx/venv/venv1/Lib/site-packages/google/protobuf/internal/python_edition_defaults.py +1 -1
  252. py2docfx/venv/venv1/Lib/site-packages/google/protobuf/internal/python_message.py +21 -18
  253. py2docfx/venv/venv1/Lib/site-packages/google/protobuf/internal/testing_refleaks.py +8 -2
  254. py2docfx/venv/venv1/Lib/site-packages/google/protobuf/internal/well_known_types.py +60 -43
  255. py2docfx/venv/venv1/Lib/site-packages/google/protobuf/json_format.py +4 -5
  256. py2docfx/venv/venv1/Lib/site-packages/google/protobuf/message_factory.py +16 -0
  257. py2docfx/venv/venv1/Lib/site-packages/google/protobuf/runtime_version.py +2 -2
  258. py2docfx/venv/venv1/Lib/site-packages/google/protobuf/source_context_pb2.py +3 -3
  259. py2docfx/venv/venv1/Lib/site-packages/google/protobuf/struct_pb2.py +3 -3
  260. py2docfx/venv/venv1/Lib/site-packages/google/protobuf/text_format.py +11 -7
  261. py2docfx/venv/venv1/Lib/site-packages/google/protobuf/timestamp_pb2.py +3 -3
  262. py2docfx/venv/venv1/Lib/site-packages/google/protobuf/type_pb2.py +3 -3
  263. py2docfx/venv/venv1/Lib/site-packages/google/protobuf/wrappers_pb2.py +3 -3
  264. py2docfx/venv/venv1/Lib/site-packages/google/rpc/error_details_pb2.py +29 -23
  265. py2docfx/venv/venv1/Lib/site-packages/google/rpc/error_details_pb2.pyi +41 -2
  266. py2docfx/venv/venv1/Lib/site-packages/msal/application.py +1 -0
  267. py2docfx/venv/venv1/Lib/site-packages/msal/individual_cache.py +9 -5
  268. py2docfx/venv/venv1/Lib/site-packages/msal/managed_identity.py +4 -5
  269. py2docfx/venv/venv1/Lib/site-packages/msal/sku.py +1 -1
  270. py2docfx/venv/venv1/Lib/site-packages/msal/throttled_http_client.py +58 -30
  271. py2docfx/venv/venv1/Lib/site-packages/opencensus/__init__.py +1 -1
  272. py2docfx/venv/venv1/Lib/site-packages/opencensus/ext/__init__.py +1 -1
  273. py2docfx/venv/venv1/Lib/site-packages/opencensus/ext/azure/__init__.py +1 -1
  274. py2docfx/venv/venv1/Lib/site-packages/opencensus/ext/azure/common/__init__.py +138 -138
  275. py2docfx/venv/venv1/Lib/site-packages/opencensus/ext/azure/common/exporter.py +93 -93
  276. py2docfx/venv/venv1/Lib/site-packages/opencensus/ext/azure/common/processor.py +63 -63
  277. py2docfx/venv/venv1/Lib/site-packages/opencensus/ext/azure/common/protocol.py +206 -206
  278. py2docfx/venv/venv1/Lib/site-packages/opencensus/ext/azure/common/storage.py +205 -205
  279. py2docfx/venv/venv1/Lib/site-packages/opencensus/ext/azure/common/transport.py +355 -355
  280. py2docfx/venv/venv1/Lib/site-packages/opencensus/ext/azure/common/utils.py +79 -79
  281. py2docfx/venv/venv1/Lib/site-packages/opencensus/ext/azure/common/version.py +15 -15
  282. py2docfx/venv/venv1/Lib/site-packages/opencensus/ext/azure/log_exporter/__init__.py +314 -314
  283. py2docfx/venv/venv1/Lib/site-packages/opencensus/ext/azure/metrics_exporter/__init__.py +190 -190
  284. py2docfx/venv/venv1/Lib/site-packages/opencensus/ext/azure/metrics_exporter/standard_metrics/__init__.py +62 -62
  285. py2docfx/venv/venv1/Lib/site-packages/opencensus/ext/azure/metrics_exporter/standard_metrics/cpu.py +50 -50
  286. py2docfx/venv/venv1/Lib/site-packages/opencensus/ext/azure/metrics_exporter/standard_metrics/http_requests.py +176 -176
  287. py2docfx/venv/venv1/Lib/site-packages/opencensus/ext/azure/metrics_exporter/standard_metrics/memory.py +42 -42
  288. py2docfx/venv/venv1/Lib/site-packages/opencensus/ext/azure/metrics_exporter/standard_metrics/process.py +87 -87
  289. py2docfx/venv/venv1/Lib/site-packages/opencensus/ext/azure/statsbeat/__init__.py +1 -1
  290. py2docfx/venv/venv1/Lib/site-packages/opencensus/ext/azure/statsbeat/state.py +50 -50
  291. py2docfx/venv/venv1/Lib/site-packages/opencensus/ext/azure/statsbeat/statsbeat.py +100 -100
  292. py2docfx/venv/venv1/Lib/site-packages/opencensus/ext/azure/statsbeat/statsbeat_metrics.py +480 -480
  293. py2docfx/venv/venv1/Lib/site-packages/opencensus/ext/azure/trace_exporter/__init__.py +236 -236
  294. py2docfx/venv/venv1/Lib/site-packages/packaging/__init__.py +1 -1
  295. py2docfx/venv/venv1/Lib/site-packages/packaging/_elffile.py +1 -2
  296. py2docfx/venv/venv1/Lib/site-packages/packaging/_manylinux.py +1 -2
  297. py2docfx/venv/venv1/Lib/site-packages/packaging/_parser.py +1 -2
  298. py2docfx/venv/venv1/Lib/site-packages/packaging/_tokenizer.py +5 -4
  299. py2docfx/venv/venv1/Lib/site-packages/packaging/licenses/__init__.py +1 -1
  300. py2docfx/venv/venv1/Lib/site-packages/packaging/markers.py +53 -22
  301. py2docfx/venv/venv1/Lib/site-packages/packaging/metadata.py +1 -2
  302. py2docfx/venv/venv1/Lib/site-packages/packaging/specifiers.py +1 -2
  303. py2docfx/venv/venv1/Lib/site-packages/packaging/tags.py +39 -0
  304. py2docfx/venv/venv1/Lib/site-packages/pkg_resources/__init__.py +6 -7
  305. py2docfx/venv/venv1/Lib/site-packages/requests/__version__.py +2 -2
  306. py2docfx/venv/venv1/Lib/site-packages/requests/compat.py +12 -0
  307. py2docfx/venv/venv1/Lib/site-packages/requests/models.py +3 -1
  308. py2docfx/venv/venv1/Lib/site-packages/requests/utils.py +6 -16
  309. py2docfx/venv/venv1/Lib/site-packages/rsa/__init__.py +2 -2
  310. py2docfx/venv/venv1/Lib/site-packages/rsa/asn1.py +52 -52
  311. py2docfx/venv/venv1/Lib/site-packages/rsa/cli.py +321 -321
  312. py2docfx/venv/venv1/Lib/site-packages/rsa/common.py +184 -184
  313. py2docfx/venv/venv1/Lib/site-packages/rsa/core.py +53 -53
  314. py2docfx/venv/venv1/Lib/site-packages/rsa/key.py +858 -858
  315. py2docfx/venv/venv1/Lib/site-packages/rsa/parallel.py +96 -96
  316. py2docfx/venv/venv1/Lib/site-packages/rsa/pem.py +134 -134
  317. py2docfx/venv/venv1/Lib/site-packages/rsa/pkcs1.py +485 -485
  318. py2docfx/venv/venv1/Lib/site-packages/rsa/pkcs1_v2.py +100 -100
  319. py2docfx/venv/venv1/Lib/site-packages/rsa/prime.py +198 -198
  320. py2docfx/venv/venv1/Lib/site-packages/rsa/py.typed +1 -1
  321. py2docfx/venv/venv1/Lib/site-packages/rsa/randnum.py +95 -95
  322. py2docfx/venv/venv1/Lib/site-packages/rsa/transform.py +72 -72
  323. py2docfx/venv/venv1/Lib/site-packages/rsa/util.py +97 -97
  324. py2docfx/venv/venv1/Lib/site-packages/setuptools/__init__.py +0 -38
  325. py2docfx/venv/venv1/Lib/site-packages/setuptools/_discovery.py +33 -0
  326. py2docfx/venv/venv1/Lib/site-packages/setuptools/_distutils/command/build_scripts.py +1 -1
  327. py2docfx/venv/venv1/Lib/site-packages/setuptools/_distutils/command/config.py +0 -2
  328. py2docfx/venv/venv1/Lib/site-packages/setuptools/_distutils/compilers/C/tests/test_unix.py +63 -0
  329. py2docfx/venv/venv1/Lib/site-packages/setuptools/_distutils/compilers/C/unix.py +5 -6
  330. py2docfx/venv/venv1/Lib/site-packages/setuptools/_entry_points.py +4 -0
  331. py2docfx/venv/venv1/Lib/site-packages/setuptools/_normalization.py +0 -2
  332. py2docfx/venv/venv1/Lib/site-packages/setuptools/_path.py +12 -3
  333. py2docfx/venv/venv1/Lib/site-packages/setuptools/_reqs.py +1 -1
  334. py2docfx/venv/venv1/Lib/site-packages/setuptools/_scripts.py +361 -0
  335. py2docfx/venv/venv1/Lib/site-packages/setuptools/_shutil.py +6 -0
  336. py2docfx/venv/venv1/Lib/site-packages/setuptools/build_meta.py +25 -37
  337. py2docfx/venv/venv1/Lib/site-packages/setuptools/command/bdist_egg.py +9 -11
  338. py2docfx/venv/venv1/Lib/site-packages/setuptools/command/bdist_wheel.py +1 -1
  339. py2docfx/venv/venv1/Lib/site-packages/setuptools/command/build_ext.py +29 -28
  340. py2docfx/venv/venv1/Lib/site-packages/setuptools/command/develop.py +39 -179
  341. py2docfx/venv/venv1/Lib/site-packages/setuptools/command/easy_install.py +17 -2352
  342. py2docfx/venv/venv1/Lib/site-packages/setuptools/command/editable_wheel.py +14 -31
  343. py2docfx/venv/venv1/Lib/site-packages/setuptools/command/egg_info.py +0 -2
  344. py2docfx/venv/venv1/Lib/site-packages/setuptools/command/install.py +3 -55
  345. py2docfx/venv/venv1/Lib/site-packages/setuptools/command/install_scripts.py +5 -11
  346. py2docfx/venv/venv1/Lib/site-packages/setuptools/command/sdist.py +1 -1
  347. py2docfx/venv/venv1/Lib/site-packages/setuptools/compat/py310.py +11 -0
  348. py2docfx/venv/venv1/Lib/site-packages/setuptools/dist.py +10 -12
  349. py2docfx/venv/venv1/Lib/site-packages/setuptools/installer.py +34 -29
  350. py2docfx/venv/venv1/Lib/site-packages/setuptools/tests/contexts.py +0 -14
  351. py2docfx/venv/venv1/Lib/site-packages/setuptools/tests/fixtures.py +235 -0
  352. py2docfx/venv/venv1/Lib/site-packages/setuptools/tests/integration/test_pbr.py +20 -0
  353. py2docfx/venv/venv1/Lib/site-packages/setuptools/tests/test_build_meta.py +0 -24
  354. py2docfx/venv/venv1/Lib/site-packages/setuptools/tests/test_develop.py +1 -64
  355. py2docfx/venv/venv1/Lib/site-packages/setuptools/tests/test_dist.py +2 -2
  356. py2docfx/venv/venv1/Lib/site-packages/setuptools/tests/test_dist_info.py +0 -63
  357. py2docfx/venv/venv1/Lib/site-packages/setuptools/tests/test_editable_install.py +15 -41
  358. py2docfx/venv/venv1/Lib/site-packages/setuptools/tests/test_egg_info.py +3 -2
  359. py2docfx/venv/venv1/Lib/site-packages/setuptools/tests/test_scripts.py +12 -0
  360. py2docfx/venv/venv1/Lib/site-packages/setuptools/tests/test_wheel.py +12 -36
  361. py2docfx/venv/venv1/Lib/site-packages/setuptools/tests/test_windows_wrappers.py +3 -4
  362. py2docfx/venv/venv1/Lib/site-packages/setuptools/wheel.py +49 -24
  363. py2docfx/venv/venv1/Lib/site-packages/typing_extensions.py +357 -703
  364. py2docfx/venv/venv1/Lib/site-packages/urllib3/_version.py +2 -2
  365. py2docfx/venv/venv1/Lib/site-packages/urllib3/connection.py +87 -38
  366. py2docfx/venv/venv1/Lib/site-packages/urllib3/contrib/emscripten/fetch.py +20 -0
  367. py2docfx/venv/venv1/Lib/site-packages/urllib3/poolmanager.py +17 -1
  368. py2docfx/venv/venv1/Lib/site-packages/urllib3/response.py +53 -24
  369. py2docfx/venv/venv1/Lib/site-packages/urllib3/util/request.py +12 -4
  370. py2docfx/venv/venv1/Lib/site-packages/urllib3/util/ssl_.py +1 -1
  371. {py2docfx-0.1.16.dev2064350.dist-info → py2docfx-0.1.17.dist-info}/METADATA +1 -1
  372. {py2docfx-0.1.16.dev2064350.dist-info → py2docfx-0.1.17.dist-info}/RECORD +374 -372
  373. {py2docfx-0.1.16.dev2064350.dist-info → py2docfx-0.1.17.dist-info}/WHEEL +1 -1
  374. py2docfx/venv/basevenv/Lib/site-packages/setuptools/package_index.py +0 -1137
  375. py2docfx/venv/basevenv/Lib/site-packages/setuptools/sandbox.py +0 -536
  376. py2docfx/venv/basevenv/Lib/site-packages/setuptools/tests/server.py +0 -86
  377. py2docfx/venv/basevenv/Lib/site-packages/setuptools/tests/test_easy_install.py +0 -1476
  378. py2docfx/venv/basevenv/Lib/site-packages/setuptools/tests/test_packageindex.py +0 -267
  379. py2docfx/venv/basevenv/Lib/site-packages/setuptools/tests/test_sandbox.py +0 -134
  380. py2docfx/venv/venv1/Lib/site-packages/azure/identity/_credentials/application.py +0 -119
  381. py2docfx/venv/venv1/Lib/site-packages/azure/identity/aio/_credentials/application.py +0 -121
  382. py2docfx/venv/venv1/Lib/site-packages/setuptools/package_index.py +0 -1137
  383. py2docfx/venv/venv1/Lib/site-packages/setuptools/sandbox.py +0 -536
  384. py2docfx/venv/venv1/Lib/site-packages/setuptools/tests/server.py +0 -86
  385. py2docfx/venv/venv1/Lib/site-packages/setuptools/tests/test_easy_install.py +0 -1476
  386. py2docfx/venv/venv1/Lib/site-packages/setuptools/tests/test_packageindex.py +0 -267
  387. py2docfx/venv/venv1/Lib/site-packages/setuptools/tests/test_sandbox.py +0 -134
  388. {py2docfx-0.1.16.dev2064350.dist-info → py2docfx-0.1.17.dist-info}/top_level.txt +0 -0
@@ -1,4 +1,5 @@
1
- # Generated by Snowball 2.2.0 - https://snowballstem.org/
1
+ #-*- coding: utf-8 -*-
2
+ # Generated from spanish.sbl by Snowball 3.0.1 - https://snowballstem.org/
2
3
 
3
4
  from .basestemmer import BaseStemmer
4
5
  from .among import Among
@@ -7,242 +8,10 @@ from .among import Among
7
8
  class SpanishStemmer(BaseStemmer):
8
9
  '''
9
10
  This class implements the stemming algorithm defined by a snowball script.
10
- Generated by Snowball 2.2.0 - https://snowballstem.org/
11
+ Generated from spanish.sbl by Snowball 3.0.1 - https://snowballstem.org/
11
12
  '''
12
13
 
13
- a_0 = [
14
- Among(u"", -1, 6),
15
- Among(u"\u00E1", 0, 1),
16
- Among(u"\u00E9", 0, 2),
17
- Among(u"\u00ED", 0, 3),
18
- Among(u"\u00F3", 0, 4),
19
- Among(u"\u00FA", 0, 5)
20
- ]
21
-
22
- a_1 = [
23
- Among(u"la", -1, -1),
24
- Among(u"sela", 0, -1),
25
- Among(u"le", -1, -1),
26
- Among(u"me", -1, -1),
27
- Among(u"se", -1, -1),
28
- Among(u"lo", -1, -1),
29
- Among(u"selo", 5, -1),
30
- Among(u"las", -1, -1),
31
- Among(u"selas", 7, -1),
32
- Among(u"les", -1, -1),
33
- Among(u"los", -1, -1),
34
- Among(u"selos", 10, -1),
35
- Among(u"nos", -1, -1)
36
- ]
37
-
38
- a_2 = [
39
- Among(u"ando", -1, 6),
40
- Among(u"iendo", -1, 6),
41
- Among(u"yendo", -1, 7),
42
- Among(u"\u00E1ndo", -1, 2),
43
- Among(u"i\u00E9ndo", -1, 1),
44
- Among(u"ar", -1, 6),
45
- Among(u"er", -1, 6),
46
- Among(u"ir", -1, 6),
47
- Among(u"\u00E1r", -1, 3),
48
- Among(u"\u00E9r", -1, 4),
49
- Among(u"\u00EDr", -1, 5)
50
- ]
51
-
52
- a_3 = [
53
- Among(u"ic", -1, -1),
54
- Among(u"ad", -1, -1),
55
- Among(u"os", -1, -1),
56
- Among(u"iv", -1, 1)
57
- ]
58
-
59
- a_4 = [
60
- Among(u"able", -1, 1),
61
- Among(u"ible", -1, 1),
62
- Among(u"ante", -1, 1)
63
- ]
64
-
65
- a_5 = [
66
- Among(u"ic", -1, 1),
67
- Among(u"abil", -1, 1),
68
- Among(u"iv", -1, 1)
69
- ]
70
-
71
- a_6 = [
72
- Among(u"ica", -1, 1),
73
- Among(u"ancia", -1, 2),
74
- Among(u"encia", -1, 5),
75
- Among(u"adora", -1, 2),
76
- Among(u"osa", -1, 1),
77
- Among(u"ista", -1, 1),
78
- Among(u"iva", -1, 9),
79
- Among(u"anza", -1, 1),
80
- Among(u"log\u00EDa", -1, 3),
81
- Among(u"idad", -1, 8),
82
- Among(u"able", -1, 1),
83
- Among(u"ible", -1, 1),
84
- Among(u"ante", -1, 2),
85
- Among(u"mente", -1, 7),
86
- Among(u"amente", 13, 6),
87
- Among(u"aci\u00F3n", -1, 2),
88
- Among(u"uci\u00F3n", -1, 4),
89
- Among(u"ico", -1, 1),
90
- Among(u"ismo", -1, 1),
91
- Among(u"oso", -1, 1),
92
- Among(u"amiento", -1, 1),
93
- Among(u"imiento", -1, 1),
94
- Among(u"ivo", -1, 9),
95
- Among(u"ador", -1, 2),
96
- Among(u"icas", -1, 1),
97
- Among(u"ancias", -1, 2),
98
- Among(u"encias", -1, 5),
99
- Among(u"adoras", -1, 2),
100
- Among(u"osas", -1, 1),
101
- Among(u"istas", -1, 1),
102
- Among(u"ivas", -1, 9),
103
- Among(u"anzas", -1, 1),
104
- Among(u"log\u00EDas", -1, 3),
105
- Among(u"idades", -1, 8),
106
- Among(u"ables", -1, 1),
107
- Among(u"ibles", -1, 1),
108
- Among(u"aciones", -1, 2),
109
- Among(u"uciones", -1, 4),
110
- Among(u"adores", -1, 2),
111
- Among(u"antes", -1, 2),
112
- Among(u"icos", -1, 1),
113
- Among(u"ismos", -1, 1),
114
- Among(u"osos", -1, 1),
115
- Among(u"amientos", -1, 1),
116
- Among(u"imientos", -1, 1),
117
- Among(u"ivos", -1, 9)
118
- ]
119
-
120
- a_7 = [
121
- Among(u"ya", -1, 1),
122
- Among(u"ye", -1, 1),
123
- Among(u"yan", -1, 1),
124
- Among(u"yen", -1, 1),
125
- Among(u"yeron", -1, 1),
126
- Among(u"yendo", -1, 1),
127
- Among(u"yo", -1, 1),
128
- Among(u"yas", -1, 1),
129
- Among(u"yes", -1, 1),
130
- Among(u"yais", -1, 1),
131
- Among(u"yamos", -1, 1),
132
- Among(u"y\u00F3", -1, 1)
133
- ]
134
-
135
- a_8 = [
136
- Among(u"aba", -1, 2),
137
- Among(u"ada", -1, 2),
138
- Among(u"ida", -1, 2),
139
- Among(u"ara", -1, 2),
140
- Among(u"iera", -1, 2),
141
- Among(u"\u00EDa", -1, 2),
142
- Among(u"ar\u00EDa", 5, 2),
143
- Among(u"er\u00EDa", 5, 2),
144
- Among(u"ir\u00EDa", 5, 2),
145
- Among(u"ad", -1, 2),
146
- Among(u"ed", -1, 2),
147
- Among(u"id", -1, 2),
148
- Among(u"ase", -1, 2),
149
- Among(u"iese", -1, 2),
150
- Among(u"aste", -1, 2),
151
- Among(u"iste", -1, 2),
152
- Among(u"an", -1, 2),
153
- Among(u"aban", 16, 2),
154
- Among(u"aran", 16, 2),
155
- Among(u"ieran", 16, 2),
156
- Among(u"\u00EDan", 16, 2),
157
- Among(u"ar\u00EDan", 20, 2),
158
- Among(u"er\u00EDan", 20, 2),
159
- Among(u"ir\u00EDan", 20, 2),
160
- Among(u"en", -1, 1),
161
- Among(u"asen", 24, 2),
162
- Among(u"iesen", 24, 2),
163
- Among(u"aron", -1, 2),
164
- Among(u"ieron", -1, 2),
165
- Among(u"ar\u00E1n", -1, 2),
166
- Among(u"er\u00E1n", -1, 2),
167
- Among(u"ir\u00E1n", -1, 2),
168
- Among(u"ado", -1, 2),
169
- Among(u"ido", -1, 2),
170
- Among(u"ando", -1, 2),
171
- Among(u"iendo", -1, 2),
172
- Among(u"ar", -1, 2),
173
- Among(u"er", -1, 2),
174
- Among(u"ir", -1, 2),
175
- Among(u"as", -1, 2),
176
- Among(u"abas", 39, 2),
177
- Among(u"adas", 39, 2),
178
- Among(u"idas", 39, 2),
179
- Among(u"aras", 39, 2),
180
- Among(u"ieras", 39, 2),
181
- Among(u"\u00EDas", 39, 2),
182
- Among(u"ar\u00EDas", 45, 2),
183
- Among(u"er\u00EDas", 45, 2),
184
- Among(u"ir\u00EDas", 45, 2),
185
- Among(u"es", -1, 1),
186
- Among(u"ases", 49, 2),
187
- Among(u"ieses", 49, 2),
188
- Among(u"abais", -1, 2),
189
- Among(u"arais", -1, 2),
190
- Among(u"ierais", -1, 2),
191
- Among(u"\u00EDais", -1, 2),
192
- Among(u"ar\u00EDais", 55, 2),
193
- Among(u"er\u00EDais", 55, 2),
194
- Among(u"ir\u00EDais", 55, 2),
195
- Among(u"aseis", -1, 2),
196
- Among(u"ieseis", -1, 2),
197
- Among(u"asteis", -1, 2),
198
- Among(u"isteis", -1, 2),
199
- Among(u"\u00E1is", -1, 2),
200
- Among(u"\u00E9is", -1, 1),
201
- Among(u"ar\u00E9is", 64, 2),
202
- Among(u"er\u00E9is", 64, 2),
203
- Among(u"ir\u00E9is", 64, 2),
204
- Among(u"ados", -1, 2),
205
- Among(u"idos", -1, 2),
206
- Among(u"amos", -1, 2),
207
- Among(u"\u00E1bamos", 70, 2),
208
- Among(u"\u00E1ramos", 70, 2),
209
- Among(u"i\u00E9ramos", 70, 2),
210
- Among(u"\u00EDamos", 70, 2),
211
- Among(u"ar\u00EDamos", 74, 2),
212
- Among(u"er\u00EDamos", 74, 2),
213
- Among(u"ir\u00EDamos", 74, 2),
214
- Among(u"emos", -1, 1),
215
- Among(u"aremos", 78, 2),
216
- Among(u"eremos", 78, 2),
217
- Among(u"iremos", 78, 2),
218
- Among(u"\u00E1semos", 78, 2),
219
- Among(u"i\u00E9semos", 78, 2),
220
- Among(u"imos", -1, 2),
221
- Among(u"ar\u00E1s", -1, 2),
222
- Among(u"er\u00E1s", -1, 2),
223
- Among(u"ir\u00E1s", -1, 2),
224
- Among(u"\u00EDs", -1, 2),
225
- Among(u"ar\u00E1", -1, 2),
226
- Among(u"er\u00E1", -1, 2),
227
- Among(u"ir\u00E1", -1, 2),
228
- Among(u"ar\u00E9", -1, 2),
229
- Among(u"er\u00E9", -1, 2),
230
- Among(u"ir\u00E9", -1, 2),
231
- Among(u"i\u00F3", -1, 2)
232
- ]
233
-
234
- a_9 = [
235
- Among(u"a", -1, 1),
236
- Among(u"e", -1, 2),
237
- Among(u"o", -1, 1),
238
- Among(u"os", -1, 1),
239
- Among(u"\u00E1", -1, 1),
240
- Among(u"\u00E9", -1, 2),
241
- Among(u"\u00ED", -1, 1),
242
- Among(u"\u00F3", -1, 1)
243
- ]
244
-
245
- g_v = [17, 65, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 17, 4, 10]
14
+ g_v = {u"a", u"e", u"i", u"o", u"u", u"á", u"é", u"í", u"ó", u"ú", u"ü"}
246
15
 
247
16
  I_p2 = 0
248
17
  I_p1 = 0
@@ -257,42 +26,42 @@ class SpanishStemmer(BaseStemmer):
257
26
  try:
258
27
  v_2 = self.cursor
259
28
  try:
260
- if not self.in_grouping(SpanishStemmer.g_v, 97, 252):
29
+ if not self.in_grouping(SpanishStemmer.g_v):
261
30
  raise lab2()
262
31
  try:
263
32
  v_3 = self.cursor
264
33
  try:
265
- if not self.out_grouping(SpanishStemmer.g_v, 97, 252):
34
+ if not self.out_grouping(SpanishStemmer.g_v):
266
35
  raise lab4()
267
- if not self.go_out_grouping(SpanishStemmer.g_v, 97, 252):
36
+ if not self.go_out_grouping(SpanishStemmer.g_v):
268
37
  raise lab4()
269
38
  self.cursor += 1
270
39
  raise lab3()
271
40
  except lab4: pass
272
41
  self.cursor = v_3
273
- if not self.in_grouping(SpanishStemmer.g_v, 97, 252):
42
+ if not self.in_grouping(SpanishStemmer.g_v):
274
43
  raise lab2()
275
- if not self.go_in_grouping(SpanishStemmer.g_v, 97, 252):
44
+ if not self.go_in_grouping(SpanishStemmer.g_v):
276
45
  raise lab2()
277
46
  self.cursor += 1
278
47
  except lab3: pass
279
48
  raise lab1()
280
49
  except lab2: pass
281
50
  self.cursor = v_2
282
- if not self.out_grouping(SpanishStemmer.g_v, 97, 252):
51
+ if not self.out_grouping(SpanishStemmer.g_v):
283
52
  raise lab0()
284
53
  try:
285
54
  v_4 = self.cursor
286
55
  try:
287
- if not self.out_grouping(SpanishStemmer.g_v, 97, 252):
56
+ if not self.out_grouping(SpanishStemmer.g_v):
288
57
  raise lab6()
289
- if not self.go_out_grouping(SpanishStemmer.g_v, 97, 252):
58
+ if not self.go_out_grouping(SpanishStemmer.g_v):
290
59
  raise lab6()
291
60
  self.cursor += 1
292
61
  raise lab5()
293
62
  except lab6: pass
294
63
  self.cursor = v_4
295
- if not self.in_grouping(SpanishStemmer.g_v, 97, 252):
64
+ if not self.in_grouping(SpanishStemmer.g_v):
296
65
  raise lab0()
297
66
  if self.cursor >= self.limit:
298
67
  raise lab0()
@@ -304,17 +73,17 @@ class SpanishStemmer(BaseStemmer):
304
73
  self.cursor = v_1
305
74
  v_5 = self.cursor
306
75
  try:
307
- if not self.go_out_grouping(SpanishStemmer.g_v, 97, 252):
76
+ if not self.go_out_grouping(SpanishStemmer.g_v):
308
77
  raise lab7()
309
78
  self.cursor += 1
310
- if not self.go_in_grouping(SpanishStemmer.g_v, 97, 252):
79
+ if not self.go_in_grouping(SpanishStemmer.g_v):
311
80
  raise lab7()
312
81
  self.cursor += 1
313
82
  self.I_p1 = self.cursor
314
- if not self.go_out_grouping(SpanishStemmer.g_v, 97, 252):
83
+ if not self.go_out_grouping(SpanishStemmer.g_v):
315
84
  raise lab7()
316
85
  self.cursor += 1
317
- if not self.go_in_grouping(SpanishStemmer.g_v, 97, 252):
86
+ if not self.go_in_grouping(SpanishStemmer.g_v):
318
87
  raise lab7()
319
88
  self.cursor += 1
320
89
  self.I_p2 = self.cursor
@@ -328,8 +97,6 @@ class SpanishStemmer(BaseStemmer):
328
97
  try:
329
98
  self.bra = self.cursor
330
99
  among_var = self.find_among(SpanishStemmer.a_0)
331
- if among_var == 0:
332
- raise lab0()
333
100
  self.ket = self.cursor
334
101
  if among_var == 1:
335
102
  if not self.slice_from(u"a"):
@@ -357,19 +124,13 @@ class SpanishStemmer(BaseStemmer):
357
124
  return True
358
125
 
359
126
  def __r_RV(self):
360
- if not self.I_pV <= self.cursor:
361
- return False
362
- return True
127
+ return self.I_pV <= self.cursor
363
128
 
364
129
  def __r_R1(self):
365
- if not self.I_p1 <= self.cursor:
366
- return False
367
- return True
130
+ return self.I_p1 <= self.cursor
368
131
 
369
132
  def __r_R2(self):
370
- if not self.I_p2 <= self.cursor:
371
- return False
372
- return True
133
+ return self.I_p2 <= self.cursor
373
134
 
374
135
  def __r_attached_pronoun(self):
375
136
  self.ket = self.cursor
@@ -683,6 +444,240 @@ class SpanishStemmer(BaseStemmer):
683
444
  self.cursor = v_6
684
445
  return True
685
446
 
447
+ a_0 = [
448
+ Among(u"", -1, 6),
449
+ Among(u"á", 0, 1),
450
+ Among(u"é", 0, 2),
451
+ Among(u"í", 0, 3),
452
+ Among(u"ó", 0, 4),
453
+ Among(u"ú", 0, 5)
454
+ ]
455
+
456
+ a_1 = [
457
+ Among(u"la", -1, -1),
458
+ Among(u"sela", 0, -1),
459
+ Among(u"le", -1, -1),
460
+ Among(u"me", -1, -1),
461
+ Among(u"se", -1, -1),
462
+ Among(u"lo", -1, -1),
463
+ Among(u"selo", 5, -1),
464
+ Among(u"las", -1, -1),
465
+ Among(u"selas", 7, -1),
466
+ Among(u"les", -1, -1),
467
+ Among(u"los", -1, -1),
468
+ Among(u"selos", 10, -1),
469
+ Among(u"nos", -1, -1)
470
+ ]
471
+
472
+ a_2 = [
473
+ Among(u"ando", -1, 6),
474
+ Among(u"iendo", -1, 6),
475
+ Among(u"yendo", -1, 7),
476
+ Among(u"ándo", -1, 2),
477
+ Among(u"iéndo", -1, 1),
478
+ Among(u"ar", -1, 6),
479
+ Among(u"er", -1, 6),
480
+ Among(u"ir", -1, 6),
481
+ Among(u"ár", -1, 3),
482
+ Among(u"ér", -1, 4),
483
+ Among(u"ír", -1, 5)
484
+ ]
485
+
486
+ a_3 = [
487
+ Among(u"ic", -1, -1),
488
+ Among(u"ad", -1, -1),
489
+ Among(u"os", -1, -1),
490
+ Among(u"iv", -1, 1)
491
+ ]
492
+
493
+ a_4 = [
494
+ Among(u"able", -1, 1),
495
+ Among(u"ible", -1, 1),
496
+ Among(u"ante", -1, 1)
497
+ ]
498
+
499
+ a_5 = [
500
+ Among(u"ic", -1, 1),
501
+ Among(u"abil", -1, 1),
502
+ Among(u"iv", -1, 1)
503
+ ]
504
+
505
+ a_6 = [
506
+ Among(u"ica", -1, 1),
507
+ Among(u"ancia", -1, 2),
508
+ Among(u"encia", -1, 5),
509
+ Among(u"adora", -1, 2),
510
+ Among(u"osa", -1, 1),
511
+ Among(u"ista", -1, 1),
512
+ Among(u"iva", -1, 9),
513
+ Among(u"anza", -1, 1),
514
+ Among(u"logía", -1, 3),
515
+ Among(u"idad", -1, 8),
516
+ Among(u"able", -1, 1),
517
+ Among(u"ible", -1, 1),
518
+ Among(u"ante", -1, 2),
519
+ Among(u"mente", -1, 7),
520
+ Among(u"amente", 13, 6),
521
+ Among(u"acion", -1, 2),
522
+ Among(u"ucion", -1, 4),
523
+ Among(u"ación", -1, 2),
524
+ Among(u"ución", -1, 4),
525
+ Among(u"ico", -1, 1),
526
+ Among(u"ismo", -1, 1),
527
+ Among(u"oso", -1, 1),
528
+ Among(u"amiento", -1, 1),
529
+ Among(u"imiento", -1, 1),
530
+ Among(u"ivo", -1, 9),
531
+ Among(u"ador", -1, 2),
532
+ Among(u"icas", -1, 1),
533
+ Among(u"ancias", -1, 2),
534
+ Among(u"encias", -1, 5),
535
+ Among(u"adoras", -1, 2),
536
+ Among(u"osas", -1, 1),
537
+ Among(u"istas", -1, 1),
538
+ Among(u"ivas", -1, 9),
539
+ Among(u"anzas", -1, 1),
540
+ Among(u"logías", -1, 3),
541
+ Among(u"idades", -1, 8),
542
+ Among(u"ables", -1, 1),
543
+ Among(u"ibles", -1, 1),
544
+ Among(u"aciones", -1, 2),
545
+ Among(u"uciones", -1, 4),
546
+ Among(u"adores", -1, 2),
547
+ Among(u"antes", -1, 2),
548
+ Among(u"icos", -1, 1),
549
+ Among(u"ismos", -1, 1),
550
+ Among(u"osos", -1, 1),
551
+ Among(u"amientos", -1, 1),
552
+ Among(u"imientos", -1, 1),
553
+ Among(u"ivos", -1, 9)
554
+ ]
555
+
556
+ a_7 = [
557
+ Among(u"ya", -1, 1),
558
+ Among(u"ye", -1, 1),
559
+ Among(u"yan", -1, 1),
560
+ Among(u"yen", -1, 1),
561
+ Among(u"yeron", -1, 1),
562
+ Among(u"yendo", -1, 1),
563
+ Among(u"yo", -1, 1),
564
+ Among(u"yas", -1, 1),
565
+ Among(u"yes", -1, 1),
566
+ Among(u"yais", -1, 1),
567
+ Among(u"yamos", -1, 1),
568
+ Among(u"yó", -1, 1)
569
+ ]
570
+
571
+ a_8 = [
572
+ Among(u"aba", -1, 2),
573
+ Among(u"ada", -1, 2),
574
+ Among(u"ida", -1, 2),
575
+ Among(u"ara", -1, 2),
576
+ Among(u"iera", -1, 2),
577
+ Among(u"ía", -1, 2),
578
+ Among(u"aría", 5, 2),
579
+ Among(u"ería", 5, 2),
580
+ Among(u"iría", 5, 2),
581
+ Among(u"ad", -1, 2),
582
+ Among(u"ed", -1, 2),
583
+ Among(u"id", -1, 2),
584
+ Among(u"ase", -1, 2),
585
+ Among(u"iese", -1, 2),
586
+ Among(u"aste", -1, 2),
587
+ Among(u"iste", -1, 2),
588
+ Among(u"an", -1, 2),
589
+ Among(u"aban", 16, 2),
590
+ Among(u"aran", 16, 2),
591
+ Among(u"ieran", 16, 2),
592
+ Among(u"ían", 16, 2),
593
+ Among(u"arían", 20, 2),
594
+ Among(u"erían", 20, 2),
595
+ Among(u"irían", 20, 2),
596
+ Among(u"en", -1, 1),
597
+ Among(u"asen", 24, 2),
598
+ Among(u"iesen", 24, 2),
599
+ Among(u"aron", -1, 2),
600
+ Among(u"ieron", -1, 2),
601
+ Among(u"arán", -1, 2),
602
+ Among(u"erán", -1, 2),
603
+ Among(u"irán", -1, 2),
604
+ Among(u"ado", -1, 2),
605
+ Among(u"ido", -1, 2),
606
+ Among(u"ando", -1, 2),
607
+ Among(u"iendo", -1, 2),
608
+ Among(u"ar", -1, 2),
609
+ Among(u"er", -1, 2),
610
+ Among(u"ir", -1, 2),
611
+ Among(u"as", -1, 2),
612
+ Among(u"abas", 39, 2),
613
+ Among(u"adas", 39, 2),
614
+ Among(u"idas", 39, 2),
615
+ Among(u"aras", 39, 2),
616
+ Among(u"ieras", 39, 2),
617
+ Among(u"ías", 39, 2),
618
+ Among(u"arías", 45, 2),
619
+ Among(u"erías", 45, 2),
620
+ Among(u"irías", 45, 2),
621
+ Among(u"es", -1, 1),
622
+ Among(u"ases", 49, 2),
623
+ Among(u"ieses", 49, 2),
624
+ Among(u"abais", -1, 2),
625
+ Among(u"arais", -1, 2),
626
+ Among(u"ierais", -1, 2),
627
+ Among(u"íais", -1, 2),
628
+ Among(u"aríais", 55, 2),
629
+ Among(u"eríais", 55, 2),
630
+ Among(u"iríais", 55, 2),
631
+ Among(u"aseis", -1, 2),
632
+ Among(u"ieseis", -1, 2),
633
+ Among(u"asteis", -1, 2),
634
+ Among(u"isteis", -1, 2),
635
+ Among(u"áis", -1, 2),
636
+ Among(u"éis", -1, 1),
637
+ Among(u"aréis", 64, 2),
638
+ Among(u"eréis", 64, 2),
639
+ Among(u"iréis", 64, 2),
640
+ Among(u"ados", -1, 2),
641
+ Among(u"idos", -1, 2),
642
+ Among(u"amos", -1, 2),
643
+ Among(u"ábamos", 70, 2),
644
+ Among(u"áramos", 70, 2),
645
+ Among(u"iéramos", 70, 2),
646
+ Among(u"íamos", 70, 2),
647
+ Among(u"aríamos", 74, 2),
648
+ Among(u"eríamos", 74, 2),
649
+ Among(u"iríamos", 74, 2),
650
+ Among(u"emos", -1, 1),
651
+ Among(u"aremos", 78, 2),
652
+ Among(u"eremos", 78, 2),
653
+ Among(u"iremos", 78, 2),
654
+ Among(u"ásemos", 78, 2),
655
+ Among(u"iésemos", 78, 2),
656
+ Among(u"imos", -1, 2),
657
+ Among(u"arás", -1, 2),
658
+ Among(u"erás", -1, 2),
659
+ Among(u"irás", -1, 2),
660
+ Among(u"ís", -1, 2),
661
+ Among(u"ará", -1, 2),
662
+ Among(u"erá", -1, 2),
663
+ Among(u"irá", -1, 2),
664
+ Among(u"aré", -1, 2),
665
+ Among(u"eré", -1, 2),
666
+ Among(u"iré", -1, 2),
667
+ Among(u"ió", -1, 2)
668
+ ]
669
+
670
+ a_9 = [
671
+ Among(u"a", -1, 1),
672
+ Among(u"e", -1, 2),
673
+ Among(u"o", -1, 1),
674
+ Among(u"os", -1, 1),
675
+ Among(u"á", -1, 1),
676
+ Among(u"é", -1, 2),
677
+ Among(u"í", -1, 1),
678
+ Among(u"ó", -1, 1)
679
+ ]
680
+
686
681
 
687
682
  class lab0(BaseException): pass
688
683