Uh oh!
There was an error while loading. Please reload this page.
GH-93179: Document the thread safety of functools.lru_cache - #96101
Conversation
miss-islington
commented
Aug 21, 2022
Thanks @rhettinger for the PR 🌮🎉.. I'm working now to backport this PR to: 3.11. |
miss-islington
commented
Aug 21, 2022
Sorry, @rhettinger, I could not cleanly backport this to |
1st
commented
Aug 26, 2022
Sorry, but we have an issue with the In the code it has thread lock, but problem that it's done outside of the function call. As result, we have issue with threads - function call made multiple times, but we expected that this Currently I'm in a doubt, should we create our own version of the decorator that will have the lock over the whole |

functools.lru_cache#93179