Browse Source

Issue #20746: Fix test_pdb to run in refleak mode (-R). Patch by Xavier de Gaye.

pull/224/head
Antoine Pitrou 12 years ago
parent
commit
c04d468333
  1. 2
      Lib/test/test_pdb.py
  2. 3
      Misc/NEWS

2
Lib/test/test_pdb.py

@ -614,6 +614,8 @@ def test_next_until_return_at_return_event():
... test_function_2() ... test_function_2()
... end = 1 ... end = 1
>>> from bdb import Breakpoint
>>> Breakpoint.next = 1
>>> with PdbTestInput(['break test_function_2', >>> with PdbTestInput(['break test_function_2',
... 'continue', ... 'continue',
... 'return', ... 'return',

3
Misc/NEWS

@ -253,6 +253,9 @@ IDLE
Tests Tests
----- -----
- Issue #20746: Fix test_pdb to run in refleak mode (-R). Patch by Xavier
de Gaye.
- Issue #22060: test_ctypes has been somewhat cleaned up and simplified; it - Issue #22060: test_ctypes has been somewhat cleaned up and simplified; it
now uses unittest test discovery to find its tests. now uses unittest test discovery to find its tests.

Loading…
Cancel
Save