This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author solstag
Recipients docs@python, r.david.murray, rhettinger, solstag
Date 2018-06-06.13:48:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1528292919.17.0.592728768989.issue33774@psf.upfronthosting.co.za>
In-reply-to
Content
Hi Raymond, I think I understand what you mean, and would suggest something along the lines of:

"""
Note that lru_cache only guarantees cache matches on the exact way function arguments are specified, so the following ways of calling 'def f(a, b=7)' are not guaranteed to cache each other: f(1), f(a=1), f(1, 7), f(1, b=7), f(a=1, b=7).
"""
History
Date User Action Args
2018-06-06 13:48:39solstagsetrecipients: + solstag, rhettinger, r.david.murray, docs@python
2018-06-06 13:48:39solstagsetmessageid: <1528292919.17.0.592728768989.issue33774@psf.upfronthosting.co.za>
2018-06-06 13:48:39solstaglinkissue33774 messages
2018-06-06 13:48:39solstagcreate