Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Unsupported Python Features

Phoenix edited this pageOct 16, 2024 ·8 revisions

Some Python features are not currently supported by mypy.

It should be relatively easy to add support for these features:

  • Double underscore name mangling in classes (you can use double underscores but the names are not treated as special)

The features in the list below are more difficult to support. Many of these could be supported, at least in a restricted form, but some will likely remain unsupported.

  • Metaclasses
    • Mypy understands simple metaclasses, i.e. it performs attribute and method lookup
    • Mypy plugin mechanism allows mypy to understand specific metaclasses
  • Class decorators that modify a class
    • Similar to metaclasses
  • Run-time evaluated base classes likeclass A(foo()): pass
    • Similar to metaclasses
  • Run-time addition/mutation of base classes (e.g. registering ABCs)
  • Runtime mutation of classes and modules (runtime definition of new methods/functions, etc.)
  • Conditional definition of classes (e.g. within if statement)
  • Certain idioms involving conditional imports
  • __all__ with complex initializer / mutated value
  • eval andexec (these can be used but they are opaque to the type checker)

If your code uses any of the above unsupported features and is causing errors when mypy checks your code, you can bypass it by adding# type: ignore to the line that causes the error.

Clone this wiki locally

[8]ページ先頭

©2009-2025 Movatter.jp