Skip to content

Commit 2c46e54

Browse files
committed
Use the full URL for links to Breathe issues
1 parent 89797c7 commit 2c46e54

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

tests/test_domains/test_domain_c.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,8 @@ def test_domain_c_ast_type_definitions():
419419
# test decl specs on right
420420
check('type', '{key}bool const b', {1: 'b'}, key='typedef')
421421

422-
# from breathe#267 (named function parameters for function pointers
422+
# from https://github.com/breathe-doc/breathe/issues/267
423+
# (named function parameters for function pointers
423424
check(
424425
'type',
425426
'{key}void (*gpio_callback_t)(struct device *port, uint32_t pin)',
@@ -533,7 +534,7 @@ def test_domain_c_ast_function_definitions():
533534
check('function', 'void f(int *const p)', {1: 'f'})
534535
check('function', 'void f(int *volatile const p)', {1: 'f'})
535536

536-
# from breathe#223
537+
# from https://github.com/breathe-doc/breathe/issues/223
537538
check('function', 'void f(struct E e)', {1: 'f'})
538539
check('function', 'void f(enum E e)', {1: 'f'})
539540
check('function', 'void f(union E e)', {1: 'f'})
@@ -678,7 +679,7 @@ def test_domain_c_ast_attributes():
678679
check('enumerator', '{key}Foo [[attr1]] [[attr2]]', {1: 'Foo'})
679680
check('enumerator', '{key}Foo [[attr1]] [[attr2]] = 42', {1: 'Foo'})
680681

681-
# issue michaeljones/breathe#500
682+
# issue https://github.com/breathe-doc/breathe/issues/500
682683
check(
683684
'function',
684685
'LIGHTGBM_C_EXPORT int LGBM_BoosterFree(int handle)',

tests/test_domains/test_domain_cpp.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,8 @@ def test_domain_cpp_ast_type_definitions():
503503
check('type', '{key}A = B', {2: '1A'}, key='using')
504504
check('type', '{key}A = decltype(b)', {2: '1A'}, key='using')
505505

506-
# from breathe#267 (named function parameters for function pointers
506+
# from https://github.com/breathe-doc/breathe/issues/267
507+
# (named function parameters for function pointers
507508
check(
508509
'type',
509510
'{key}void (*gpio_callback_t)(struct device *port, uint32_t pin)',
@@ -865,7 +866,7 @@ def test_domain_cpp_ast_function_definitions():
865866
{1: 'f__osR.i', 2: '1fRNSt7ostreamEi'},
866867
)
867868

868-
# from breathe#223
869+
# from https://github.com/breathe-doc/breathe/issues/223
869870
check('function', 'void f(struct E e)', {1: 'f__E', 2: '1f1E'})
870871
check('function', 'void f(class E e)', {1: 'f__E', 2: '1f1E'})
871872
check('function', 'void f(typename E e)', {1: 'f__E', 2: '1f1E'})
@@ -912,7 +913,7 @@ def test_domain_cpp_ast_function_definitions():
912913
check('function', 'template<typename T> int f()', ids)
913914
check('function', 'template<typename T> f() -> int', ids)
914915

915-
# from breathe#441
916+
# from https://github.com/breathe-doc/breathe/issues/441
916917
check(
917918
'function',
918919
'auto MakeThingy() -> Thingy*',
@@ -1349,7 +1350,7 @@ def test_domain_cpp_ast_requires_clauses():
13491350

13501351

13511352
def test_domain_cpp_ast_template_args():
1352-
# from breathe#218
1353+
# from https://github.com/breathe-doc/breathe/issues/218
13531354
check(
13541355
'function',
13551356
'template<typename F> void allow(F *f, typename func<F, B, G != 1>::type tt)',

0 commit comments

Comments
 (0)