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 steven.daprano
Recipients jcea, rhettinger, steven.daprano
Date 2017-04-24.12:06:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1493035617.54.0.246499638846.issue30153@psf.upfronthosting.co.za>
In-reply-to
Content
Perhaps the existing ``cache_clear`` method could take optional arguments?

def cache_clear(self, *args, **kw):
    if not (args or kw):
        # clear the entire cache
    else:
        # clear just the cache entry for *args, **kw
History
Date User Action Args
2017-04-24 12:06:57steven.dapranosetrecipients: + steven.daprano, rhettinger, jcea
2017-04-24 12:06:57steven.dapranosetmessageid: <1493035617.54.0.246499638846.issue30153@psf.upfronthosting.co.za>
2017-04-24 12:06:57steven.dapranolinkissue30153 messages
2017-04-24 12:06:57steven.dapranocreate