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 catalan.sbl by Snowball 3.0.1 - https://snowballstem.org/
2
3
 
3
4
  from .basestemmer import BaseStemmer
4
5
  from .among import Among
@@ -7,23 +8,209 @@ from .among import Among
7
8
  class CatalanStemmer(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 catalan.sbl by Snowball 3.0.1 - https://snowballstem.org/
11
12
  '''
12
13
 
14
+ g_v = {u"a", u"e", u"i", u"o", u"u", u"á", u"à", u"é", u"è", u"í", u"ï", u"ó", u"ò", u"ú", u"ü"}
15
+
16
+ I_p2 = 0
17
+ I_p1 = 0
18
+
19
+ def __r_mark_regions(self):
20
+ self.I_p1 = self.limit
21
+ self.I_p2 = self.limit
22
+ v_1 = self.cursor
23
+ try:
24
+ if not self.go_out_grouping(CatalanStemmer.g_v):
25
+ raise lab0()
26
+ self.cursor += 1
27
+ if not self.go_in_grouping(CatalanStemmer.g_v):
28
+ raise lab0()
29
+ self.cursor += 1
30
+ self.I_p1 = self.cursor
31
+ if not self.go_out_grouping(CatalanStemmer.g_v):
32
+ raise lab0()
33
+ self.cursor += 1
34
+ if not self.go_in_grouping(CatalanStemmer.g_v):
35
+ raise lab0()
36
+ self.cursor += 1
37
+ self.I_p2 = self.cursor
38
+ except lab0: pass
39
+ self.cursor = v_1
40
+ return True
41
+
42
+ def __r_cleaning(self):
43
+ while True:
44
+ v_1 = self.cursor
45
+ try:
46
+ self.bra = self.cursor
47
+ among_var = self.find_among(CatalanStemmer.a_0)
48
+ self.ket = self.cursor
49
+ if among_var == 1:
50
+ if not self.slice_from(u"a"):
51
+ return False
52
+ elif among_var == 2:
53
+ if not self.slice_from(u"e"):
54
+ return False
55
+ elif among_var == 3:
56
+ if not self.slice_from(u"i"):
57
+ return False
58
+ elif among_var == 4:
59
+ if not self.slice_from(u"o"):
60
+ return False
61
+ elif among_var == 5:
62
+ if not self.slice_from(u"u"):
63
+ return False
64
+ elif among_var == 6:
65
+ if not self.slice_from(u"."):
66
+ return False
67
+ else:
68
+ if self.cursor >= self.limit:
69
+ raise lab0()
70
+ self.cursor += 1
71
+ continue
72
+ except lab0: pass
73
+ self.cursor = v_1
74
+ break
75
+ return True
76
+
77
+ def __r_R1(self):
78
+ return self.I_p1 <= self.cursor
79
+
80
+ def __r_R2(self):
81
+ return self.I_p2 <= self.cursor
82
+
83
+ def __r_attached_pronoun(self):
84
+ self.ket = self.cursor
85
+ if self.find_among_b(CatalanStemmer.a_1) == 0:
86
+ return False
87
+ self.bra = self.cursor
88
+ if not self.__r_R1():
89
+ return False
90
+ if not self.slice_del():
91
+ return False
92
+
93
+ return True
94
+
95
+ def __r_standard_suffix(self):
96
+ self.ket = self.cursor
97
+ among_var = self.find_among_b(CatalanStemmer.a_2)
98
+ if among_var == 0:
99
+ return False
100
+ self.bra = self.cursor
101
+ if among_var == 1:
102
+ if not self.__r_R1():
103
+ return False
104
+ if not self.slice_del():
105
+ return False
106
+
107
+ elif among_var == 2:
108
+ if not self.__r_R2():
109
+ return False
110
+ if not self.slice_del():
111
+ return False
112
+
113
+ elif among_var == 3:
114
+ if not self.__r_R2():
115
+ return False
116
+ if not self.slice_from(u"log"):
117
+ return False
118
+ elif among_var == 4:
119
+ if not self.__r_R2():
120
+ return False
121
+ if not self.slice_from(u"ic"):
122
+ return False
123
+ else:
124
+ if not self.__r_R1():
125
+ return False
126
+ if not self.slice_from(u"c"):
127
+ return False
128
+ return True
129
+
130
+ def __r_verb_suffix(self):
131
+ self.ket = self.cursor
132
+ among_var = self.find_among_b(CatalanStemmer.a_3)
133
+ if among_var == 0:
134
+ return False
135
+ self.bra = self.cursor
136
+ if among_var == 1:
137
+ if not self.__r_R1():
138
+ return False
139
+ if not self.slice_del():
140
+ return False
141
+
142
+ else:
143
+ if not self.__r_R2():
144
+ return False
145
+ if not self.slice_del():
146
+ return False
147
+
148
+ return True
149
+
150
+ def __r_residual_suffix(self):
151
+ self.ket = self.cursor
152
+ among_var = self.find_among_b(CatalanStemmer.a_4)
153
+ if among_var == 0:
154
+ return False
155
+ self.bra = self.cursor
156
+ if among_var == 1:
157
+ if not self.__r_R1():
158
+ return False
159
+ if not self.slice_del():
160
+ return False
161
+
162
+ else:
163
+ if not self.__r_R1():
164
+ return False
165
+ if not self.slice_from(u"ic"):
166
+ return False
167
+ return True
168
+
169
+ def _stem(self):
170
+ self.__r_mark_regions()
171
+ self.limit_backward = self.cursor
172
+ self.cursor = self.limit
173
+ v_2 = self.limit - self.cursor
174
+ self.__r_attached_pronoun()
175
+ self.cursor = self.limit - v_2
176
+ v_3 = self.limit - self.cursor
177
+ try:
178
+ try:
179
+ v_4 = self.limit - self.cursor
180
+ try:
181
+ if not self.__r_standard_suffix():
182
+ raise lab2()
183
+ raise lab1()
184
+ except lab2: pass
185
+ self.cursor = self.limit - v_4
186
+ if not self.__r_verb_suffix():
187
+ raise lab0()
188
+ except lab1: pass
189
+ except lab0: pass
190
+ self.cursor = self.limit - v_3
191
+ v_5 = self.limit - self.cursor
192
+ self.__r_residual_suffix()
193
+ self.cursor = self.limit - v_5
194
+ self.cursor = self.limit_backward
195
+ v_6 = self.cursor
196
+ self.__r_cleaning()
197
+ self.cursor = v_6
198
+ return True
199
+
13
200
  a_0 = [
14
201
  Among(u"", -1, 7),
15
- Among(u"\u00B7", 0, 6),
16
- Among(u"\u00E0", 0, 1),
17
- Among(u"\u00E1", 0, 1),
18
- Among(u"\u00E8", 0, 2),
19
- Among(u"\u00E9", 0, 2),
20
- Among(u"\u00EC", 0, 3),
21
- Among(u"\u00ED", 0, 3),
22
- Among(u"\u00EF", 0, 3),
23
- Among(u"\u00F2", 0, 4),
24
- Among(u"\u00F3", 0, 4),
25
- Among(u"\u00FA", 0, 5),
26
- Among(u"\u00FC", 0, 5)
202
+ Among(u"·", 0, 6),
203
+ Among(u"à", 0, 1),
204
+ Among(u"á", 0, 1),
205
+ Among(u"è", 0, 2),
206
+ Among(u"é", 0, 2),
207
+ Among(u"ì", 0, 3),
208
+ Among(u"í", 0, 3),
209
+ Among(u"ï", 0, 3),
210
+ Among(u"ò", 0, 4),
211
+ Among(u"ó", 0, 4),
212
+ Among(u"ú", 0, 5),
213
+ Among(u"ü", 0, 5)
27
214
  ]
28
215
 
29
216
  a_1 = [
@@ -70,25 +257,25 @@ class CatalanStemmer(BaseStemmer):
70
257
 
71
258
  a_2 = [
72
259
  Among(u"ica", -1, 4),
73
- Among(u"l\u00F3gica", 0, 3),
260
+ Among(u"lógica", 0, 3),
74
261
  Among(u"enca", -1, 1),
75
262
  Among(u"ada", -1, 2),
76
263
  Among(u"ancia", -1, 1),
77
264
  Among(u"encia", -1, 1),
78
- Among(u"\u00E8ncia", -1, 1),
79
- Among(u"\u00EDcia", -1, 1),
265
+ Among(u"ència", -1, 1),
266
+ Among(u"ícia", -1, 1),
80
267
  Among(u"logia", -1, 3),
81
268
  Among(u"inia", -1, 1),
82
- Among(u"\u00EDinia", 9, 1),
269
+ Among(u"íinia", 9, 1),
83
270
  Among(u"eria", -1, 1),
84
- Among(u"\u00E0ria", -1, 1),
85
- Among(u"at\u00F2ria", -1, 1),
271
+ Among(u"ària", -1, 1),
272
+ Among(u"atòria", -1, 1),
86
273
  Among(u"alla", -1, 1),
87
274
  Among(u"ella", -1, 1),
88
- Among(u"\u00EDvola", -1, 1),
275
+ Among(u"ívola", -1, 1),
89
276
  Among(u"ima", -1, 1),
90
- Among(u"\u00EDssima", 17, 1),
91
- Among(u"qu\u00EDssima", 18, 5),
277
+ Among(u"íssima", 17, 1),
278
+ Among(u"quíssima", 18, 5),
92
279
  Among(u"ana", -1, 1),
93
280
  Among(u"ina", -1, 1),
94
281
  Among(u"era", -1, 1),
@@ -110,10 +297,10 @@ class CatalanStemmer(BaseStemmer):
110
297
  Among(u"ionista", 36, 1),
111
298
  Among(u"iva", -1, 1),
112
299
  Among(u"ativa", 39, 1),
113
- Among(u"n\u00E7a", -1, 1),
114
- Among(u"log\u00EDa", -1, 3),
300
+ Among(u"nça", -1, 1),
301
+ Among(u"logía", -1, 3),
115
302
  Among(u"ic", -1, 4),
116
- Among(u"\u00EDstic", 43, 1),
303
+ Among(u"ístic", 43, 1),
117
304
  Among(u"enc", -1, 1),
118
305
  Among(u"esc", -1, 1),
119
306
  Among(u"ud", -1, 1),
@@ -129,7 +316,7 @@ class CatalanStemmer(BaseStemmer):
129
316
  Among(u"icte", -1, 1),
130
317
  Among(u"iste", -1, 1),
131
318
  Among(u"ici", -1, 1),
132
- Among(u"\u00EDci", -1, 1),
319
+ Among(u"íci", -1, 1),
133
320
  Among(u"logi", -1, 3),
134
321
  Among(u"ari", -1, 1),
135
322
  Among(u"tori", -1, 1),
@@ -137,15 +324,15 @@ class CatalanStemmer(BaseStemmer):
137
324
  Among(u"il", -1, 1),
138
325
  Among(u"all", -1, 1),
139
326
  Among(u"ell", -1, 1),
140
- Among(u"\u00EDvol", -1, 1),
327
+ Among(u"ívol", -1, 1),
141
328
  Among(u"isam", -1, 1),
142
329
  Among(u"issem", -1, 1),
143
- Among(u"\u00ECssem", -1, 1),
144
- Among(u"\u00EDssem", -1, 1),
145
- Among(u"\u00EDssim", -1, 1),
146
- Among(u"qu\u00EDssim", 73, 5),
330
+ Among(u"ìssem", -1, 1),
331
+ Among(u"íssem", -1, 1),
332
+ Among(u"íssim", -1, 1),
333
+ Among(u"quíssim", 73, 5),
147
334
  Among(u"amen", -1, 1),
148
- Among(u"\u00ECssin", -1, 1),
335
+ Among(u"ìssin", -1, 1),
149
336
  Among(u"ar", -1, 1),
150
337
  Among(u"ificar", 77, 1),
151
338
  Among(u"egar", 77, 1),
@@ -158,26 +345,26 @@ class CatalanStemmer(BaseStemmer):
158
345
  Among(u"dur", -1, 1),
159
346
  Among(u"doras", -1, 1),
160
347
  Among(u"ics", -1, 4),
161
- Among(u"l\u00F3gics", 88, 3),
348
+ Among(u"lógics", 88, 3),
162
349
  Among(u"uds", -1, 1),
163
350
  Among(u"nces", -1, 1),
164
351
  Among(u"ades", -1, 2),
165
352
  Among(u"ancies", -1, 1),
166
353
  Among(u"encies", -1, 1),
167
- Among(u"\u00E8ncies", -1, 1),
168
- Among(u"\u00EDcies", -1, 1),
354
+ Among(u"ències", -1, 1),
355
+ Among(u"ícies", -1, 1),
169
356
  Among(u"logies", -1, 3),
170
357
  Among(u"inies", -1, 1),
171
- Among(u"\u00EDnies", -1, 1),
358
+ Among(u"ínies", -1, 1),
172
359
  Among(u"eries", -1, 1),
173
- Among(u"\u00E0ries", -1, 1),
174
- Among(u"at\u00F2ries", -1, 1),
360
+ Among(u"àries", -1, 1),
361
+ Among(u"atòries", -1, 1),
175
362
  Among(u"bles", -1, 1),
176
363
  Among(u"ables", 103, 1),
177
364
  Among(u"ibles", 103, 1),
178
365
  Among(u"imes", -1, 1),
179
- Among(u"\u00EDssimes", 106, 1),
180
- Among(u"qu\u00EDssimes", 107, 5),
366
+ Among(u"íssimes", 106, 1),
367
+ Among(u"quíssimes", 107, 5),
181
368
  Among(u"formes", -1, 1),
182
369
  Among(u"ismes", -1, 1),
183
370
  Among(u"ialismes", 110, 1),
@@ -197,13 +384,13 @@ class CatalanStemmer(BaseStemmer):
197
384
  Among(u"ialistes", 124, 1),
198
385
  Among(u"ionistes", 124, 1),
199
386
  Among(u"iques", -1, 4),
200
- Among(u"l\u00F3giques", 127, 3),
387
+ Among(u"lógiques", 127, 3),
201
388
  Among(u"ives", -1, 1),
202
389
  Among(u"atives", 129, 1),
203
- Among(u"log\u00EDes", -1, 3),
204
- Among(u"alleng\u00FCes", -1, 1),
390
+ Among(u"logíes", -1, 3),
391
+ Among(u"allengües", -1, 1),
205
392
  Among(u"icis", -1, 1),
206
- Among(u"\u00EDcis", -1, 1),
393
+ Among(u"ícis", -1, 1),
207
394
  Among(u"logis", -1, 3),
208
395
  Among(u"aris", -1, 1),
209
396
  Among(u"toris", -1, 1),
@@ -211,8 +398,8 @@ class CatalanStemmer(BaseStemmer):
211
398
  Among(u"als", 138, 1),
212
399
  Among(u"ells", 138, 1),
213
400
  Among(u"ims", -1, 1),
214
- Among(u"\u00EDssims", 141, 1),
215
- Among(u"qu\u00EDssims", 142, 5),
401
+ Among(u"íssims", 141, 1),
402
+ Among(u"quíssims", 142, 5),
216
403
  Among(u"ions", -1, 1),
217
404
  Among(u"cions", 144, 1),
218
405
  Among(u"acions", 145, 2),
@@ -230,7 +417,7 @@ class CatalanStemmer(BaseStemmer):
230
417
  Among(u"bilitats", 157, 1),
231
418
  Among(u"ivitats", 157, 1),
232
419
  Among(u"ativitats", 159, 1),
233
- Among(u"\u00EFtats", 156, 1),
420
+ Among(u"ïtats", 156, 1),
234
421
  Among(u"ets", -1, 1),
235
422
  Among(u"ants", -1, 1),
236
423
  Among(u"ents", -1, 1),
@@ -241,16 +428,16 @@ class CatalanStemmer(BaseStemmer):
241
428
  Among(u"ius", -1, 1),
242
429
  Among(u"trius", 169, 1),
243
430
  Among(u"atius", 169, 1),
244
- Among(u"\u00E8s", -1, 1),
245
- Among(u"\u00E9s", -1, 1),
246
- Among(u"\u00EDs", -1, 1),
247
- Among(u"d\u00EDs", 174, 1),
248
- Among(u"\u00F3s", -1, 1),
431
+ Among(u"ès", -1, 1),
432
+ Among(u"és", -1, 1),
433
+ Among(u"ís", -1, 1),
434
+ Among(u"dís", 174, 1),
435
+ Among(u"ós", -1, 1),
249
436
  Among(u"itat", -1, 1),
250
437
  Among(u"bilitat", 177, 1),
251
438
  Among(u"ivitat", 177, 1),
252
439
  Among(u"ativitat", 179, 1),
253
- Among(u"\u00EFtat", -1, 1),
440
+ Among(u"ïtat", -1, 1),
254
441
  Among(u"et", -1, 1),
255
442
  Among(u"ant", -1, 1),
256
443
  Among(u"ent", -1, 1),
@@ -260,26 +447,26 @@ class CatalanStemmer(BaseStemmer):
260
447
  Among(u"isament", 187, 1),
261
448
  Among(u"ot", -1, 1),
262
449
  Among(u"isseu", -1, 1),
263
- Among(u"\u00ECsseu", -1, 1),
264
- Among(u"\u00EDsseu", -1, 1),
450
+ Among(u"ìsseu", -1, 1),
451
+ Among(u"ísseu", -1, 1),
265
452
  Among(u"triu", -1, 1),
266
- Among(u"\u00EDssiu", -1, 1),
453
+ Among(u"íssiu", -1, 1),
267
454
  Among(u"atiu", -1, 1),
268
- Among(u"\u00F3", -1, 1),
269
- Among(u"i\u00F3", 196, 1),
270
- Among(u"ci\u00F3", 197, 1),
271
- Among(u"aci\u00F3", 198, 1)
455
+ Among(u"ó", -1, 1),
456
+ Among(u"", 196, 1),
457
+ Among(u"ció", 197, 1),
458
+ Among(u"ació", 198, 1)
272
459
  ]
273
460
 
274
461
  a_3 = [
275
462
  Among(u"aba", -1, 1),
276
463
  Among(u"esca", -1, 1),
277
464
  Among(u"isca", -1, 1),
278
- Among(u"\u00EFsca", -1, 1),
465
+ Among(u"ïsca", -1, 1),
279
466
  Among(u"ada", -1, 1),
280
467
  Among(u"ida", -1, 1),
281
468
  Among(u"uda", -1, 1),
282
- Among(u"\u00EFda", -1, 1),
469
+ Among(u"ïda", -1, 1),
283
470
  Among(u"ia", -1, 1),
284
471
  Among(u"aria", 8, 1),
285
472
  Among(u"iria", 8, 1),
@@ -287,17 +474,17 @@ class CatalanStemmer(BaseStemmer):
287
474
  Among(u"iera", -1, 1),
288
475
  Among(u"ira", -1, 1),
289
476
  Among(u"adora", -1, 1),
290
- Among(u"\u00EFra", -1, 1),
477
+ Among(u"ïra", -1, 1),
291
478
  Among(u"ava", -1, 1),
292
479
  Among(u"ixa", -1, 1),
293
480
  Among(u"itza", -1, 1),
294
- Among(u"\u00EDa", -1, 1),
295
- Among(u"ar\u00EDa", 19, 1),
296
- Among(u"er\u00EDa", 19, 1),
297
- Among(u"ir\u00EDa", 19, 1),
298
- Among(u"\u00EFa", -1, 1),
481
+ Among(u"ía", -1, 1),
482
+ Among(u"aría", 19, 1),
483
+ Among(u"ería", 19, 1),
484
+ Among(u"iría", 19, 1),
485
+ Among(u"ïa", -1, 1),
299
486
  Among(u"isc", -1, 1),
300
- Among(u"\u00EFsc", -1, 1),
487
+ Among(u"ïsc", -1, 1),
301
488
  Among(u"ad", -1, 1),
302
489
  Among(u"ed", -1, 1),
303
490
  Among(u"id", -1, 1),
@@ -317,37 +504,37 @@ class CatalanStemmer(BaseStemmer):
317
504
  Among(u"em", -1, 1),
318
505
  Among(u"arem", 42, 1),
319
506
  Among(u"irem", 42, 1),
320
- Among(u"\u00E0rem", 42, 1),
321
- Among(u"\u00EDrem", 42, 1),
322
- Among(u"\u00E0ssem", 42, 1),
323
- Among(u"\u00E9ssem", 42, 1),
507
+ Among(u"àrem", 42, 1),
508
+ Among(u"írem", 42, 1),
509
+ Among(u"àssem", 42, 1),
510
+ Among(u"éssem", 42, 1),
324
511
  Among(u"iguem", 42, 1),
325
- Among(u"\u00EFguem", 42, 1),
512
+ Among(u"ïguem", 42, 1),
326
513
  Among(u"avem", 42, 1),
327
- Among(u"\u00E0vem", 42, 1),
328
- Among(u"\u00E1vem", 42, 1),
329
- Among(u"ir\u00ECem", 42, 1),
330
- Among(u"\u00EDem", 42, 1),
331
- Among(u"ar\u00EDem", 55, 1),
332
- Among(u"ir\u00EDem", 55, 1),
514
+ Among(u"àvem", 42, 1),
515
+ Among(u"ávem", 42, 1),
516
+ Among(u"irìem", 42, 1),
517
+ Among(u"íem", 42, 1),
518
+ Among(u"aríem", 55, 1),
519
+ Among(u"iríem", 55, 1),
333
520
  Among(u"assim", -1, 1),
334
521
  Among(u"essim", -1, 1),
335
522
  Among(u"issim", -1, 1),
336
- Among(u"\u00E0ssim", -1, 1),
337
- Among(u"\u00E8ssim", -1, 1),
338
- Among(u"\u00E9ssim", -1, 1),
339
- Among(u"\u00EDssim", -1, 1),
340
- Among(u"\u00EFm", -1, 1),
523
+ Among(u"àssim", -1, 1),
524
+ Among(u"èssim", -1, 1),
525
+ Among(u"éssim", -1, 1),
526
+ Among(u"íssim", -1, 1),
527
+ Among(u"ïm", -1, 1),
341
528
  Among(u"an", -1, 1),
342
529
  Among(u"aban", 66, 1),
343
530
  Among(u"arian", 66, 1),
344
531
  Among(u"aran", 66, 1),
345
532
  Among(u"ieran", 66, 1),
346
533
  Among(u"iran", 66, 1),
347
- Among(u"\u00EDan", 66, 1),
348
- Among(u"ar\u00EDan", 72, 1),
349
- Among(u"er\u00EDan", 72, 1),
350
- Among(u"ir\u00EDan", 72, 1),
534
+ Among(u"ían", 66, 1),
535
+ Among(u"arían", 72, 1),
536
+ Among(u"erían", 72, 1),
537
+ Among(u"irían", 72, 1),
351
538
  Among(u"en", -1, 1),
352
539
  Among(u"ien", 76, 1),
353
540
  Among(u"arien", 77, 1),
@@ -355,23 +542,23 @@ class CatalanStemmer(BaseStemmer):
355
542
  Among(u"aren", 76, 1),
356
543
  Among(u"eren", 76, 1),
357
544
  Among(u"iren", 76, 1),
358
- Among(u"\u00E0ren", 76, 1),
359
- Among(u"\u00EFren", 76, 1),
545
+ Among(u"àren", 76, 1),
546
+ Among(u"ïren", 76, 1),
360
547
  Among(u"asen", 76, 1),
361
548
  Among(u"iesen", 76, 1),
362
549
  Among(u"assen", 76, 1),
363
550
  Among(u"essen", 76, 1),
364
551
  Among(u"issen", 76, 1),
365
- Among(u"\u00E9ssen", 76, 1),
366
- Among(u"\u00EFssen", 76, 1),
552
+ Among(u"éssen", 76, 1),
553
+ Among(u"ïssen", 76, 1),
367
554
  Among(u"esquen", 76, 1),
368
555
  Among(u"isquen", 76, 1),
369
- Among(u"\u00EFsquen", 76, 1),
556
+ Among(u"ïsquen", 76, 1),
370
557
  Among(u"aven", 76, 1),
371
558
  Among(u"ixen", 76, 1),
372
559
  Among(u"eixen", 96, 1),
373
- Among(u"\u00EFxen", 76, 1),
374
- Among(u"\u00EFen", 76, 1),
560
+ Among(u"ïxen", 76, 1),
561
+ Among(u"ïen", 76, 1),
375
562
  Among(u"in", -1, 1),
376
563
  Among(u"inin", 100, 1),
377
564
  Among(u"sin", 100, 1),
@@ -379,15 +566,15 @@ class CatalanStemmer(BaseStemmer):
379
566
  Among(u"assin", 102, 1),
380
567
  Among(u"essin", 102, 1),
381
568
  Among(u"issin", 102, 1),
382
- Among(u"\u00EFssin", 102, 1),
569
+ Among(u"ïssin", 102, 1),
383
570
  Among(u"esquin", 100, 1),
384
571
  Among(u"eixin", 100, 1),
385
572
  Among(u"aron", -1, 1),
386
573
  Among(u"ieron", -1, 1),
387
- Among(u"ar\u00E1n", -1, 1),
388
- Among(u"er\u00E1n", -1, 1),
389
- Among(u"ir\u00E1n", -1, 1),
390
- Among(u"i\u00EFn", -1, 1),
574
+ Among(u"arán", -1, 1),
575
+ Among(u"erán", -1, 1),
576
+ Among(u"irán", -1, 1),
577
+ Among(u"iïn", -1, 1),
391
578
  Among(u"ado", -1, 1),
392
579
  Among(u"ido", -1, 1),
393
580
  Among(u"ando", -1, 2),
@@ -395,7 +582,7 @@ class CatalanStemmer(BaseStemmer):
395
582
  Among(u"io", -1, 1),
396
583
  Among(u"ixo", -1, 1),
397
584
  Among(u"eixo", 121, 1),
398
- Among(u"\u00EFxo", -1, 1),
585
+ Among(u"ïxo", -1, 1),
399
586
  Among(u"itzo", -1, 1),
400
587
  Among(u"ar", -1, 1),
401
588
  Among(u"tzar", 125, 1),
@@ -409,16 +596,16 @@ class CatalanStemmer(BaseStemmer):
409
596
  Among(u"idas", 131, 1),
410
597
  Among(u"aras", 131, 1),
411
598
  Among(u"ieras", 131, 1),
412
- Among(u"\u00EDas", 131, 1),
413
- Among(u"ar\u00EDas", 137, 1),
414
- Among(u"er\u00EDas", 137, 1),
415
- Among(u"ir\u00EDas", 137, 1),
599
+ Among(u"ías", 131, 1),
600
+ Among(u"arías", 137, 1),
601
+ Among(u"erías", 137, 1),
602
+ Among(u"irías", 137, 1),
416
603
  Among(u"ids", -1, 1),
417
604
  Among(u"es", -1, 1),
418
605
  Among(u"ades", 142, 1),
419
606
  Among(u"ides", 142, 1),
420
607
  Among(u"udes", 142, 1),
421
- Among(u"\u00EFdes", 142, 1),
608
+ Among(u"ïdes", 142, 1),
422
609
  Among(u"atges", 142, 1),
423
610
  Among(u"ies", 142, 1),
424
611
  Among(u"aries", 148, 1),
@@ -426,28 +613,28 @@ class CatalanStemmer(BaseStemmer):
426
613
  Among(u"ares", 142, 1),
427
614
  Among(u"ires", 142, 1),
428
615
  Among(u"adores", 142, 1),
429
- Among(u"\u00EFres", 142, 1),
616
+ Among(u"ïres", 142, 1),
430
617
  Among(u"ases", 142, 1),
431
618
  Among(u"ieses", 142, 1),
432
619
  Among(u"asses", 142, 1),
433
620
  Among(u"esses", 142, 1),
434
621
  Among(u"isses", 142, 1),
435
- Among(u"\u00EFsses", 142, 1),
622
+ Among(u"ïsses", 142, 1),
436
623
  Among(u"ques", 142, 1),
437
624
  Among(u"esques", 161, 1),
438
- Among(u"\u00EFsques", 161, 1),
625
+ Among(u"ïsques", 161, 1),
439
626
  Among(u"aves", 142, 1),
440
627
  Among(u"ixes", 142, 1),
441
628
  Among(u"eixes", 165, 1),
442
- Among(u"\u00EFxes", 142, 1),
443
- Among(u"\u00EFes", 142, 1),
629
+ Among(u"ïxes", 142, 1),
630
+ Among(u"ïes", 142, 1),
444
631
  Among(u"abais", -1, 1),
445
632
  Among(u"arais", -1, 1),
446
633
  Among(u"ierais", -1, 1),
447
- Among(u"\u00EDais", -1, 1),
448
- Among(u"ar\u00EDais", 172, 1),
449
- Among(u"er\u00EDais", 172, 1),
450
- Among(u"ir\u00EDais", 172, 1),
634
+ Among(u"íais", -1, 1),
635
+ Among(u"aríais", 172, 1),
636
+ Among(u"eríais", 172, 1),
637
+ Among(u"iríais", 172, 1),
451
638
  Among(u"aseis", -1, 1),
452
639
  Among(u"ieseis", -1, 1),
453
640
  Among(u"asteis", -1, 1),
@@ -458,30 +645,30 @@ class CatalanStemmer(BaseStemmer):
458
645
  Among(u"assis", 181, 1),
459
646
  Among(u"essis", 181, 1),
460
647
  Among(u"issis", 181, 1),
461
- Among(u"\u00EFssis", 181, 1),
648
+ Among(u"ïssis", 181, 1),
462
649
  Among(u"esquis", -1, 1),
463
650
  Among(u"eixis", -1, 1),
464
651
  Among(u"itzis", -1, 1),
465
- Among(u"\u00E1is", -1, 1),
466
- Among(u"ar\u00E9is", -1, 1),
467
- Among(u"er\u00E9is", -1, 1),
468
- Among(u"ir\u00E9is", -1, 1),
652
+ Among(u"áis", -1, 1),
653
+ Among(u"aréis", -1, 1),
654
+ Among(u"eréis", -1, 1),
655
+ Among(u"iréis", -1, 1),
469
656
  Among(u"ams", -1, 1),
470
657
  Among(u"ados", -1, 1),
471
658
  Among(u"idos", -1, 1),
472
659
  Among(u"amos", -1, 1),
473
- Among(u"\u00E1bamos", 197, 1),
474
- Among(u"\u00E1ramos", 197, 1),
475
- Among(u"i\u00E9ramos", 197, 1),
476
- Among(u"\u00EDamos", 197, 1),
477
- Among(u"ar\u00EDamos", 201, 1),
478
- Among(u"er\u00EDamos", 201, 1),
479
- Among(u"ir\u00EDamos", 201, 1),
660
+ Among(u"ábamos", 197, 1),
661
+ Among(u"áramos", 197, 1),
662
+ Among(u"iéramos", 197, 1),
663
+ Among(u"íamos", 197, 1),
664
+ Among(u"aríamos", 201, 1),
665
+ Among(u"eríamos", 201, 1),
666
+ Among(u"iríamos", 201, 1),
480
667
  Among(u"aremos", -1, 1),
481
668
  Among(u"eremos", -1, 1),
482
669
  Among(u"iremos", -1, 1),
483
- Among(u"\u00E1semos", -1, 1),
484
- Among(u"i\u00E9semos", -1, 1),
670
+ Among(u"ásemos", -1, 1),
671
+ Among(u"iésemos", -1, 1),
485
672
  Among(u"imos", -1, 1),
486
673
  Among(u"adors", -1, 1),
487
674
  Among(u"ass", -1, 1),
@@ -490,290 +677,98 @@ class CatalanStemmer(BaseStemmer):
490
677
  Among(u"ats", -1, 1),
491
678
  Among(u"its", -1, 1),
492
679
  Among(u"ents", -1, 1),
493
- Among(u"\u00E0s", -1, 1),
494
- Among(u"ar\u00E0s", 218, 1),
495
- Among(u"ir\u00E0s", 218, 1),
496
- Among(u"ar\u00E1s", -1, 1),
497
- Among(u"er\u00E1s", -1, 1),
498
- Among(u"ir\u00E1s", -1, 1),
499
- Among(u"\u00E9s", -1, 1),
500
- Among(u"ar\u00E9s", 224, 1),
501
- Among(u"\u00EDs", -1, 1),
502
- Among(u"i\u00EFs", -1, 1),
680
+ Among(u"às", -1, 1),
681
+ Among(u"aràs", 218, 1),
682
+ Among(u"iràs", 218, 1),
683
+ Among(u"arás", -1, 1),
684
+ Among(u"erás", -1, 1),
685
+ Among(u"irás", -1, 1),
686
+ Among(u"és", -1, 1),
687
+ Among(u"arés", 224, 1),
688
+ Among(u"ís", -1, 1),
689
+ Among(u"iïs", -1, 1),
503
690
  Among(u"at", -1, 1),
504
691
  Among(u"it", -1, 1),
505
692
  Among(u"ant", -1, 1),
506
693
  Among(u"ent", -1, 1),
507
694
  Among(u"int", -1, 1),
508
695
  Among(u"ut", -1, 1),
509
- Among(u"\u00EFt", -1, 1),
696
+ Among(u"ït", -1, 1),
510
697
  Among(u"au", -1, 1),
511
698
  Among(u"erau", 235, 1),
512
699
  Among(u"ieu", -1, 1),
513
700
  Among(u"ineu", -1, 1),
514
701
  Among(u"areu", -1, 1),
515
702
  Among(u"ireu", -1, 1),
516
- Among(u"\u00E0reu", -1, 1),
517
- Among(u"\u00EDreu", -1, 1),
703
+ Among(u"àreu", -1, 1),
704
+ Among(u"íreu", -1, 1),
518
705
  Among(u"asseu", -1, 1),
519
706
  Among(u"esseu", -1, 1),
520
707
  Among(u"eresseu", 244, 1),
521
- Among(u"\u00E0sseu", -1, 1),
522
- Among(u"\u00E9sseu", -1, 1),
708
+ Among(u"àsseu", -1, 1),
709
+ Among(u"ésseu", -1, 1),
523
710
  Among(u"igueu", -1, 1),
524
- Among(u"\u00EFgueu", -1, 1),
525
- Among(u"\u00E0veu", -1, 1),
526
- Among(u"\u00E1veu", -1, 1),
711
+ Among(u"ïgueu", -1, 1),
712
+ Among(u"àveu", -1, 1),
713
+ Among(u"áveu", -1, 1),
527
714
  Among(u"itzeu", -1, 1),
528
- Among(u"\u00ECeu", -1, 1),
529
- Among(u"ir\u00ECeu", 253, 1),
530
- Among(u"\u00EDeu", -1, 1),
531
- Among(u"ar\u00EDeu", 255, 1),
532
- Among(u"ir\u00EDeu", 255, 1),
715
+ Among(u"ìeu", -1, 1),
716
+ Among(u"irìeu", 253, 1),
717
+ Among(u"íeu", -1, 1),
718
+ Among(u"aríeu", 255, 1),
719
+ Among(u"iríeu", 255, 1),
533
720
  Among(u"assiu", -1, 1),
534
721
  Among(u"issiu", -1, 1),
535
- Among(u"\u00E0ssiu", -1, 1),
536
- Among(u"\u00E8ssiu", -1, 1),
537
- Among(u"\u00E9ssiu", -1, 1),
538
- Among(u"\u00EDssiu", -1, 1),
539
- Among(u"\u00EFu", -1, 1),
722
+ Among(u"àssiu", -1, 1),
723
+ Among(u"èssiu", -1, 1),
724
+ Among(u"éssiu", -1, 1),
725
+ Among(u"íssiu", -1, 1),
726
+ Among(u"ïu", -1, 1),
540
727
  Among(u"ix", -1, 1),
541
728
  Among(u"eix", 265, 1),
542
- Among(u"\u00EFx", -1, 1),
729
+ Among(u"ïx", -1, 1),
543
730
  Among(u"itz", -1, 1),
544
- Among(u"i\u00E0", -1, 1),
545
- Among(u"ar\u00E0", -1, 1),
546
- Among(u"ir\u00E0", -1, 1),
547
- Among(u"itz\u00E0", -1, 1),
548
- Among(u"ar\u00E1", -1, 1),
549
- Among(u"er\u00E1", -1, 1),
550
- Among(u"ir\u00E1", -1, 1),
551
- Among(u"ir\u00E8", -1, 1),
552
- Among(u"ar\u00E9", -1, 1),
553
- Among(u"er\u00E9", -1, 1),
554
- Among(u"ir\u00E9", -1, 1),
555
- Among(u"\u00ED", -1, 1),
556
- Among(u"i\u00EF", -1, 1),
557
- Among(u"i\u00F3", -1, 1)
731
+ Among(u"", -1, 1),
732
+ Among(u"arà", -1, 1),
733
+ Among(u"irà", -1, 1),
734
+ Among(u"itzà", -1, 1),
735
+ Among(u"ará", -1, 1),
736
+ Among(u"erá", -1, 1),
737
+ Among(u"irá", -1, 1),
738
+ Among(u"irè", -1, 1),
739
+ Among(u"aré", -1, 1),
740
+ Among(u"eré", -1, 1),
741
+ Among(u"iré", -1, 1),
742
+ Among(u"í", -1, 1),
743
+ Among(u"", -1, 1),
744
+ Among(u"", -1, 1)
558
745
  ]
559
746
 
560
747
  a_4 = [
561
748
  Among(u"a", -1, 1),
562
749
  Among(u"e", -1, 1),
563
750
  Among(u"i", -1, 1),
564
- Among(u"\u00EFn", -1, 1),
751
+ Among(u"ïn", -1, 1),
565
752
  Among(u"o", -1, 1),
566
753
  Among(u"ir", -1, 1),
567
754
  Among(u"s", -1, 1),
568
755
  Among(u"is", 6, 1),
569
756
  Among(u"os", 6, 1),
570
- Among(u"\u00EFs", 6, 1),
757
+ Among(u"ïs", 6, 1),
571
758
  Among(u"it", -1, 1),
572
759
  Among(u"eu", -1, 1),
573
760
  Among(u"iu", -1, 1),
574
761
  Among(u"iqu", -1, 2),
575
762
  Among(u"itz", -1, 1),
576
- Among(u"\u00E0", -1, 1),
577
- Among(u"\u00E1", -1, 1),
578
- Among(u"\u00E9", -1, 1),
579
- Among(u"\u00EC", -1, 1),
580
- Among(u"\u00ED", -1, 1),
581
- Among(u"\u00EF", -1, 1),
582
- Among(u"\u00F3", -1, 1)
763
+ Among(u"à", -1, 1),
764
+ Among(u"á", -1, 1),
765
+ Among(u"é", -1, 1),
766
+ Among(u"ì", -1, 1),
767
+ Among(u"í", -1, 1),
768
+ Among(u"ï", -1, 1),
769
+ Among(u"ó", -1, 1)
583
770
  ]
584
771
 
585
- g_v = [17, 65, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 129, 81, 6, 10]
586
-
587
- I_p2 = 0
588
- I_p1 = 0
589
-
590
- def __r_mark_regions(self):
591
- self.I_p1 = self.limit
592
- self.I_p2 = self.limit
593
- v_1 = self.cursor
594
- try:
595
- if not self.go_out_grouping(CatalanStemmer.g_v, 97, 252):
596
- raise lab0()
597
- self.cursor += 1
598
- if not self.go_in_grouping(CatalanStemmer.g_v, 97, 252):
599
- raise lab0()
600
- self.cursor += 1
601
- self.I_p1 = self.cursor
602
- if not self.go_out_grouping(CatalanStemmer.g_v, 97, 252):
603
- raise lab0()
604
- self.cursor += 1
605
- if not self.go_in_grouping(CatalanStemmer.g_v, 97, 252):
606
- raise lab0()
607
- self.cursor += 1
608
- self.I_p2 = self.cursor
609
- except lab0: pass
610
- self.cursor = v_1
611
- return True
612
-
613
- def __r_cleaning(self):
614
- while True:
615
- v_1 = self.cursor
616
- try:
617
- self.bra = self.cursor
618
- among_var = self.find_among(CatalanStemmer.a_0)
619
- if among_var == 0:
620
- raise lab0()
621
- self.ket = self.cursor
622
- if among_var == 1:
623
- if not self.slice_from(u"a"):
624
- return False
625
- elif among_var == 2:
626
- if not self.slice_from(u"e"):
627
- return False
628
- elif among_var == 3:
629
- if not self.slice_from(u"i"):
630
- return False
631
- elif among_var == 4:
632
- if not self.slice_from(u"o"):
633
- return False
634
- elif among_var == 5:
635
- if not self.slice_from(u"u"):
636
- return False
637
- elif among_var == 6:
638
- if not self.slice_from(u"."):
639
- return False
640
- else:
641
- if self.cursor >= self.limit:
642
- raise lab0()
643
- self.cursor += 1
644
- continue
645
- except lab0: pass
646
- self.cursor = v_1
647
- break
648
- return True
649
-
650
- def __r_R1(self):
651
- if not self.I_p1 <= self.cursor:
652
- return False
653
- return True
654
-
655
- def __r_R2(self):
656
- if not self.I_p2 <= self.cursor:
657
- return False
658
- return True
659
-
660
- def __r_attached_pronoun(self):
661
- self.ket = self.cursor
662
- if self.find_among_b(CatalanStemmer.a_1) == 0:
663
- return False
664
- self.bra = self.cursor
665
- if not self.__r_R1():
666
- return False
667
- if not self.slice_del():
668
- return False
669
-
670
- return True
671
-
672
- def __r_standard_suffix(self):
673
- self.ket = self.cursor
674
- among_var = self.find_among_b(CatalanStemmer.a_2)
675
- if among_var == 0:
676
- return False
677
- self.bra = self.cursor
678
- if among_var == 1:
679
- if not self.__r_R1():
680
- return False
681
- if not self.slice_del():
682
- return False
683
-
684
- elif among_var == 2:
685
- if not self.__r_R2():
686
- return False
687
- if not self.slice_del():
688
- return False
689
-
690
- elif among_var == 3:
691
- if not self.__r_R2():
692
- return False
693
- if not self.slice_from(u"log"):
694
- return False
695
- elif among_var == 4:
696
- if not self.__r_R2():
697
- return False
698
- if not self.slice_from(u"ic"):
699
- return False
700
- else:
701
- if not self.__r_R1():
702
- return False
703
- if not self.slice_from(u"c"):
704
- return False
705
- return True
706
-
707
- def __r_verb_suffix(self):
708
- self.ket = self.cursor
709
- among_var = self.find_among_b(CatalanStemmer.a_3)
710
- if among_var == 0:
711
- return False
712
- self.bra = self.cursor
713
- if among_var == 1:
714
- if not self.__r_R1():
715
- return False
716
- if not self.slice_del():
717
- return False
718
-
719
- else:
720
- if not self.__r_R2():
721
- return False
722
- if not self.slice_del():
723
- return False
724
-
725
- return True
726
-
727
- def __r_residual_suffix(self):
728
- self.ket = self.cursor
729
- among_var = self.find_among_b(CatalanStemmer.a_4)
730
- if among_var == 0:
731
- return False
732
- self.bra = self.cursor
733
- if among_var == 1:
734
- if not self.__r_R1():
735
- return False
736
- if not self.slice_del():
737
- return False
738
-
739
- else:
740
- if not self.__r_R1():
741
- return False
742
- if not self.slice_from(u"ic"):
743
- return False
744
- return True
745
-
746
- def _stem(self):
747
- self.__r_mark_regions()
748
- self.limit_backward = self.cursor
749
- self.cursor = self.limit
750
- v_2 = self.limit - self.cursor
751
- self.__r_attached_pronoun()
752
- self.cursor = self.limit - v_2
753
- v_3 = self.limit - self.cursor
754
- try:
755
- try:
756
- v_4 = self.limit - self.cursor
757
- try:
758
- if not self.__r_standard_suffix():
759
- raise lab2()
760
- raise lab1()
761
- except lab2: pass
762
- self.cursor = self.limit - v_4
763
- if not self.__r_verb_suffix():
764
- raise lab0()
765
- except lab1: pass
766
- except lab0: pass
767
- self.cursor = self.limit - v_3
768
- v_5 = self.limit - self.cursor
769
- self.__r_residual_suffix()
770
- self.cursor = self.limit - v_5
771
- self.cursor = self.limit_backward
772
- v_6 = self.cursor
773
- self.__r_cleaning()
774
- self.cursor = v_6
775
- return True
776
-
777
772
 
778
773
  class lab0(BaseException): pass
779
774