mirror of https://github.com/python/cpython.git
bpo-33032: Mention the implicit cache in struct.Struct() docs (GH-7700)
Mention the implicit cache in struct.Struct() docs. Consistent with the re.compile documentation note.
This commit is contained in:
parent
5033aa77aa
commit
3666b3c1f6
|
@ -405,6 +405,12 @@ The :mod:`struct` module also defines the following type:
|
||||||
methods is more efficient than calling the :mod:`struct` functions with the
|
methods is more efficient than calling the :mod:`struct` functions with the
|
||||||
same format since the format string only needs to be compiled once.
|
same format since the format string only needs to be compiled once.
|
||||||
|
|
||||||
|
.. note::
|
||||||
|
|
||||||
|
The compiled versions of the most recent format strings passed to
|
||||||
|
:class:`Struct` and the module-level functions are cached, so programs
|
||||||
|
that use only a few format strings needn't worry about reusing a single
|
||||||
|
:class:`Struct` instance.
|
||||||
|
|
||||||
Compiled Struct objects support the following methods and attributes:
|
Compiled Struct objects support the following methods and attributes:
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue