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 yselivanov
Recipients gvanrossum, josh.r, levkivskyi, ned.deily, python-dev, serhiy.storchaka, yselivanov
Date 2016-11-09.23:37:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1478734646.86.0.954061647552.issue28649@psf.upfronthosting.co.za>
In-reply-to
Content
reflesk with only functools:

    def test_lru_type_error(self):
        @functools.lru_cache(maxsize=None)
        def foo(o):
            raise TypeError

        with self.assertRaises(TypeError):
            foo([])
History
Date User Action Args
2016-11-09 23:37:26yselivanovsetrecipients: + yselivanov, gvanrossum, ned.deily, python-dev, serhiy.storchaka, josh.r, levkivskyi
2016-11-09 23:37:26yselivanovsetmessageid: <1478734646.86.0.954061647552.issue28649@psf.upfronthosting.co.za>
2016-11-09 23:37:26yselivanovlinkissue28649 messages
2016-11-09 23:37:26yselivanovcreate