Skip to content

Rename _CursesWindow to window - #5180

Merged
Akuli merged 3 commits into
python:masterfrom
rmccampbell:patch-1
Apr 5, 2021
Merged

Rename _CursesWindow to window#5180
Akuli merged 3 commits into
python:masterfrom
rmccampbell:patch-1

Conversation

@rmccampbell

Copy link
Copy Markdown
Contributor

The name _CursesWindow is not exposed at runtime which makes explicit type annotation difficult. It has to be wrapped in quotes, and this doesn't seem to work for all type checkers: PyLance's typechecker accepts it but Jedi's doesn't (tested in VS Code). This is especially annoying because with curses.wrapper(callback) there is no way to infer the type of the passed window except with an explicit annotation.

Experimentally, the type is exposed under the name _curses.window in Python 3.9 on both Ubuntu and Windows (via windows-curses). While this is not explicitly documented as public, it is the name used for all the method docs, and it is probably unlikely to change since some might interpret the lack of underscore as indicating it is public. Unfortunately it doesn't seem to be exposed as such in Python 2, but ¯\_(ツ)_/¯. Using the runtime name should allow type checking to work with most typecheckers/platforms without quotes, and the old name can be kept as an alias for backwards compatibility.

The name _CursesWindow is not exposed at runtime which makes explicit type annotation difficult. It has to be wrapped in quotes, and this doesn't seem to work for all type checkers: PyLance's typechecker accepts it but Jedi's doesn't (tested in VS Code). This is especially annoying because with curses.wrapper(callback) there is no way to infer the type of the passed window except with an explicit annotation.
Experimentally, the type is exposed under the name "_curses.window" in Python 3.9 on both Ubuntu and Windows (via [windows-curses](https://pypi.org/project/windows-curses/)). While this is not explicitly documented as public, it is the name used for all the window method docs, and it is probably unlikely to change since some might interpret the lack of underscore as indicating it is public. Unfortunately it doesn't seem to be exposed as such in Python 2, but `¯\_(ツ)_/¯`. Using the runtime name should allow type checking to work with most typecheckers/platforms without quotes, and the old name can be kept as an alias for backwards compatibility.
I discovered the name _curses.window is only actually exported in Python >= 3.8 so I moved the name behind a version check, and reverted the original class name to _CursesWindow
@rmccampbell

Copy link
Copy Markdown
Contributor Author

Turns out the name _curses.window is only exposed in >= 3.8, so I put the new name behind a version test and reverted to the old name everywhere else.

Comment thread stdlib/_curses.pyi Outdated
@Akuli
Akuli merged commit 701e741 into python:master Apr 5, 2021
@rmccampbell
rmccampbell deleted the patch-1 branch April 6, 2021 00:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants