← 返回首页
PEP 767 – Annotating Read-Only Attributes | peps.python.org Following system colour scheme Selected dark colour scheme Selected light colour scheme

Python Enhancement Proposals

Toggle light / dark / auto colour theme PEP 767 – Annotating Read-Only Attributes

PEP 767 – Annotating Read-Only Attributes

Author: Łukasz Modzelewski Sponsor: Carl Meyer <carl at oddbird.net> Discussions-To: Discourse thread Status: Draft Type: Standards Track Topic: Typing Created: 18-Nov-2024 Python-Version: 3.15 Post-History: 09-Oct-2024 05-Dec-2024 Table of Contents

Abstract

PEP 705 introduced the typing.ReadOnly type qualifier to allow defining read-only typing.TypedDict items.

This PEP proposes using ReadOnly in annotations of class and protocol attributes, as a single concise way to mark them read-only.

Akin to PEP 705, it makes no changes to setting attributes at runtime. Correct usage of read-only attributes is intended to be enforced only by static type checkers.

Terminology

This PEP uses “read-only” to describe attributes which may be read, but not assigned to (except in limited cases to support initialization) or deleted.

Motivation

The Python type system lacks a single concise way to mark an attribute read-only. This feature is present in other statically and gradually typed languages (such as C# or TypeScript), and is useful for removing the ability to assign to or delete an attribute at a type checker level, as well as defining a broad interface for structural subtyping.

Classes

Today, there are three major ways of achieving read-only attributes, honored by type checkers:

Protocols

Suppose a Protocol member name: T defining two requirements:

  1. hasattr(obj, "name")
  2. isinstance(obj.name, T)

Those requirements are satisfiable at runtime by all of the following:

The current typing spec allows creation of such protocol members using (abstract) properties:

class HasName(Protocol): @property def name(self) -> T: ...

This syntax has several drawbacks:

Rationale

These problems can be resolved by an attribute-level type qualifier. ReadOnly has been chosen for this role, as its name conveys the intent well, and the newly proposed changes complement its semantics defined in PEP 705.

A class with a read-only instance attribute can now be defined as:

from typing import ReadOnly class Member: def __init__(self, id: int) -> None: self.id: ReadOnly[int] = id

…and the protocol described in Protocols is now just:

from typing import Protocol, ReadOnly class HasName(Protocol): name: ReadOnly[str]

Specification

Usage

The typing.ReadOnly type qualifier becomes a valid annotation for attributes of nominal classes and protocols. It can be used at class-level and within __init__ to mark individual attributes read-only:

class Book: id: ReadOnly[int] def __init__(self, id: int, name: str) -> None: self.id = id self.name: ReadOnly[str] = name

Use of bare ReadOnly (without [<type>]) is not allowed. Type checkers should error on any attempt to assign to or delete an attribute annotated with ReadOnly, except in contexts described under Initialization.

It should also be an error to delete an attribute annotated as Final. (This is not currently specified.)

Use of ReadOnly in annotations at other sites where it currently has no meaning (such as local/global variables or function parameters) is considered out of scope for this PEP, and remains forbidden.

ReadOnly does not influence the mutability of the attribute’s value. Immutable protocols and ABCs (such as those in collections.abc) may be used in combination with ReadOnly to forbid mutation of those values at a type checker level:

from collections import abc from dataclasses import dataclass from typing import Protocol, ReadOnly @dataclass class Game: name: str class HasGames[T: abc.Collection[Game]](Protocol): games: ReadOnly[T] def add_games(shelf: HasGames[list[Game]]) -> None: shelf.games.append(Game("Half-Life")) # ok: list is mutable shelf.games[-1].name = "Black Mesa" # ok: "name" is not read-only shelf.games = [] # error: "games" is read-only del shelf.games # error: "games" is read-only and cannot be deleted def read_games(shelf: HasGames[abc.Sequence[Game]]) -> None: shelf.games.append(...) # error: "Sequence" has no attribute "append" shelf.games[0].name = "Blue Shift" # ok: "name" is not read-only shelf.games = [] # error: "games" is read-only

All instance attributes of frozen dataclasses and named tuples should be implied to be read-only. Type checkers may inform that annotating such attributes with ReadOnly is redundant, but it should not be seen as an error:

from dataclasses import dataclass from typing import Final, NewType, ReadOnly @dataclass(frozen=True) class Point: x: int # implicitly read-only y: ReadOnly[int] # ok, redundant uint = NewType("uint", int) @dataclass(frozen=True) class UnsignedPoint(Point): x: ReadOnly[uint] # ok, redundant; narrower type y: Final[uint] # not redundant, Final imposes extra restrictions; narrower type

Initialization

Assignment to a read-only attribute of a nominal class can only occur in the class declaring the attribute and its nominal subclasses, at sites described below. There is no restriction to how many times the attribute can be assigned to.

Type checkers may choose to warn on read-only attributes which could be left uninitialized after an instance is created (except in stubs, protocols or ABCs):

class Patient: id: ReadOnly[int] # error: "id" is not initialized on all code paths name: ReadOnly[str] # error: "name" is never initialized def __init__(self) -> None: if random.random() > 0.5: self.id = 123 class HasName(Protocol): name: ReadOnly[str] # ok

Instance Attributes

Assignment to a read-only instance attribute must be allowed in the following contexts:

Additionally, a type checker may choose to allow the assignment in __new__ and @classmethods, on instances of the declaring class, without regard to the origin of the instance. (This choice trades soundness, as the instance may already be initialized, for the simplicity of implementation.)

from collections import abc from typing import ReadOnly class Band: name: str songs: ReadOnly[list[str]] def __init__(self, name: str, songs: abc.Iterable[str] | None = None) -> None: self.name = name self.songs = [] if songs is not None: self.songs = list(songs) # multiple assignments are fine def clear(self) -> None: # error: assignment to read-only "songs" outside initialization self.songs = [] band = Band(name="Bôa", songs=["Duvet"]) band.name = "Python" # ok: "name" is not read-only band.songs = [] # error: "songs" is read-only band.songs.append("Twilight") # ok: list is mutable
# a simplified immutable Fraction class class Fraction: numerator: ReadOnly[int] denominator: ReadOnly[int] def __new__( cls, numerator: str | int | float | Decimal | Rational = 0, denominator: int | Rational | None = None ) -> Self: self = super().__new__(cls) if denominator is None: if type(numerator) is int: self.numerator = numerator self.denominator = 1 return self elif isinstance(numerator, Rational): ... else: ... @classmethod def from_float(cls, f: float, /) -> Self: self = super().__new__(cls) self.numerator, self.denominator = f.as_integer_ratio() return self

When a class-level declaration has an initializing value, it can serve as a flyweight default for instances:

class Patient: number: ReadOnly[int] = 0 def __init__(self, number: int | None = None) -> None: if number is not None: self.number = number

Note

This is possible only in classes without __slots__. An attribute included in slots cannot have a class-level default.

Class Attributes

Read-only class attributes are attributes annotated as both ReadOnly and ClassVar. Assignment to such attributes must be allowed in the following contexts:

class URI: protocol: ReadOnly[ClassVar[str]] = "" def __init_subclass__(cls, protocol: str = "") -> None: cls.protocol = protocol class File(URI, protocol="file"): ...

Protocols

In a protocol attribute declaration, name: ReadOnly[T] indicates that values that inhabit the protocol must support .name access, and the returned value is assignable to T:

class HasName(Protocol): name: ReadOnly[str] class NamedAttr: name: str class NamedProp: @property def name(self) -> str: ... class NamedClassVar: name: ClassVar[str] class NamedDescriptor: @cached_property def name(self) -> str: ... # all of the following are ok has_name: HasName has_name = NamedAttr() has_name = NamedProp() has_name = NamedClassVar has_name = NamedClassVar() has_name = NamedDescriptor()

Read-only protocol attributes may not be assigned to or deleted in any context.

Note that when inheriting from a protocol to explicitly declare its implementation, for the purpose of applying rules regarding read-only attributes (that the protocol may define), the protocol should be treated as if it was a nominal class. In particular, this means that subclasses can initialize read-only attributes that have been defined by the protocol.

Type checkers should not assume that access to a protocol’s read-only attributes is supported by the protocol’s type (type[HasName]). Even if an attribute exists on the protocol’s type, no assumptions should be made about its type.

Accurately modeling the behavior and type of type[HasName].name is difficult, therefore it was left out from this PEP to reduce its complexity; future enhancements to the typing specification may refine this behavior.

Subtyping

The inability to assign to or delete read-only attributes makes them covariant. This has a few subtyping implications. Borrowing from PEP 705:

Interaction with Other Type Qualifiers

ReadOnly can be used with ClassVar and Annotated in any nesting order:

class Foo: foo: ClassVar[ReadOnly[str]] = "foo" bar: Annotated[ReadOnly[int], Gt(0)]
class Foo: foo: ReadOnly[ClassVar[str]] = "foo" bar: ReadOnly[Annotated[int, Gt(0)]]

This is consistent with the interaction of ReadOnly and typing.TypedDict defined in PEP 705.

Final can be used to (re)declare an attribute which is already read-only, whether due to mechanisms such as NamedTuple, or because a parent class declared it as ReadOnly.

Semantics of Final take precedence over the semantics of read-only attributes; combining ReadOnly and Final is redundant, and type checkers may choose to warn or error on the redundancy.

Backwards Compatibility

This PEP introduces new contexts where ReadOnly is valid. Programs inspecting those places will have to change to support it. This is expected to mainly affect type checkers.

However, caution is advised while using the backported typing_extensions.ReadOnly in older versions of Python. Mechanisms inspecting annotations may behave incorrectly when encountering ReadOnly; in particular, the @dataclass decorator which looks for ClassVar may mistakenly treat ReadOnly[ClassVar[...]] as an instance attribute.

To avoid issues with introspection, use ClassVar[ReadOnly[...]] instead of ReadOnly[ClassVar[...]].

Security Implications

There are no known security consequences arising from this PEP.

How to Teach This

Suggested changes to the typing module documentation, following the footsteps of PEP 705:

Rejected Ideas

Clarifying Interaction of @property and Protocols

The Protocols section mentions an inconsistency between type checkers in the interpretation of properties in protocols. The problem could be fixed by amending the typing specification, clarifying what implements the read-only quality of such properties.

This PEP makes ReadOnly a better alternative for defining read-only attributes in protocols, superseding the use of properties for this purpose.

Assignment Only in __init__ and Class Scope

An earlier version of this PEP specified that read-only attributes could only be assigned to in __init__ and the class’ body. This decision was based on the specification of C#’s readonly.

Later revision of this PEP loosened the restriction to also include __new__, __init_subclass__ and @classmethods, as it was revealed that the initial version would severely limit the usability of ReadOnly within immutable classes, which typically do not define __init__.

Allowing Bare ReadOnly With Initializing Value

An earlier version of this PEP allowed the use of bare ReadOnly when the attribute being annotated had an initializing value. The type of the attribute was supposed to be determined by type checkers using their usual type inference rules.

This thread surfaced a few non-trivial issues with this feature, like undesirable inference of Literal[...] from literal values, differences in type checker inference rules, or complexity of implementation due to class-level and __init__-level assignments. We decided to always require a type for ReadOnly[...], as explicit is better than implicit.

Footnotes

[1] Pyright in strict mode disallows non-property overrides. Mypy permits an override with a plain attribute. Non-property overrides are technically unsafe, as they may break class-level Foo.number access. [Pyright playground] [mypy playground] [2] (1, 2) This PEP focuses solely on type-checking behavior. Nevertheless, it should be desirable the name is read-only at runtime.

Copyright

This document is placed in the public domain or under the CC0-1.0-Universal license, whichever is more permissive.

Contents


Page Source (GitHub)

Source: https://github.com/python/peps/blob/main/peps/pep-0767.rst

Last modified: 2026-03-11 05:22:46 UTC