[issue33032] Mention implicit cache in struct.Struct docs

2018-09-10 Thread Gregory P. Smith
Gregory P. Smith added the comment: thanks! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue33032] Mention implicit cache in struct.Struct docs

2018-09-10 Thread miss-islington
miss-islington added the comment: New changeset 2110f78d92522499836a928d268704fdc5f7a037 by Miss Islington (bot) in branch '3.7': bpo-33032: Mention the implicit cache in struct.Struct() docs (GH-7700) https://github.com/python/cpython/commit/2110f78d92522499836a928d268704fdc5f7a037 ---

[issue33032] Mention implicit cache in struct.Struct docs

2018-09-10 Thread Gregory P. Smith
Gregory P. Smith added the comment: New changeset 3666b3c1f695a145adab1bf644c22e564e8eb0ee by Gregory P. Smith (Zackery Spytz) in branch 'master': bpo-33032: Mention the implicit cache in struct.Struct() docs (GH-7700) https://github.com/python/cpython/commit/3666b3c1f695a145adab1bf644c22e564

[issue33032] Mention implicit cache in struct.Struct docs

2018-09-10 Thread miss-islington
Change by miss-islington : -- pull_requests: +8604 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue33032] Mention implicit cache in struct.Struct docs

2018-06-15 Thread Zackery Spytz
Change by Zackery Spytz : -- nosy: +ZackerySpytz ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue33032] Mention implicit cache in struct.Struct docs

2018-06-15 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +7316 stage: needs patch -> patch review ___ Python tracker ___ ___ Pyt

[issue33032] Mention implicit cache in struct.Struct docs

2018-03-08 Thread Nick Coghlan
Nick Coghlan added the comment: The note on https://docs.python.org/3/library/re.html#re.compile provides a useful precedent for possible wording here, as the struct cache and the regex cache are quite similar. -- ___ Python tracker

[issue33032] Mention implicit cache in struct.Struct docs

2018-03-08 Thread Nick Coghlan
New submission from Nick Coghlan : The struct.Struct docs claim that creating and re-using a Struct object will be noticeably faster than calling the module level methods repeatedly with the same format string, as it will avoid parsing the format string multiple times: https://docs.python.org/