forked from python-bugzilla/python-bugzilla
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patholdclasses.py
More file actions
51 lines (29 loc) · 888 Bytes
/
oldclasses.py
File metadata and controls
51 lines (29 loc) · 888 Bytes
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
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 2 of the License, or (at your
# option) any later version. See http://www.gnu.org/copyleft/gpl.html for
# the full text of the license.
from .base import Bugzilla
from .rhbugzilla import RHBugzilla
# These are old compat classes. Nothing new should be added here,
# and these should not be altered
class Bugzilla3(Bugzilla):
pass
class Bugzilla32(Bugzilla):
pass
class Bugzilla34(Bugzilla):
pass
class Bugzilla36(Bugzilla):
pass
class Bugzilla4(Bugzilla):
pass
class Bugzilla42(Bugzilla):
pass
class Bugzilla44(Bugzilla):
pass
class NovellBugzilla(Bugzilla):
pass
class RHBugzilla3(RHBugzilla):
pass
class RHBugzilla4(RHBugzilla):
pass