mirror of
https://github.com/python/cpython.git
synced 2025-10-09 16:34:44 +00:00
bpo-46331: Do not set line number of instruction storing doc-string. (GH-30518)
This commit is contained in:
parent
ea1a54506b
commit
bd04fac7eb
3 changed files with 22 additions and 0 deletions
|
@ -1403,6 +1403,25 @@ class TraceTestCase(unittest.TestCase):
|
|||
(3, 'line'),
|
||||
(3, 'return')])
|
||||
|
||||
def test_class_creation_with_docstrings(self):
|
||||
|
||||
def func():
|
||||
class Class_1:
|
||||
''' the docstring. 2'''
|
||||
def __init__(self):
|
||||
''' Another docstring. 4'''
|
||||
self.a = 5
|
||||
|
||||
self.run_and_compare(func,
|
||||
[(0, 'call'),
|
||||
(1, 'line'),
|
||||
(1, 'call'),
|
||||
(1, 'line'),
|
||||
(2, 'line'),
|
||||
(3, 'line'),
|
||||
(3, 'return'),
|
||||
(1, 'return')])
|
||||
|
||||
|
||||
class SkipLineEventsTraceTestCase(TraceTestCase):
|
||||
"""Repeat the trace tests, but with per-line events skipped"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue