File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ keys and values. Pseudo-code of ``hash(frozendict)``::
104104
105105 hash(frozenset(frozendict.items()))
106106
107- Equality test does not depend on the items' order neither . Example::
107+ Equality test does not depend on the items' order either . Example::
108108
109109 >>> a = frozendict(x=1, y=2)
110110 >>> b = frozendict(y=2, x=1)
@@ -233,7 +233,7 @@ Replace ``dict`` with ``frozendict`` for constants:
233233Relationship to PEP 416 frozendict
234234==================================
235235
236- Since 2012 (:pep: `416 `), the Python ecosystem evolved:
236+ Since 2012 (:pep: `416 `), the Python ecosystem has evolved:
237237
238238* ``asyncio `` was added in 2014 (Python 3.4)
239239* Free threading was added in 2024 (Python 3.13)
You can’t perform that action at this time.
0 commit comments