KotlinIsland / KotlinIsland/basedmypy
disable promotions
Nobody has claimed this yet.
- Dominant language
- Python
- Stars
- 202
- Forks
- 6
- PR merge metrics
- No merged PRs in 30d
Description
make `float` not act like `float | int` (and `complex` act like `complex | float`) , and `bytes` not act like `bytes | memoryview | bytearray`
we can still infer `float | int` though:
```py
a = 1
reveal_type(a) # float | int
```
will support configuration per module, to preserve compatibility:
```py
from thirdparty import some_float
reveal_type(some_float) # float | int
```
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start by locating the type-promotion logic and the configuration entry point for per-module behavior. Use the examples in the issue to define the expected handling of float, complex, bytes, and inferred float | int types, then verify that compatibility configuration remains possible.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- python
- Domain
- devtools
- Issue type
- Feature
- Difficulty
- 5/5
- Estimated time
- Over a week
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 25/100