Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | This test no longer leaks, and test_generators sufficiently tests it to | Thomas Wouters | 2006-04-16 | 1 | -25/+0 |
| | | | | prevent unreported regression. | ||||
* | Add missing DECREF to PyErr_WriteUnraisable(). That function reports | Thomas Wouters | 2006-04-15 | 1 | -19/+0 |
| | | | | | | | | | | | exceptions that can't be raised any further, because (for instance) they occur in __del__ methods. The coroutine tests in test_generators was triggering this leak. Remove the leakers' testcase, and add a simpler testcase that explicitly tests this leak to test_generators. test_generators now no longer leaks at all, on my machine. This fix may also solve other leaks, but my full refleakhunting run is still busy, so who knows? | ||||
* | Whitespace normalization. | Tim Peters | 2006-04-14 | 1 | -16/+16 |
| | |||||
* | Show case: reference cycles involving only the ob_type field are rather | Armin Rigo | 2006-04-14 | 1 | -0/+13 |
| | | | | uncommon but possible. Inspired by SF bug 1469629. | ||||
* | Restore test tee with some modifications. | Neal Norwitz | 2006-04-14 | 1 | -0/+25 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The test case came from test_generators, not test_itertools. Ensure there's no cyclic garbage we are counting. This is weird because it leaks, then reaches a limit: python.exe -i test_tee.py >>> leak() 0 [26633 refs] >>> leak() 0 [26658 refs] >>> leak() 0 [26683 refs] >>> leak() 0 [26708 refs] >>> leak() 0 [26708 refs] >>> leak() 0 [26708 refs] >>> leak() 0 | ||||
* | Update notes to address cyclic garbage and what should happen when a test is ↵ | Neal Norwitz | 2006-04-14 | 1 | -0/+13 |
| | | | | fixed. | ||||
* | Remove tests that no longer leak. There is still one leaking generator test | Neal Norwitz | 2006-04-13 | 3 | -30/+19 |
| | |||||
* | whitespace normalisation | Anthony Baxter | 2006-03-30 | 1 | -1/+0 |
| | |||||
* | Add an example of a generator->freevar->cell->generator reference-cycle that | Thomas Wouters | 2006-03-28 | 1 | -0/+11 |
| | | | | doesn't get cleaned up and thus leaks. | ||||
* | Oops, copied the wrong code from keeprefs. Get the right code | Neal Norwitz | 2006-03-17 | 1 | -4/+9 |
| | | | | | | this time and call gc.collect(), since there is some garbage. The original code didn't really leak (if gc.collect() was called). | ||||
* | Update/expand on comments about leaking tests. | Neal Norwitz | 2006-03-17 | 1 | -0/+1 |
| | |||||
* | Ignore ctypes leaks, but add a test case so we do not forget. | Neal Norwitz | 2006-03-17 | 1 | -0/+11 |
| | |||||
* | Fix mismatch opening and closing quotes on a string. | Brett Cannon | 2006-03-02 | 1 | -2/+1 |
| | |||||
* | Add a note about removing the file once the bug is fixed | Neal Norwitz | 2006-02-28 | 1 | -1/+2 |
| | |||||
* | Gave README a .txt extension. | Tim Peters | 2006-02-28 | 1 | -0/+0 |
| | |||||
* | Add directory which contains known ref leaks. Some of these are likely to ↵ | Neal Norwitz | 2006-02-28 | 4 | -0/+52 |
be system dependent (like test_gestalt). |