-
Notifications
You must be signed in to change notification settings - Fork 350
Typechecking improvements #1738
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,133 @@ | ||
# DO NOT EDIT BY HAND: is automatically re-generated by make.py | ||
.PHONY: default | ||
default: | ||
python ./make.py --help | ||
|
||
.PHONY: clean | ||
clean: | ||
python ./make.py clean | ||
|
||
.PHONY: html | ||
html: | ||
python ./make.py html | ||
|
||
.PHONY: serve | ||
serve: | ||
python ./make.py serve | ||
|
||
.PHONY: dirhtml | ||
dirhtml: | ||
python ./make.py dirhtml | ||
|
||
.PHONY: singlehtml | ||
singlehtml: | ||
python ./make.py singlehtml | ||
|
||
.PHONY: pickle | ||
pickle: | ||
python ./make.py pickle | ||
|
||
.PHONY: json | ||
json: | ||
python ./make.py json | ||
|
||
.PHONY: htmlhelp | ||
htmlhelp: | ||
python ./make.py htmlhelp | ||
|
||
.PHONY: qthelp | ||
qthelp: | ||
python ./make.py qthelp | ||
|
||
.PHONY: applehelp | ||
applehelp: | ||
python ./make.py applehelp | ||
|
||
.PHONY: devhelp | ||
devhelp: | ||
python ./make.py devhelp | ||
|
||
.PHONY: epub | ||
epub: | ||
python ./make.py epub | ||
|
||
.PHONY: latex | ||
latex: | ||
python ./make.py latex | ||
|
||
.PHONY: latexpdf | ||
latexpdf: | ||
python ./make.py latexpdf | ||
|
||
.PHONY: latexpdfja | ||
latexpdfja: | ||
python ./make.py latexpdfja | ||
|
||
.PHONY: text | ||
text: | ||
python ./make.py text | ||
|
||
.PHONY: man | ||
man: | ||
python ./make.py man | ||
|
||
.PHONY: texinfo | ||
texinfo: | ||
python ./make.py texinfo | ||
|
||
.PHONY: info | ||
info: | ||
python ./make.py info | ||
|
||
.PHONY: gettext | ||
gettext: | ||
python ./make.py gettext | ||
|
||
.PHONY: changes | ||
changes: | ||
python ./make.py changes | ||
|
||
.PHONY: linkcheck | ||
linkcheck: | ||
python ./make.py linkcheck | ||
|
||
.PHONY: doctest | ||
doctest: | ||
python ./make.py doctest | ||
|
||
.PHONY: coverage | ||
coverage: | ||
python ./make.py coverage | ||
|
||
.PHONY: xml | ||
xml: | ||
python ./make.py xml | ||
|
||
.PHONY: pseudoxml | ||
pseudoxml: | ||
python ./make.py pseudoxml | ||
|
||
.PHONY: lint | ||
lint: | ||
python ./make.py lint | ||
|
||
.PHONY: ruff | ||
ruff: | ||
python ./make.py ruff | ||
|
||
.PHONY: mypy | ||
mypy: | ||
python ./make.py mypy | ||
|
||
.PHONY: pyright | ||
pyright: | ||
python ./make.py pyright | ||
|
||
.PHONY: test_full | ||
test_full: | ||
python ./make.py test_full | ||
|
||
.PHONY: test | ||
test: | ||
python ./make.py test | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
# DO NOT EDIT BY HAND: is automatically re-generated by make.py | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same as the comment on There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We could just The only benefit of versioning it in git is that it exists before the first time you run |
||
set shell := ["python", "./make.py"] | ||
default: | ||
@{{"--help"}} | ||
|
||
clean: | ||
@clean | ||
|
||
html: | ||
@html | ||
|
||
serve: | ||
@serve | ||
|
||
dirhtml: | ||
@dirhtml | ||
|
||
singlehtml: | ||
@singlehtml | ||
|
||
pickle: | ||
@pickle | ||
|
||
json: | ||
@json | ||
|
||
htmlhelp: | ||
@htmlhelp | ||
|
||
qthelp: | ||
@qthelp | ||
|
||
applehelp: | ||
@applehelp | ||
|
||
devhelp: | ||
@devhelp | ||
|
||
epub: | ||
@epub | ||
|
||
latex: | ||
@latex | ||
|
||
latexpdf: | ||
@latexpdf | ||
|
||
latexpdfja: | ||
@latexpdfja | ||
|
||
text: | ||
@text | ||
|
||
man: | ||
@man | ||
|
||
texinfo: | ||
@texinfo | ||
|
||
info: | ||
@info | ||
|
||
gettext: | ||
@gettext | ||
|
||
changes: | ||
@changes | ||
|
||
linkcheck: | ||
@linkcheck | ||
|
||
doctest: | ||
@doctest | ||
|
||
coverage: | ||
@coverage | ||
|
||
xml: | ||
@xml | ||
|
||
pseudoxml: | ||
@pseudoxml | ||
|
||
lint: | ||
@lint | ||
|
||
ruff: | ||
@ruff | ||
|
||
mypy: | ||
@mypy | ||
|
||
pyright: | ||
@pyright | ||
|
||
test_full: | ||
@test_full | ||
|
||
test: | ||
@test | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure about this.
We had auto-generated parts before, specifically
__init__.py
. If I remember correctly, we removed auto-generation in large part due to constant confusion over what needed to be updated.