-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcc.py
57 lines (39 loc) · 1.52 KB
/
cc.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
from osidb.cc import (
BugzillaAffectCCBuilder,
BugzillaFlawCCBuilder,
RHSCLBugzillaAffectCCBuilder,
)
class AffectCCBuilder(BugzillaAffectCCBuilder):
"""
Deprecated class. Use BugzillaAffectCCBuilder.
The reason is that BugzillaAffectCCBuilder is in a collection of classes
with much clearer intended use.
TODO: Refactor AffectCCBuilder away and use BugzillaAffectCCBuilder.
At the time of writing this (2024-04), there was not enough
resources to do that.
affect CC list builder
"""
pass
class RHSCLAffectCCBuilder(RHSCLBugzillaAffectCCBuilder):
"""
Deprecated class. Use BugzillaAffectCCBuilder.
The reason is that RHSCLBugzillaAffectCCBuilder is in a collection of classes
with much clearer intended use.
TODO: Refactor RHSCLAffectCCBuilder away and use RHSCLBugzillaAffectCCBuilder.
At the time of writing this (2024-04), there was not enough
resources to do that.
Red Hat Software Collections affect CC list builder
introduces special differences from the base class
"""
pass
class CCBuilder(BugzillaFlawCCBuilder):
"""
Deprecated class. Use BugzillaFlawCCBuilder.
The reason is that BugzillaFlawCCBuilder is in a collection of classes
with much clearer intended use.
TODO: Refactor CCBuilder away and use BugzillaFlawCCBuilder.
At the time of writing this (2024-04), there was not enough
resources to do that.
Bugzilla flaw CC list array builder
"""
pass