2017-03-12 15:07:28 +03:00
|
|
|
|
# coding: utf8
|
2016-12-18 17:36:15 +03:00
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
2019-04-01 13:11:27 +03:00
|
|
|
|
from ...symbols import LEMMA, PRON_LEMMA
|
2016-12-18 17:36:15 +03:00
|
|
|
|
|
2019-08-25 22:56:47 +03:00
|
|
|
|
# Several entries here look pretty suspicious. These will get the POS SCONJ
|
|
|
|
|
# given the tag IN, when an adpositional reading seems much more likely for
|
|
|
|
|
# a lot of these prepositions. I'm not sure what I was running in 04395ffa4
|
|
|
|
|
# when I did this? It doesn't seem right.
|
2019-03-21 15:53:44 +03:00
|
|
|
|
_subordinating_conjunctions = [
|
|
|
|
|
"that",
|
|
|
|
|
"if",
|
|
|
|
|
"as",
|
|
|
|
|
"because",
|
2019-08-25 22:56:47 +03:00
|
|
|
|
#"of",
|
|
|
|
|
#"for",
|
|
|
|
|
#"before",
|
|
|
|
|
#"in",
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"while",
|
2019-08-25 22:56:47 +03:00
|
|
|
|
#"after",
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"since",
|
|
|
|
|
"like",
|
2019-08-25 22:56:47 +03:00
|
|
|
|
#"with",
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"so",
|
2019-08-25 22:56:47 +03:00
|
|
|
|
#"to",
|
|
|
|
|
#"by",
|
|
|
|
|
#"on",
|
|
|
|
|
#"about",
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"than",
|
|
|
|
|
"whether",
|
|
|
|
|
"although",
|
2019-08-25 22:56:47 +03:00
|
|
|
|
#"from",
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"though",
|
2019-08-25 22:56:47 +03:00
|
|
|
|
#"until",
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"unless",
|
|
|
|
|
"once",
|
2019-08-25 22:56:47 +03:00
|
|
|
|
#"without",
|
|
|
|
|
#"at",
|
|
|
|
|
#"into",
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"cause",
|
2019-08-25 22:56:47 +03:00
|
|
|
|
#"over",
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"upon",
|
|
|
|
|
"till",
|
|
|
|
|
"whereas",
|
2019-08-25 22:56:47 +03:00
|
|
|
|
#"beyond",
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"whilst",
|
|
|
|
|
"except",
|
|
|
|
|
"despite",
|
|
|
|
|
"wether",
|
2019-08-25 22:56:47 +03:00
|
|
|
|
#"then",
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"but",
|
|
|
|
|
"becuse",
|
|
|
|
|
"whie",
|
2019-08-25 22:56:47 +03:00
|
|
|
|
#"below",
|
|
|
|
|
#"against",
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"it",
|
|
|
|
|
"w/out",
|
2019-08-25 22:56:47 +03:00
|
|
|
|
#"toward",
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"albeit",
|
|
|
|
|
"save",
|
|
|
|
|
"besides",
|
|
|
|
|
"becouse",
|
|
|
|
|
"coz",
|
|
|
|
|
"til",
|
|
|
|
|
"ask",
|
|
|
|
|
"i'd",
|
|
|
|
|
"out",
|
|
|
|
|
"near",
|
|
|
|
|
"seince",
|
2019-08-25 22:56:47 +03:00
|
|
|
|
#"towards",
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"tho",
|
|
|
|
|
"sice",
|
|
|
|
|
"will",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
_relative_pronouns = ["this", "that", "those", "these"]
|
2016-12-18 17:36:15 +03:00
|
|
|
|
|
|
|
|
|
MORPH_RULES = {
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"DT": {word: {"POS": "PRON"} for word in _relative_pronouns},
|
|
|
|
|
"IN": {word: {"POS": "SCONJ"} for word in _subordinating_conjunctions},
|
|
|
|
|
"NN": {
|
|
|
|
|
"something": {"POS": "PRON"},
|
|
|
|
|
"anyone": {"POS": "PRON"},
|
|
|
|
|
"anything": {"POS": "PRON"},
|
|
|
|
|
"nothing": {"POS": "PRON"},
|
|
|
|
|
"someone": {"POS": "PRON"},
|
|
|
|
|
"everything": {"POS": "PRON"},
|
|
|
|
|
"everyone": {"POS": "PRON"},
|
|
|
|
|
"everybody": {"POS": "PRON"},
|
|
|
|
|
"nobody": {"POS": "PRON"},
|
|
|
|
|
"somebody": {"POS": "PRON"},
|
|
|
|
|
"anybody": {"POS": "PRON"},
|
|
|
|
|
"any1": {"POS": "PRON"},
|
|
|
|
|
},
|
2016-12-18 17:36:15 +03:00
|
|
|
|
"PRP": {
|
💫 Tidy up and auto-format .py files (#2983)
<!--- Provide a general summary of your changes in the title. -->
## Description
- [x] Use [`black`](https://github.com/ambv/black) to auto-format all `.py` files.
- [x] Update flake8 config to exclude very large files (lemmatization tables etc.)
- [x] Update code to be compatible with flake8 rules
- [x] Fix various small bugs, inconsistencies and messy stuff in the language data
- [x] Update docs to explain new code style (`black`, `flake8`, when to use `# fmt: off` and `# fmt: on` and what `# noqa` means)
Once #2932 is merged, which auto-formats and tidies up the CLI, we'll be able to run `flake8 spacy` actually get meaningful results.
At the moment, the code style and linting isn't applied automatically, but I'm hoping that the new [GitHub Actions](https://github.com/features/actions) will let us auto-format pull requests and post comments with relevant linting information.
### Types of change
enhancement, code style
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-11-30 19:03:03 +03:00
|
|
|
|
"I": {
|
|
|
|
|
LEMMA: PRON_LEMMA,
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"POS": "PRON",
|
💫 Tidy up and auto-format .py files (#2983)
<!--- Provide a general summary of your changes in the title. -->
## Description
- [x] Use [`black`](https://github.com/ambv/black) to auto-format all `.py` files.
- [x] Update flake8 config to exclude very large files (lemmatization tables etc.)
- [x] Update code to be compatible with flake8 rules
- [x] Fix various small bugs, inconsistencies and messy stuff in the language data
- [x] Update docs to explain new code style (`black`, `flake8`, when to use `# fmt: off` and `# fmt: on` and what `# noqa` means)
Once #2932 is merged, which auto-formats and tidies up the CLI, we'll be able to run `flake8 spacy` actually get meaningful results.
At the moment, the code style and linting isn't applied automatically, but I'm hoping that the new [GitHub Actions](https://github.com/features/actions) will let us auto-format pull requests and post comments with relevant linting information.
### Types of change
enhancement, code style
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-11-30 19:03:03 +03:00
|
|
|
|
"PronType": "Prs",
|
|
|
|
|
"Person": "One",
|
|
|
|
|
"Number": "Sing",
|
|
|
|
|
"Case": "Nom",
|
|
|
|
|
},
|
|
|
|
|
"me": {
|
|
|
|
|
LEMMA: PRON_LEMMA,
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"POS": "PRON",
|
💫 Tidy up and auto-format .py files (#2983)
<!--- Provide a general summary of your changes in the title. -->
## Description
- [x] Use [`black`](https://github.com/ambv/black) to auto-format all `.py` files.
- [x] Update flake8 config to exclude very large files (lemmatization tables etc.)
- [x] Update code to be compatible with flake8 rules
- [x] Fix various small bugs, inconsistencies and messy stuff in the language data
- [x] Update docs to explain new code style (`black`, `flake8`, when to use `# fmt: off` and `# fmt: on` and what `# noqa` means)
Once #2932 is merged, which auto-formats and tidies up the CLI, we'll be able to run `flake8 spacy` actually get meaningful results.
At the moment, the code style and linting isn't applied automatically, but I'm hoping that the new [GitHub Actions](https://github.com/features/actions) will let us auto-format pull requests and post comments with relevant linting information.
### Types of change
enhancement, code style
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-11-30 19:03:03 +03:00
|
|
|
|
"PronType": "Prs",
|
|
|
|
|
"Person": "One",
|
|
|
|
|
"Number": "Sing",
|
|
|
|
|
"Case": "Acc",
|
|
|
|
|
},
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"you": {LEMMA: PRON_LEMMA, "POS": "PRON", "PronType": "Prs", "Person": "Two"},
|
💫 Tidy up and auto-format .py files (#2983)
<!--- Provide a general summary of your changes in the title. -->
## Description
- [x] Use [`black`](https://github.com/ambv/black) to auto-format all `.py` files.
- [x] Update flake8 config to exclude very large files (lemmatization tables etc.)
- [x] Update code to be compatible with flake8 rules
- [x] Fix various small bugs, inconsistencies and messy stuff in the language data
- [x] Update docs to explain new code style (`black`, `flake8`, when to use `# fmt: off` and `# fmt: on` and what `# noqa` means)
Once #2932 is merged, which auto-formats and tidies up the CLI, we'll be able to run `flake8 spacy` actually get meaningful results.
At the moment, the code style and linting isn't applied automatically, but I'm hoping that the new [GitHub Actions](https://github.com/features/actions) will let us auto-format pull requests and post comments with relevant linting information.
### Types of change
enhancement, code style
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-11-30 19:03:03 +03:00
|
|
|
|
"he": {
|
|
|
|
|
LEMMA: PRON_LEMMA,
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"POS": "PRON",
|
💫 Tidy up and auto-format .py files (#2983)
<!--- Provide a general summary of your changes in the title. -->
## Description
- [x] Use [`black`](https://github.com/ambv/black) to auto-format all `.py` files.
- [x] Update flake8 config to exclude very large files (lemmatization tables etc.)
- [x] Update code to be compatible with flake8 rules
- [x] Fix various small bugs, inconsistencies and messy stuff in the language data
- [x] Update docs to explain new code style (`black`, `flake8`, when to use `# fmt: off` and `# fmt: on` and what `# noqa` means)
Once #2932 is merged, which auto-formats and tidies up the CLI, we'll be able to run `flake8 spacy` actually get meaningful results.
At the moment, the code style and linting isn't applied automatically, but I'm hoping that the new [GitHub Actions](https://github.com/features/actions) will let us auto-format pull requests and post comments with relevant linting information.
### Types of change
enhancement, code style
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-11-30 19:03:03 +03:00
|
|
|
|
"PronType": "Prs",
|
|
|
|
|
"Person": "Three",
|
|
|
|
|
"Number": "Sing",
|
|
|
|
|
"Gender": "Masc",
|
|
|
|
|
"Case": "Nom",
|
|
|
|
|
},
|
|
|
|
|
"him": {
|
|
|
|
|
LEMMA: PRON_LEMMA,
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"POS": "PRON",
|
💫 Tidy up and auto-format .py files (#2983)
<!--- Provide a general summary of your changes in the title. -->
## Description
- [x] Use [`black`](https://github.com/ambv/black) to auto-format all `.py` files.
- [x] Update flake8 config to exclude very large files (lemmatization tables etc.)
- [x] Update code to be compatible with flake8 rules
- [x] Fix various small bugs, inconsistencies and messy stuff in the language data
- [x] Update docs to explain new code style (`black`, `flake8`, when to use `# fmt: off` and `# fmt: on` and what `# noqa` means)
Once #2932 is merged, which auto-formats and tidies up the CLI, we'll be able to run `flake8 spacy` actually get meaningful results.
At the moment, the code style and linting isn't applied automatically, but I'm hoping that the new [GitHub Actions](https://github.com/features/actions) will let us auto-format pull requests and post comments with relevant linting information.
### Types of change
enhancement, code style
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-11-30 19:03:03 +03:00
|
|
|
|
"PronType": "Prs",
|
|
|
|
|
"Person": "Three",
|
|
|
|
|
"Number": "Sing",
|
|
|
|
|
"Gender": "Masc",
|
|
|
|
|
"Case": "Acc",
|
|
|
|
|
},
|
|
|
|
|
"she": {
|
|
|
|
|
LEMMA: PRON_LEMMA,
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"POS": "PRON",
|
💫 Tidy up and auto-format .py files (#2983)
<!--- Provide a general summary of your changes in the title. -->
## Description
- [x] Use [`black`](https://github.com/ambv/black) to auto-format all `.py` files.
- [x] Update flake8 config to exclude very large files (lemmatization tables etc.)
- [x] Update code to be compatible with flake8 rules
- [x] Fix various small bugs, inconsistencies and messy stuff in the language data
- [x] Update docs to explain new code style (`black`, `flake8`, when to use `# fmt: off` and `# fmt: on` and what `# noqa` means)
Once #2932 is merged, which auto-formats and tidies up the CLI, we'll be able to run `flake8 spacy` actually get meaningful results.
At the moment, the code style and linting isn't applied automatically, but I'm hoping that the new [GitHub Actions](https://github.com/features/actions) will let us auto-format pull requests and post comments with relevant linting information.
### Types of change
enhancement, code style
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-11-30 19:03:03 +03:00
|
|
|
|
"PronType": "Prs",
|
|
|
|
|
"Person": "Three",
|
|
|
|
|
"Number": "Sing",
|
|
|
|
|
"Gender": "Fem",
|
|
|
|
|
"Case": "Nom",
|
|
|
|
|
},
|
|
|
|
|
"her": {
|
|
|
|
|
LEMMA: PRON_LEMMA,
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"POS": "PRON",
|
💫 Tidy up and auto-format .py files (#2983)
<!--- Provide a general summary of your changes in the title. -->
## Description
- [x] Use [`black`](https://github.com/ambv/black) to auto-format all `.py` files.
- [x] Update flake8 config to exclude very large files (lemmatization tables etc.)
- [x] Update code to be compatible with flake8 rules
- [x] Fix various small bugs, inconsistencies and messy stuff in the language data
- [x] Update docs to explain new code style (`black`, `flake8`, when to use `# fmt: off` and `# fmt: on` and what `# noqa` means)
Once #2932 is merged, which auto-formats and tidies up the CLI, we'll be able to run `flake8 spacy` actually get meaningful results.
At the moment, the code style and linting isn't applied automatically, but I'm hoping that the new [GitHub Actions](https://github.com/features/actions) will let us auto-format pull requests and post comments with relevant linting information.
### Types of change
enhancement, code style
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-11-30 19:03:03 +03:00
|
|
|
|
"PronType": "Prs",
|
|
|
|
|
"Person": "Three",
|
|
|
|
|
"Number": "Sing",
|
|
|
|
|
"Gender": "Fem",
|
|
|
|
|
"Case": "Acc",
|
|
|
|
|
},
|
|
|
|
|
"it": {
|
|
|
|
|
LEMMA: PRON_LEMMA,
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"POS": "PRON",
|
💫 Tidy up and auto-format .py files (#2983)
<!--- Provide a general summary of your changes in the title. -->
## Description
- [x] Use [`black`](https://github.com/ambv/black) to auto-format all `.py` files.
- [x] Update flake8 config to exclude very large files (lemmatization tables etc.)
- [x] Update code to be compatible with flake8 rules
- [x] Fix various small bugs, inconsistencies and messy stuff in the language data
- [x] Update docs to explain new code style (`black`, `flake8`, when to use `# fmt: off` and `# fmt: on` and what `# noqa` means)
Once #2932 is merged, which auto-formats and tidies up the CLI, we'll be able to run `flake8 spacy` actually get meaningful results.
At the moment, the code style and linting isn't applied automatically, but I'm hoping that the new [GitHub Actions](https://github.com/features/actions) will let us auto-format pull requests and post comments with relevant linting information.
### Types of change
enhancement, code style
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-11-30 19:03:03 +03:00
|
|
|
|
"PronType": "Prs",
|
|
|
|
|
"Person": "Three",
|
|
|
|
|
"Number": "Sing",
|
|
|
|
|
"Gender": "Neut",
|
|
|
|
|
},
|
|
|
|
|
"we": {
|
|
|
|
|
LEMMA: PRON_LEMMA,
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"POS": "PRON",
|
💫 Tidy up and auto-format .py files (#2983)
<!--- Provide a general summary of your changes in the title. -->
## Description
- [x] Use [`black`](https://github.com/ambv/black) to auto-format all `.py` files.
- [x] Update flake8 config to exclude very large files (lemmatization tables etc.)
- [x] Update code to be compatible with flake8 rules
- [x] Fix various small bugs, inconsistencies and messy stuff in the language data
- [x] Update docs to explain new code style (`black`, `flake8`, when to use `# fmt: off` and `# fmt: on` and what `# noqa` means)
Once #2932 is merged, which auto-formats and tidies up the CLI, we'll be able to run `flake8 spacy` actually get meaningful results.
At the moment, the code style and linting isn't applied automatically, but I'm hoping that the new [GitHub Actions](https://github.com/features/actions) will let us auto-format pull requests and post comments with relevant linting information.
### Types of change
enhancement, code style
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-11-30 19:03:03 +03:00
|
|
|
|
"PronType": "Prs",
|
|
|
|
|
"Person": "One",
|
|
|
|
|
"Number": "Plur",
|
|
|
|
|
"Case": "Nom",
|
|
|
|
|
},
|
|
|
|
|
"us": {
|
|
|
|
|
LEMMA: PRON_LEMMA,
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"POS": "PRON",
|
💫 Tidy up and auto-format .py files (#2983)
<!--- Provide a general summary of your changes in the title. -->
## Description
- [x] Use [`black`](https://github.com/ambv/black) to auto-format all `.py` files.
- [x] Update flake8 config to exclude very large files (lemmatization tables etc.)
- [x] Update code to be compatible with flake8 rules
- [x] Fix various small bugs, inconsistencies and messy stuff in the language data
- [x] Update docs to explain new code style (`black`, `flake8`, when to use `# fmt: off` and `# fmt: on` and what `# noqa` means)
Once #2932 is merged, which auto-formats and tidies up the CLI, we'll be able to run `flake8 spacy` actually get meaningful results.
At the moment, the code style and linting isn't applied automatically, but I'm hoping that the new [GitHub Actions](https://github.com/features/actions) will let us auto-format pull requests and post comments with relevant linting information.
### Types of change
enhancement, code style
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-11-30 19:03:03 +03:00
|
|
|
|
"PronType": "Prs",
|
|
|
|
|
"Person": "One",
|
|
|
|
|
"Number": "Plur",
|
|
|
|
|
"Case": "Acc",
|
|
|
|
|
},
|
|
|
|
|
"they": {
|
|
|
|
|
LEMMA: PRON_LEMMA,
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"POS": "PRON",
|
💫 Tidy up and auto-format .py files (#2983)
<!--- Provide a general summary of your changes in the title. -->
## Description
- [x] Use [`black`](https://github.com/ambv/black) to auto-format all `.py` files.
- [x] Update flake8 config to exclude very large files (lemmatization tables etc.)
- [x] Update code to be compatible with flake8 rules
- [x] Fix various small bugs, inconsistencies and messy stuff in the language data
- [x] Update docs to explain new code style (`black`, `flake8`, when to use `# fmt: off` and `# fmt: on` and what `# noqa` means)
Once #2932 is merged, which auto-formats and tidies up the CLI, we'll be able to run `flake8 spacy` actually get meaningful results.
At the moment, the code style and linting isn't applied automatically, but I'm hoping that the new [GitHub Actions](https://github.com/features/actions) will let us auto-format pull requests and post comments with relevant linting information.
### Types of change
enhancement, code style
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-11-30 19:03:03 +03:00
|
|
|
|
"PronType": "Prs",
|
|
|
|
|
"Person": "Three",
|
|
|
|
|
"Number": "Plur",
|
|
|
|
|
"Case": "Nom",
|
|
|
|
|
},
|
|
|
|
|
"them": {
|
|
|
|
|
LEMMA: PRON_LEMMA,
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"POS": "PRON",
|
💫 Tidy up and auto-format .py files (#2983)
<!--- Provide a general summary of your changes in the title. -->
## Description
- [x] Use [`black`](https://github.com/ambv/black) to auto-format all `.py` files.
- [x] Update flake8 config to exclude very large files (lemmatization tables etc.)
- [x] Update code to be compatible with flake8 rules
- [x] Fix various small bugs, inconsistencies and messy stuff in the language data
- [x] Update docs to explain new code style (`black`, `flake8`, when to use `# fmt: off` and `# fmt: on` and what `# noqa` means)
Once #2932 is merged, which auto-formats and tidies up the CLI, we'll be able to run `flake8 spacy` actually get meaningful results.
At the moment, the code style and linting isn't applied automatically, but I'm hoping that the new [GitHub Actions](https://github.com/features/actions) will let us auto-format pull requests and post comments with relevant linting information.
### Types of change
enhancement, code style
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-11-30 19:03:03 +03:00
|
|
|
|
"PronType": "Prs",
|
|
|
|
|
"Person": "Three",
|
|
|
|
|
"Number": "Plur",
|
|
|
|
|
"Case": "Acc",
|
|
|
|
|
},
|
|
|
|
|
"mine": {
|
|
|
|
|
LEMMA: PRON_LEMMA,
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"POS": "PRON",
|
💫 Tidy up and auto-format .py files (#2983)
<!--- Provide a general summary of your changes in the title. -->
## Description
- [x] Use [`black`](https://github.com/ambv/black) to auto-format all `.py` files.
- [x] Update flake8 config to exclude very large files (lemmatization tables etc.)
- [x] Update code to be compatible with flake8 rules
- [x] Fix various small bugs, inconsistencies and messy stuff in the language data
- [x] Update docs to explain new code style (`black`, `flake8`, when to use `# fmt: off` and `# fmt: on` and what `# noqa` means)
Once #2932 is merged, which auto-formats and tidies up the CLI, we'll be able to run `flake8 spacy` actually get meaningful results.
At the moment, the code style and linting isn't applied automatically, but I'm hoping that the new [GitHub Actions](https://github.com/features/actions) will let us auto-format pull requests and post comments with relevant linting information.
### Types of change
enhancement, code style
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-11-30 19:03:03 +03:00
|
|
|
|
"PronType": "Prs",
|
|
|
|
|
"Person": "One",
|
|
|
|
|
"Number": "Sing",
|
|
|
|
|
"Poss": "Yes",
|
|
|
|
|
"Reflex": "Yes",
|
|
|
|
|
},
|
|
|
|
|
"his": {
|
|
|
|
|
LEMMA: PRON_LEMMA,
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"POS": "PRON",
|
💫 Tidy up and auto-format .py files (#2983)
<!--- Provide a general summary of your changes in the title. -->
## Description
- [x] Use [`black`](https://github.com/ambv/black) to auto-format all `.py` files.
- [x] Update flake8 config to exclude very large files (lemmatization tables etc.)
- [x] Update code to be compatible with flake8 rules
- [x] Fix various small bugs, inconsistencies and messy stuff in the language data
- [x] Update docs to explain new code style (`black`, `flake8`, when to use `# fmt: off` and `# fmt: on` and what `# noqa` means)
Once #2932 is merged, which auto-formats and tidies up the CLI, we'll be able to run `flake8 spacy` actually get meaningful results.
At the moment, the code style and linting isn't applied automatically, but I'm hoping that the new [GitHub Actions](https://github.com/features/actions) will let us auto-format pull requests and post comments with relevant linting information.
### Types of change
enhancement, code style
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-11-30 19:03:03 +03:00
|
|
|
|
"PronType": "Prs",
|
|
|
|
|
"Person": "Three",
|
|
|
|
|
"Number": "Sing",
|
|
|
|
|
"Gender": "Masc",
|
|
|
|
|
"Poss": "Yes",
|
|
|
|
|
"Reflex": "Yes",
|
|
|
|
|
},
|
|
|
|
|
"hers": {
|
|
|
|
|
LEMMA: PRON_LEMMA,
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"POS": "PRON",
|
💫 Tidy up and auto-format .py files (#2983)
<!--- Provide a general summary of your changes in the title. -->
## Description
- [x] Use [`black`](https://github.com/ambv/black) to auto-format all `.py` files.
- [x] Update flake8 config to exclude very large files (lemmatization tables etc.)
- [x] Update code to be compatible with flake8 rules
- [x] Fix various small bugs, inconsistencies and messy stuff in the language data
- [x] Update docs to explain new code style (`black`, `flake8`, when to use `# fmt: off` and `# fmt: on` and what `# noqa` means)
Once #2932 is merged, which auto-formats and tidies up the CLI, we'll be able to run `flake8 spacy` actually get meaningful results.
At the moment, the code style and linting isn't applied automatically, but I'm hoping that the new [GitHub Actions](https://github.com/features/actions) will let us auto-format pull requests and post comments with relevant linting information.
### Types of change
enhancement, code style
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-11-30 19:03:03 +03:00
|
|
|
|
"PronType": "Prs",
|
|
|
|
|
"Person": "Three",
|
|
|
|
|
"Number": "Sing",
|
|
|
|
|
"Gender": "Fem",
|
|
|
|
|
"Poss": "Yes",
|
|
|
|
|
"Reflex": "Yes",
|
|
|
|
|
},
|
|
|
|
|
"its": {
|
|
|
|
|
LEMMA: PRON_LEMMA,
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"POS": "PRON",
|
💫 Tidy up and auto-format .py files (#2983)
<!--- Provide a general summary of your changes in the title. -->
## Description
- [x] Use [`black`](https://github.com/ambv/black) to auto-format all `.py` files.
- [x] Update flake8 config to exclude very large files (lemmatization tables etc.)
- [x] Update code to be compatible with flake8 rules
- [x] Fix various small bugs, inconsistencies and messy stuff in the language data
- [x] Update docs to explain new code style (`black`, `flake8`, when to use `# fmt: off` and `# fmt: on` and what `# noqa` means)
Once #2932 is merged, which auto-formats and tidies up the CLI, we'll be able to run `flake8 spacy` actually get meaningful results.
At the moment, the code style and linting isn't applied automatically, but I'm hoping that the new [GitHub Actions](https://github.com/features/actions) will let us auto-format pull requests and post comments with relevant linting information.
### Types of change
enhancement, code style
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-11-30 19:03:03 +03:00
|
|
|
|
"PronType": "Prs",
|
|
|
|
|
"Person": "Three",
|
|
|
|
|
"Number": "Sing",
|
|
|
|
|
"Gender": "Neut",
|
|
|
|
|
"Poss": "Yes",
|
|
|
|
|
"Reflex": "Yes",
|
|
|
|
|
},
|
|
|
|
|
"ours": {
|
|
|
|
|
LEMMA: PRON_LEMMA,
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"POS": "PRON",
|
💫 Tidy up and auto-format .py files (#2983)
<!--- Provide a general summary of your changes in the title. -->
## Description
- [x] Use [`black`](https://github.com/ambv/black) to auto-format all `.py` files.
- [x] Update flake8 config to exclude very large files (lemmatization tables etc.)
- [x] Update code to be compatible with flake8 rules
- [x] Fix various small bugs, inconsistencies and messy stuff in the language data
- [x] Update docs to explain new code style (`black`, `flake8`, when to use `# fmt: off` and `# fmt: on` and what `# noqa` means)
Once #2932 is merged, which auto-formats and tidies up the CLI, we'll be able to run `flake8 spacy` actually get meaningful results.
At the moment, the code style and linting isn't applied automatically, but I'm hoping that the new [GitHub Actions](https://github.com/features/actions) will let us auto-format pull requests and post comments with relevant linting information.
### Types of change
enhancement, code style
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-11-30 19:03:03 +03:00
|
|
|
|
"PronType": "Prs",
|
|
|
|
|
"Person": "One",
|
|
|
|
|
"Number": "Plur",
|
|
|
|
|
"Poss": "Yes",
|
|
|
|
|
"Reflex": "Yes",
|
|
|
|
|
},
|
|
|
|
|
"yours": {
|
|
|
|
|
LEMMA: PRON_LEMMA,
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"POS": "PRON",
|
💫 Tidy up and auto-format .py files (#2983)
<!--- Provide a general summary of your changes in the title. -->
## Description
- [x] Use [`black`](https://github.com/ambv/black) to auto-format all `.py` files.
- [x] Update flake8 config to exclude very large files (lemmatization tables etc.)
- [x] Update code to be compatible with flake8 rules
- [x] Fix various small bugs, inconsistencies and messy stuff in the language data
- [x] Update docs to explain new code style (`black`, `flake8`, when to use `# fmt: off` and `# fmt: on` and what `# noqa` means)
Once #2932 is merged, which auto-formats and tidies up the CLI, we'll be able to run `flake8 spacy` actually get meaningful results.
At the moment, the code style and linting isn't applied automatically, but I'm hoping that the new [GitHub Actions](https://github.com/features/actions) will let us auto-format pull requests and post comments with relevant linting information.
### Types of change
enhancement, code style
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-11-30 19:03:03 +03:00
|
|
|
|
"PronType": "Prs",
|
|
|
|
|
"Person": "Two",
|
|
|
|
|
"Number": "Plur",
|
|
|
|
|
"Poss": "Yes",
|
|
|
|
|
"Reflex": "Yes",
|
|
|
|
|
},
|
|
|
|
|
"theirs": {
|
|
|
|
|
LEMMA: PRON_LEMMA,
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"POS": "PRON",
|
💫 Tidy up and auto-format .py files (#2983)
<!--- Provide a general summary of your changes in the title. -->
## Description
- [x] Use [`black`](https://github.com/ambv/black) to auto-format all `.py` files.
- [x] Update flake8 config to exclude very large files (lemmatization tables etc.)
- [x] Update code to be compatible with flake8 rules
- [x] Fix various small bugs, inconsistencies and messy stuff in the language data
- [x] Update docs to explain new code style (`black`, `flake8`, when to use `# fmt: off` and `# fmt: on` and what `# noqa` means)
Once #2932 is merged, which auto-formats and tidies up the CLI, we'll be able to run `flake8 spacy` actually get meaningful results.
At the moment, the code style and linting isn't applied automatically, but I'm hoping that the new [GitHub Actions](https://github.com/features/actions) will let us auto-format pull requests and post comments with relevant linting information.
### Types of change
enhancement, code style
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-11-30 19:03:03 +03:00
|
|
|
|
"PronType": "Prs",
|
|
|
|
|
"Person": "Three",
|
|
|
|
|
"Number": "Plur",
|
|
|
|
|
"Poss": "Yes",
|
|
|
|
|
"Reflex": "Yes",
|
|
|
|
|
},
|
|
|
|
|
"myself": {
|
|
|
|
|
LEMMA: PRON_LEMMA,
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"POS": "PRON",
|
💫 Tidy up and auto-format .py files (#2983)
<!--- Provide a general summary of your changes in the title. -->
## Description
- [x] Use [`black`](https://github.com/ambv/black) to auto-format all `.py` files.
- [x] Update flake8 config to exclude very large files (lemmatization tables etc.)
- [x] Update code to be compatible with flake8 rules
- [x] Fix various small bugs, inconsistencies and messy stuff in the language data
- [x] Update docs to explain new code style (`black`, `flake8`, when to use `# fmt: off` and `# fmt: on` and what `# noqa` means)
Once #2932 is merged, which auto-formats and tidies up the CLI, we'll be able to run `flake8 spacy` actually get meaningful results.
At the moment, the code style and linting isn't applied automatically, but I'm hoping that the new [GitHub Actions](https://github.com/features/actions) will let us auto-format pull requests and post comments with relevant linting information.
### Types of change
enhancement, code style
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-11-30 19:03:03 +03:00
|
|
|
|
"PronType": "Prs",
|
|
|
|
|
"Person": "One",
|
|
|
|
|
"Number": "Sing",
|
|
|
|
|
"Case": "Acc",
|
|
|
|
|
"Reflex": "Yes",
|
|
|
|
|
},
|
|
|
|
|
"yourself": {
|
|
|
|
|
LEMMA: PRON_LEMMA,
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"POS": "PRON",
|
💫 Tidy up and auto-format .py files (#2983)
<!--- Provide a general summary of your changes in the title. -->
## Description
- [x] Use [`black`](https://github.com/ambv/black) to auto-format all `.py` files.
- [x] Update flake8 config to exclude very large files (lemmatization tables etc.)
- [x] Update code to be compatible with flake8 rules
- [x] Fix various small bugs, inconsistencies and messy stuff in the language data
- [x] Update docs to explain new code style (`black`, `flake8`, when to use `# fmt: off` and `# fmt: on` and what `# noqa` means)
Once #2932 is merged, which auto-formats and tidies up the CLI, we'll be able to run `flake8 spacy` actually get meaningful results.
At the moment, the code style and linting isn't applied automatically, but I'm hoping that the new [GitHub Actions](https://github.com/features/actions) will let us auto-format pull requests and post comments with relevant linting information.
### Types of change
enhancement, code style
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-11-30 19:03:03 +03:00
|
|
|
|
"PronType": "Prs",
|
|
|
|
|
"Person": "Two",
|
|
|
|
|
"Case": "Acc",
|
|
|
|
|
"Reflex": "Yes",
|
|
|
|
|
},
|
|
|
|
|
"himself": {
|
|
|
|
|
LEMMA: PRON_LEMMA,
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"POS": "PRON",
|
💫 Tidy up and auto-format .py files (#2983)
<!--- Provide a general summary of your changes in the title. -->
## Description
- [x] Use [`black`](https://github.com/ambv/black) to auto-format all `.py` files.
- [x] Update flake8 config to exclude very large files (lemmatization tables etc.)
- [x] Update code to be compatible with flake8 rules
- [x] Fix various small bugs, inconsistencies and messy stuff in the language data
- [x] Update docs to explain new code style (`black`, `flake8`, when to use `# fmt: off` and `# fmt: on` and what `# noqa` means)
Once #2932 is merged, which auto-formats and tidies up the CLI, we'll be able to run `flake8 spacy` actually get meaningful results.
At the moment, the code style and linting isn't applied automatically, but I'm hoping that the new [GitHub Actions](https://github.com/features/actions) will let us auto-format pull requests and post comments with relevant linting information.
### Types of change
enhancement, code style
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-11-30 19:03:03 +03:00
|
|
|
|
"PronType": "Prs",
|
|
|
|
|
"Person": "Three",
|
|
|
|
|
"Number": "Sing",
|
|
|
|
|
"Case": "Acc",
|
|
|
|
|
"Gender": "Masc",
|
|
|
|
|
"Reflex": "Yes",
|
|
|
|
|
},
|
|
|
|
|
"herself": {
|
|
|
|
|
LEMMA: PRON_LEMMA,
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"POS": "PRON",
|
💫 Tidy up and auto-format .py files (#2983)
<!--- Provide a general summary of your changes in the title. -->
## Description
- [x] Use [`black`](https://github.com/ambv/black) to auto-format all `.py` files.
- [x] Update flake8 config to exclude very large files (lemmatization tables etc.)
- [x] Update code to be compatible with flake8 rules
- [x] Fix various small bugs, inconsistencies and messy stuff in the language data
- [x] Update docs to explain new code style (`black`, `flake8`, when to use `# fmt: off` and `# fmt: on` and what `# noqa` means)
Once #2932 is merged, which auto-formats and tidies up the CLI, we'll be able to run `flake8 spacy` actually get meaningful results.
At the moment, the code style and linting isn't applied automatically, but I'm hoping that the new [GitHub Actions](https://github.com/features/actions) will let us auto-format pull requests and post comments with relevant linting information.
### Types of change
enhancement, code style
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-11-30 19:03:03 +03:00
|
|
|
|
"PronType": "Prs",
|
|
|
|
|
"Person": "Three",
|
|
|
|
|
"Number": "Sing",
|
|
|
|
|
"Case": "Acc",
|
|
|
|
|
"Gender": "Fem",
|
|
|
|
|
"Reflex": "Yes",
|
|
|
|
|
},
|
|
|
|
|
"itself": {
|
|
|
|
|
LEMMA: PRON_LEMMA,
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"POS": "PRON",
|
💫 Tidy up and auto-format .py files (#2983)
<!--- Provide a general summary of your changes in the title. -->
## Description
- [x] Use [`black`](https://github.com/ambv/black) to auto-format all `.py` files.
- [x] Update flake8 config to exclude very large files (lemmatization tables etc.)
- [x] Update code to be compatible with flake8 rules
- [x] Fix various small bugs, inconsistencies and messy stuff in the language data
- [x] Update docs to explain new code style (`black`, `flake8`, when to use `# fmt: off` and `# fmt: on` and what `# noqa` means)
Once #2932 is merged, which auto-formats and tidies up the CLI, we'll be able to run `flake8 spacy` actually get meaningful results.
At the moment, the code style and linting isn't applied automatically, but I'm hoping that the new [GitHub Actions](https://github.com/features/actions) will let us auto-format pull requests and post comments with relevant linting information.
### Types of change
enhancement, code style
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-11-30 19:03:03 +03:00
|
|
|
|
"PronType": "Prs",
|
|
|
|
|
"Person": "Three",
|
|
|
|
|
"Number": "Sing",
|
|
|
|
|
"Case": "Acc",
|
|
|
|
|
"Gender": "Neut",
|
|
|
|
|
"Reflex": "Yes",
|
|
|
|
|
},
|
|
|
|
|
"themself": {
|
|
|
|
|
LEMMA: PRON_LEMMA,
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"POS": "PRON",
|
💫 Tidy up and auto-format .py files (#2983)
<!--- Provide a general summary of your changes in the title. -->
## Description
- [x] Use [`black`](https://github.com/ambv/black) to auto-format all `.py` files.
- [x] Update flake8 config to exclude very large files (lemmatization tables etc.)
- [x] Update code to be compatible with flake8 rules
- [x] Fix various small bugs, inconsistencies and messy stuff in the language data
- [x] Update docs to explain new code style (`black`, `flake8`, when to use `# fmt: off` and `# fmt: on` and what `# noqa` means)
Once #2932 is merged, which auto-formats and tidies up the CLI, we'll be able to run `flake8 spacy` actually get meaningful results.
At the moment, the code style and linting isn't applied automatically, but I'm hoping that the new [GitHub Actions](https://github.com/features/actions) will let us auto-format pull requests and post comments with relevant linting information.
### Types of change
enhancement, code style
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-11-30 19:03:03 +03:00
|
|
|
|
"PronType": "Prs",
|
|
|
|
|
"Person": "Three",
|
|
|
|
|
"Number": "Sing",
|
|
|
|
|
"Case": "Acc",
|
|
|
|
|
"Reflex": "Yes",
|
|
|
|
|
},
|
|
|
|
|
"ourselves": {
|
|
|
|
|
LEMMA: PRON_LEMMA,
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"POS": "PRON",
|
💫 Tidy up and auto-format .py files (#2983)
<!--- Provide a general summary of your changes in the title. -->
## Description
- [x] Use [`black`](https://github.com/ambv/black) to auto-format all `.py` files.
- [x] Update flake8 config to exclude very large files (lemmatization tables etc.)
- [x] Update code to be compatible with flake8 rules
- [x] Fix various small bugs, inconsistencies and messy stuff in the language data
- [x] Update docs to explain new code style (`black`, `flake8`, when to use `# fmt: off` and `# fmt: on` and what `# noqa` means)
Once #2932 is merged, which auto-formats and tidies up the CLI, we'll be able to run `flake8 spacy` actually get meaningful results.
At the moment, the code style and linting isn't applied automatically, but I'm hoping that the new [GitHub Actions](https://github.com/features/actions) will let us auto-format pull requests and post comments with relevant linting information.
### Types of change
enhancement, code style
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-11-30 19:03:03 +03:00
|
|
|
|
"PronType": "Prs",
|
|
|
|
|
"Person": "One",
|
|
|
|
|
"Number": "Plur",
|
|
|
|
|
"Case": "Acc",
|
|
|
|
|
"Reflex": "Yes",
|
|
|
|
|
},
|
|
|
|
|
"yourselves": {
|
|
|
|
|
LEMMA: PRON_LEMMA,
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"POS": "PRON",
|
💫 Tidy up and auto-format .py files (#2983)
<!--- Provide a general summary of your changes in the title. -->
## Description
- [x] Use [`black`](https://github.com/ambv/black) to auto-format all `.py` files.
- [x] Update flake8 config to exclude very large files (lemmatization tables etc.)
- [x] Update code to be compatible with flake8 rules
- [x] Fix various small bugs, inconsistencies and messy stuff in the language data
- [x] Update docs to explain new code style (`black`, `flake8`, when to use `# fmt: off` and `# fmt: on` and what `# noqa` means)
Once #2932 is merged, which auto-formats and tidies up the CLI, we'll be able to run `flake8 spacy` actually get meaningful results.
At the moment, the code style and linting isn't applied automatically, but I'm hoping that the new [GitHub Actions](https://github.com/features/actions) will let us auto-format pull requests and post comments with relevant linting information.
### Types of change
enhancement, code style
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-11-30 19:03:03 +03:00
|
|
|
|
"PronType": "Prs",
|
|
|
|
|
"Person": "Two",
|
|
|
|
|
"Case": "Acc",
|
|
|
|
|
"Reflex": "Yes",
|
|
|
|
|
},
|
|
|
|
|
"themselves": {
|
|
|
|
|
LEMMA: PRON_LEMMA,
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"POS": "PRON",
|
💫 Tidy up and auto-format .py files (#2983)
<!--- Provide a general summary of your changes in the title. -->
## Description
- [x] Use [`black`](https://github.com/ambv/black) to auto-format all `.py` files.
- [x] Update flake8 config to exclude very large files (lemmatization tables etc.)
- [x] Update code to be compatible with flake8 rules
- [x] Fix various small bugs, inconsistencies and messy stuff in the language data
- [x] Update docs to explain new code style (`black`, `flake8`, when to use `# fmt: off` and `# fmt: on` and what `# noqa` means)
Once #2932 is merged, which auto-formats and tidies up the CLI, we'll be able to run `flake8 spacy` actually get meaningful results.
At the moment, the code style and linting isn't applied automatically, but I'm hoping that the new [GitHub Actions](https://github.com/features/actions) will let us auto-format pull requests and post comments with relevant linting information.
### Types of change
enhancement, code style
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-11-30 19:03:03 +03:00
|
|
|
|
"PronType": "Prs",
|
|
|
|
|
"Person": "Three",
|
|
|
|
|
"Number": "Plur",
|
|
|
|
|
"Case": "Acc",
|
|
|
|
|
"Reflex": "Yes",
|
|
|
|
|
},
|
2016-12-18 17:36:15 +03:00
|
|
|
|
},
|
|
|
|
|
"PRP$": {
|
💫 Tidy up and auto-format .py files (#2983)
<!--- Provide a general summary of your changes in the title. -->
## Description
- [x] Use [`black`](https://github.com/ambv/black) to auto-format all `.py` files.
- [x] Update flake8 config to exclude very large files (lemmatization tables etc.)
- [x] Update code to be compatible with flake8 rules
- [x] Fix various small bugs, inconsistencies and messy stuff in the language data
- [x] Update docs to explain new code style (`black`, `flake8`, when to use `# fmt: off` and `# fmt: on` and what `# noqa` means)
Once #2932 is merged, which auto-formats and tidies up the CLI, we'll be able to run `flake8 spacy` actually get meaningful results.
At the moment, the code style and linting isn't applied automatically, but I'm hoping that the new [GitHub Actions](https://github.com/features/actions) will let us auto-format pull requests and post comments with relevant linting information.
### Types of change
enhancement, code style
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-11-30 19:03:03 +03:00
|
|
|
|
"my": {
|
|
|
|
|
LEMMA: PRON_LEMMA,
|
|
|
|
|
"Person": "One",
|
|
|
|
|
"Number": "Sing",
|
|
|
|
|
"PronType": "Prs",
|
|
|
|
|
"Poss": "Yes",
|
|
|
|
|
},
|
|
|
|
|
"your": {LEMMA: PRON_LEMMA, "Person": "Two", "PronType": "Prs", "Poss": "Yes"},
|
|
|
|
|
"his": {
|
|
|
|
|
LEMMA: PRON_LEMMA,
|
|
|
|
|
"Person": "Three",
|
|
|
|
|
"Number": "Sing",
|
|
|
|
|
"Gender": "Masc",
|
|
|
|
|
"PronType": "Prs",
|
|
|
|
|
"Poss": "Yes",
|
|
|
|
|
},
|
|
|
|
|
"her": {
|
|
|
|
|
LEMMA: PRON_LEMMA,
|
|
|
|
|
"Person": "Three",
|
|
|
|
|
"Number": "Sing",
|
|
|
|
|
"Gender": "Fem",
|
|
|
|
|
"PronType": "Prs",
|
|
|
|
|
"Poss": "Yes",
|
|
|
|
|
},
|
|
|
|
|
"its": {
|
|
|
|
|
LEMMA: PRON_LEMMA,
|
|
|
|
|
"Person": "Three",
|
|
|
|
|
"Number": "Sing",
|
|
|
|
|
"Gender": "Neut",
|
|
|
|
|
"PronType": "Prs",
|
|
|
|
|
"Poss": "Yes",
|
|
|
|
|
},
|
|
|
|
|
"our": {
|
|
|
|
|
LEMMA: PRON_LEMMA,
|
|
|
|
|
"Person": "One",
|
|
|
|
|
"Number": "Plur",
|
|
|
|
|
"PronType": "Prs",
|
|
|
|
|
"Poss": "Yes",
|
|
|
|
|
},
|
|
|
|
|
"their": {
|
|
|
|
|
LEMMA: PRON_LEMMA,
|
|
|
|
|
"Person": "Three",
|
|
|
|
|
"Number": "Plur",
|
|
|
|
|
"PronType": "Prs",
|
|
|
|
|
"Poss": "Yes",
|
|
|
|
|
},
|
2016-12-18 17:36:15 +03:00
|
|
|
|
},
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"RB": {word: {"POS": "PART"} for word in ["not", "n't", "nt", "n’t"]},
|
|
|
|
|
"VB": {
|
|
|
|
|
word: {"POS": "AUX"}
|
|
|
|
|
for word in ["be", "have", "do", "get", "of", "am", "are", "'ve"]
|
|
|
|
|
},
|
|
|
|
|
"VBN": {"been": {LEMMA: "be", "POS": "AUX"}},
|
|
|
|
|
"VBG": {"being": {LEMMA: "be", "POS": "AUX"}},
|
2016-12-18 17:36:15 +03:00
|
|
|
|
"VBZ": {
|
💫 Tidy up and auto-format .py files (#2983)
<!--- Provide a general summary of your changes in the title. -->
## Description
- [x] Use [`black`](https://github.com/ambv/black) to auto-format all `.py` files.
- [x] Update flake8 config to exclude very large files (lemmatization tables etc.)
- [x] Update code to be compatible with flake8 rules
- [x] Fix various small bugs, inconsistencies and messy stuff in the language data
- [x] Update docs to explain new code style (`black`, `flake8`, when to use `# fmt: off` and `# fmt: on` and what `# noqa` means)
Once #2932 is merged, which auto-formats and tidies up the CLI, we'll be able to run `flake8 spacy` actually get meaningful results.
At the moment, the code style and linting isn't applied automatically, but I'm hoping that the new [GitHub Actions](https://github.com/features/actions) will let us auto-format pull requests and post comments with relevant linting information.
### Types of change
enhancement, code style
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-11-30 19:03:03 +03:00
|
|
|
|
"am": {
|
|
|
|
|
LEMMA: "be",
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"POS": "AUX",
|
💫 Tidy up and auto-format .py files (#2983)
<!--- Provide a general summary of your changes in the title. -->
## Description
- [x] Use [`black`](https://github.com/ambv/black) to auto-format all `.py` files.
- [x] Update flake8 config to exclude very large files (lemmatization tables etc.)
- [x] Update code to be compatible with flake8 rules
- [x] Fix various small bugs, inconsistencies and messy stuff in the language data
- [x] Update docs to explain new code style (`black`, `flake8`, when to use `# fmt: off` and `# fmt: on` and what `# noqa` means)
Once #2932 is merged, which auto-formats and tidies up the CLI, we'll be able to run `flake8 spacy` actually get meaningful results.
At the moment, the code style and linting isn't applied automatically, but I'm hoping that the new [GitHub Actions](https://github.com/features/actions) will let us auto-format pull requests and post comments with relevant linting information.
### Types of change
enhancement, code style
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-11-30 19:03:03 +03:00
|
|
|
|
"VerbForm": "Fin",
|
|
|
|
|
"Person": "One",
|
|
|
|
|
"Tense": "Pres",
|
|
|
|
|
"Mood": "Ind",
|
|
|
|
|
},
|
|
|
|
|
"are": {
|
|
|
|
|
LEMMA: "be",
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"POS": "AUX",
|
💫 Tidy up and auto-format .py files (#2983)
<!--- Provide a general summary of your changes in the title. -->
## Description
- [x] Use [`black`](https://github.com/ambv/black) to auto-format all `.py` files.
- [x] Update flake8 config to exclude very large files (lemmatization tables etc.)
- [x] Update code to be compatible with flake8 rules
- [x] Fix various small bugs, inconsistencies and messy stuff in the language data
- [x] Update docs to explain new code style (`black`, `flake8`, when to use `# fmt: off` and `# fmt: on` and what `# noqa` means)
Once #2932 is merged, which auto-formats and tidies up the CLI, we'll be able to run `flake8 spacy` actually get meaningful results.
At the moment, the code style and linting isn't applied automatically, but I'm hoping that the new [GitHub Actions](https://github.com/features/actions) will let us auto-format pull requests and post comments with relevant linting information.
### Types of change
enhancement, code style
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-11-30 19:03:03 +03:00
|
|
|
|
"VerbForm": "Fin",
|
|
|
|
|
"Person": "Two",
|
|
|
|
|
"Tense": "Pres",
|
|
|
|
|
"Mood": "Ind",
|
|
|
|
|
},
|
|
|
|
|
"is": {
|
|
|
|
|
LEMMA: "be",
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"POS": "AUX",
|
💫 Tidy up and auto-format .py files (#2983)
<!--- Provide a general summary of your changes in the title. -->
## Description
- [x] Use [`black`](https://github.com/ambv/black) to auto-format all `.py` files.
- [x] Update flake8 config to exclude very large files (lemmatization tables etc.)
- [x] Update code to be compatible with flake8 rules
- [x] Fix various small bugs, inconsistencies and messy stuff in the language data
- [x] Update docs to explain new code style (`black`, `flake8`, when to use `# fmt: off` and `# fmt: on` and what `# noqa` means)
Once #2932 is merged, which auto-formats and tidies up the CLI, we'll be able to run `flake8 spacy` actually get meaningful results.
At the moment, the code style and linting isn't applied automatically, but I'm hoping that the new [GitHub Actions](https://github.com/features/actions) will let us auto-format pull requests and post comments with relevant linting information.
### Types of change
enhancement, code style
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-11-30 19:03:03 +03:00
|
|
|
|
"VerbForm": "Fin",
|
|
|
|
|
"Person": "Three",
|
|
|
|
|
"Tense": "Pres",
|
|
|
|
|
"Mood": "Ind",
|
|
|
|
|
},
|
|
|
|
|
"'re": {
|
|
|
|
|
LEMMA: "be",
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"POS": "AUX",
|
💫 Tidy up and auto-format .py files (#2983)
<!--- Provide a general summary of your changes in the title. -->
## Description
- [x] Use [`black`](https://github.com/ambv/black) to auto-format all `.py` files.
- [x] Update flake8 config to exclude very large files (lemmatization tables etc.)
- [x] Update code to be compatible with flake8 rules
- [x] Fix various small bugs, inconsistencies and messy stuff in the language data
- [x] Update docs to explain new code style (`black`, `flake8`, when to use `# fmt: off` and `# fmt: on` and what `# noqa` means)
Once #2932 is merged, which auto-formats and tidies up the CLI, we'll be able to run `flake8 spacy` actually get meaningful results.
At the moment, the code style and linting isn't applied automatically, but I'm hoping that the new [GitHub Actions](https://github.com/features/actions) will let us auto-format pull requests and post comments with relevant linting information.
### Types of change
enhancement, code style
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-11-30 19:03:03 +03:00
|
|
|
|
"VerbForm": "Fin",
|
|
|
|
|
"Person": "Two",
|
|
|
|
|
"Tense": "Pres",
|
|
|
|
|
"Mood": "Ind",
|
|
|
|
|
},
|
|
|
|
|
"'s": {
|
|
|
|
|
LEMMA: "be",
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"POS": "AUX",
|
💫 Tidy up and auto-format .py files (#2983)
<!--- Provide a general summary of your changes in the title. -->
## Description
- [x] Use [`black`](https://github.com/ambv/black) to auto-format all `.py` files.
- [x] Update flake8 config to exclude very large files (lemmatization tables etc.)
- [x] Update code to be compatible with flake8 rules
- [x] Fix various small bugs, inconsistencies and messy stuff in the language data
- [x] Update docs to explain new code style (`black`, `flake8`, when to use `# fmt: off` and `# fmt: on` and what `# noqa` means)
Once #2932 is merged, which auto-formats and tidies up the CLI, we'll be able to run `flake8 spacy` actually get meaningful results.
At the moment, the code style and linting isn't applied automatically, but I'm hoping that the new [GitHub Actions](https://github.com/features/actions) will let us auto-format pull requests and post comments with relevant linting information.
### Types of change
enhancement, code style
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-11-30 19:03:03 +03:00
|
|
|
|
"VerbForm": "Fin",
|
|
|
|
|
"Person": "Three",
|
|
|
|
|
"Tense": "Pres",
|
|
|
|
|
"Mood": "Ind",
|
|
|
|
|
},
|
2019-03-21 16:22:12 +03:00
|
|
|
|
"has": {LEMMA: "have", "POS": "AUX"},
|
|
|
|
|
"does": {LEMMA: "do", "POS": "AUX"},
|
2016-12-18 17:36:15 +03:00
|
|
|
|
},
|
|
|
|
|
"VBP": {
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"are": {
|
|
|
|
|
LEMMA: "be",
|
|
|
|
|
"POS": "AUX",
|
|
|
|
|
"VerbForm": "Fin",
|
|
|
|
|
"Tense": "Pres",
|
|
|
|
|
"Mood": "Ind",
|
|
|
|
|
},
|
|
|
|
|
"'re": {
|
|
|
|
|
LEMMA: "be",
|
|
|
|
|
"POS": "AUX",
|
|
|
|
|
"VerbForm": "Fin",
|
|
|
|
|
"Tense": "Pres",
|
|
|
|
|
"Mood": "Ind",
|
|
|
|
|
},
|
💫 Tidy up and auto-format .py files (#2983)
<!--- Provide a general summary of your changes in the title. -->
## Description
- [x] Use [`black`](https://github.com/ambv/black) to auto-format all `.py` files.
- [x] Update flake8 config to exclude very large files (lemmatization tables etc.)
- [x] Update code to be compatible with flake8 rules
- [x] Fix various small bugs, inconsistencies and messy stuff in the language data
- [x] Update docs to explain new code style (`black`, `flake8`, when to use `# fmt: off` and `# fmt: on` and what `# noqa` means)
Once #2932 is merged, which auto-formats and tidies up the CLI, we'll be able to run `flake8 spacy` actually get meaningful results.
At the moment, the code style and linting isn't applied automatically, but I'm hoping that the new [GitHub Actions](https://github.com/features/actions) will let us auto-format pull requests and post comments with relevant linting information.
### Types of change
enhancement, code style
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-11-30 19:03:03 +03:00
|
|
|
|
"am": {
|
|
|
|
|
LEMMA: "be",
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"POS": "AUX",
|
💫 Tidy up and auto-format .py files (#2983)
<!--- Provide a general summary of your changes in the title. -->
## Description
- [x] Use [`black`](https://github.com/ambv/black) to auto-format all `.py` files.
- [x] Update flake8 config to exclude very large files (lemmatization tables etc.)
- [x] Update code to be compatible with flake8 rules
- [x] Fix various small bugs, inconsistencies and messy stuff in the language data
- [x] Update docs to explain new code style (`black`, `flake8`, when to use `# fmt: off` and `# fmt: on` and what `# noqa` means)
Once #2932 is merged, which auto-formats and tidies up the CLI, we'll be able to run `flake8 spacy` actually get meaningful results.
At the moment, the code style and linting isn't applied automatically, but I'm hoping that the new [GitHub Actions](https://github.com/features/actions) will let us auto-format pull requests and post comments with relevant linting information.
### Types of change
enhancement, code style
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-11-30 19:03:03 +03:00
|
|
|
|
"VerbForm": "Fin",
|
|
|
|
|
"Person": "One",
|
|
|
|
|
"Tense": "Pres",
|
|
|
|
|
"Mood": "Ind",
|
|
|
|
|
},
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"do": {"POS": "AUX"},
|
|
|
|
|
"have": {"POS": "AUX"},
|
|
|
|
|
"'m": {"POS": "AUX", LEMMA: "be"},
|
|
|
|
|
"'ve": {"POS": "AUX"},
|
|
|
|
|
"'s": {"POS": "AUX"},
|
|
|
|
|
"is": {"POS": "AUX"},
|
|
|
|
|
"'d": {"POS": "AUX"},
|
2016-12-18 17:36:15 +03:00
|
|
|
|
},
|
|
|
|
|
"VBD": {
|
2019-03-21 15:53:44 +03:00
|
|
|
|
"was": {
|
|
|
|
|
LEMMA: "be",
|
|
|
|
|
"POS": "AUX",
|
|
|
|
|
"VerbForm": "Fin",
|
|
|
|
|
"Tense": "Past",
|
|
|
|
|
"Number": "Sing",
|
|
|
|
|
},
|
|
|
|
|
"were": {
|
|
|
|
|
LEMMA: "be",
|
|
|
|
|
"POS": "AUX",
|
|
|
|
|
"VerbForm": "Fin",
|
|
|
|
|
"Tense": "Past",
|
|
|
|
|
"Number": "Plur",
|
|
|
|
|
},
|
2019-03-21 16:22:12 +03:00
|
|
|
|
"did": {LEMMA: "do", "POS": "AUX"},
|
|
|
|
|
"had": {LEMMA: "have", "POS": "AUX"},
|
|
|
|
|
"'d": {LEMMA: "have", "POS": "AUX"},
|
💫 Tidy up and auto-format .py files (#2983)
<!--- Provide a general summary of your changes in the title. -->
## Description
- [x] Use [`black`](https://github.com/ambv/black) to auto-format all `.py` files.
- [x] Update flake8 config to exclude very large files (lemmatization tables etc.)
- [x] Update code to be compatible with flake8 rules
- [x] Fix various small bugs, inconsistencies and messy stuff in the language data
- [x] Update docs to explain new code style (`black`, `flake8`, when to use `# fmt: off` and `# fmt: on` and what `# noqa` means)
Once #2932 is merged, which auto-formats and tidies up the CLI, we'll be able to run `flake8 spacy` actually get meaningful results.
At the moment, the code style and linting isn't applied automatically, but I'm hoping that the new [GitHub Actions](https://github.com/features/actions) will let us auto-format pull requests and post comments with relevant linting information.
### Types of change
enhancement, code style
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-11-30 19:03:03 +03:00
|
|
|
|
},
|
2016-12-18 17:36:15 +03:00
|
|
|
|
}
|
2017-03-18 19:27:11 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for tag, rules in MORPH_RULES.items():
|
|
|
|
|
for key, attrs in dict(rules).items():
|
|
|
|
|
rules[key.title()] = attrs
|