Skip to content

Commit 66610ff

Browse files
committed
Use any for stdlib line numbers
1 parent 13ecd61 commit 66610ff

1 file changed

Lines changed: 11 additions & 11 deletions

File tree

Lib/test/test_external_inspection.py

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -618,8 +618,8 @@ def new_eager_loop():
618618
{
619619
"Task-1": [
620620
(
621-
(taskgroups.__file__, 121, "TaskGroup._aexit", None),
622-
(taskgroups.__file__, 72, "TaskGroup.__aexit__", None),
621+
(taskgroups.__file__, ANY, "TaskGroup._aexit", None),
622+
(taskgroups.__file__, ANY, "TaskGroup.__aexit__", None),
623623
(script_name, 26, "main", None),
624624
)
625625
],
@@ -663,8 +663,8 @@ def new_eager_loop():
663663
(
664664
"Task-1",
665665
(
666-
(taskgroups.__file__, 121, "TaskGroup._aexit", None),
667-
(taskgroups.__file__, 72, "TaskGroup.__aexit__", None),
666+
(taskgroups.__file__, ANY, "TaskGroup._aexit", None),
667+
(taskgroups.__file__, ANY, "TaskGroup.__aexit__", None),
668668
(script_name, 26, "main", None),
669669
),
670670
),
@@ -681,8 +681,8 @@ def new_eager_loop():
681681
(
682682
"Task-1",
683683
(
684-
(taskgroups.__file__, 121, "TaskGroup._aexit", None),
685-
(taskgroups.__file__, 72, "TaskGroup.__aexit__", None),
684+
(taskgroups.__file__, ANY, "TaskGroup._aexit", None),
685+
(taskgroups.__file__, ANY, "TaskGroup.__aexit__", None),
686686
(script_name, 26, "main", None),
687687
),
688688
)
@@ -691,8 +691,8 @@ def new_eager_loop():
691691
(
692692
"Task-1",
693693
(
694-
(taskgroups.__file__, 121, "TaskGroup._aexit", None),
695-
(taskgroups.__file__, 72, "TaskGroup.__aexit__", None),
694+
(taskgroups.__file__, ANY, "TaskGroup._aexit", None),
695+
(taskgroups.__file__, ANY, "TaskGroup.__aexit__", None),
696696
(script_name, 26, "main", None),
697697
),
698698
)
@@ -1003,15 +1003,15 @@ async def main():
10031003
{
10041004
"Task-1": [
10051005
(
1006-
(staggered.__file__, 164, "staggered_race", None),
1006+
(staggered.__file__, ANY, "staggered_race", None),
10071007
(script_name, 21, "main", None),
10081008
)
10091009
],
10101010
"Task-2": [
10111011
(
10121012
(script_name, 11, "deep", None),
10131013
(script_name, 15, "c1", None),
1014-
(staggered.__file__, 126, "staggered_race.<locals>.run_one_coro", None),
1014+
(staggered.__file__, ANY, "staggered_race.<locals>.run_one_coro", None),
10151015
)
10161016
],
10171017
},
@@ -1039,7 +1039,7 @@ async def main():
10391039
(
10401040
"Task-1",
10411041
(
1042-
(staggered.__file__, 164, "staggered_race", None),
1042+
(staggered.__file__, ANY, "staggered_race", None),
10431043
(script_name, 21, "main", None),
10441044
),
10451045
)

0 commit comments

Comments
 (0)