-
Thoughts on the tutorial document.
## Basic Topics
* Set up a basic venv with a pinned mypy version. (For compatibility reasons.) Should add a note about using a current version in production.
…
-
I'm new to using `mypy` and Python types. Am I missing a step?
```
88665a4a7a7f:~ amooren$ mypy /tmp/pst.py
/tmp/pst.py:1: error: Skipping analyzing "typed_pyspark": module is installed, but miss…
-
I have started generating/creating typing hints for _boltons_ and would like to make them available for others to use. There are basically 3 ways that I can do that:
1. Add to the actual code (usin…
-
Recently it seems that more and more Python libraries include typing hints. Personally, I'm a fan of type hints while developing. Are there any plans to add typing hints to Fiona?
I'm not 100% sur…
-
## Environment
MacOS, latest version of RTOS SDK
Documentation from https://docs.espressif.com/projects/esp8266-rtos-sdk/en/latest/get-started/index.html
## Problem Description - get-started d…
-
Add type hints to all (public API) code make the distribution PEP 561 compliant. This allows `mypy` (and other tools?) to find the type hints and use them in linting.
In practice, add `py.typed` fi…
-
`test_mypy.py`:
```python
import pymongo # this can be any third-party module without stubs
Collection = pymongo.collection.Collection
def func(a: Collection) -> bool:
return True
```
…
-
I get:
```
Skipping analyzing "icalendar": module is installed, but missing library stubs or py.typed marker - mypy
```
-
### Pandas version checks
- [X] I have checked that the issue still exists on the latest versions of the docs on `main` [here](https://pandas.pydata.org/docs/dev/)
### Location of the documentation…
-
This has been briefly discussed before, but I think it would be a good idea if we started distributing the stdlib types in a separate package `types-stdlib`, similar to third-party packages:
* Type…