Message 215035 - Python tracker
Message215035
| Author | vstinner |
|---|---|
| Recipients | benjamin.peterson, eryksun, holdenweb, methane, pitrou, vstinner |
| Date | 2014-03-28.10:28:55 |
| SpamBayes Score | -1.0 |
| Marked as misclassified | Yes |
| Message-id | <CAMpsgwaHfd1zeheg4FNuQnuFazLE23u+mgr8bsVG1NNyDK=jLw@mail.gmail.com> |
| In-reply-to | <1396001059.41.0.163306259797.issue21074@psf.upfronthosting.co.za> |
| Content | |
|---|---|
> For example. I want to write test like this:
>
> @unittest.skip("This test requires huge memory")
There is @test.support.bigmemtest(size=_2G, memuse=1) decorator which
is more convinient than the skip decorators. See
Lib/test/test_bigmem.py.
You can use tracemalloc to get the memory peak:
tracemalloc.get_traced_memory()[1] is the peak. |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2014-03-28 10:28:56 | vstinner | set | recipients: + vstinner, holdenweb, pitrou, benjamin.peterson, methane, eryksun |
| 2014-03-28 10:28:56 | vstinner | link | issue21074 messages |
| 2014-03-28 10:28:55 | vstinner | create | |