Can I omit Optional if I set default to None?

后端 未结 2 1193
刺人心
刺人心 2021-02-11 16:56

For example:

def foo(bar: int = None):
    pass

When I check a type/annotation of bar pycharm

2条回答
  •  时光说笑
    2021-02-11 17:40

    A previous version of the standard, as defined in PEP 484 allowed for this.

    However, the most up to date version states the following in the Union section:

    A past version of this PEP allowed type checkers to assume an optional type when the default value is None, as in this code:

    def handle_employee(e: Employee = None): ...
    

    This would have been treated as equivalent to:

    def handle_employee(e: Optional[Employee] = None) -> None: ...
    

    This is no longer the recommended behavior. Type checkers should move towards requiring the optional type to be made explicit.

    I'm glad about this. To my eyes, it actually looks jarring.

提交回复
热议问题