We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7789b51 + accea46 commit 731c340Copy full SHA for 731c340
src/_pytest/store.py
@@ -27,7 +27,7 @@ class StoreKey(Generic[T]):
27
class Store:
28
"""Store is a type-safe heterogenous mutable mapping that
29
allows keys and value types to be defined separately from
30
- where it is defined.
+ where it (the Store) is created.
31
32
Usually you will be given an object which has a ``Store``:
33
@@ -77,7 +77,7 @@ class Store:
77
78
Good solution: module Internal adds a ``Store`` to the object. Module
79
External mints StoreKeys for its own keys. Module External stores and
80
- retrieves its data using its keys.
+ retrieves its data using these keys.
81
"""
82
83
__slots__ = ("_store",)
0 commit comments