Skip to content

Commit 101aed9

Browse files
shadchinPierre-Sassoulas
authored andcommitted
Bump astroid to 2.9.2, update changelog
1 parent c44b1de commit 101aed9

30 files changed

+33
-30
lines changed

ChangeLog

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,12 @@ Release date: TBA
1010

1111
What's New in astroid 2.9.2?
1212
============================
13-
Release date: TBA
13+
Release date: 2022-01-04
1414

15+
* Fixed regression in ``astroid.scoped_nodes`` where ```_is_metaclass``
16+
was not accessible anymore.
1517

18+
Closes #1325
1619

1720
What's New in astroid 2.9.1?
1821
============================

astroid/__pkginfo__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@
2424
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
2525
# For details: https://github.com/PyCQA/astroid/blob/main/LICENSE
2626

27-
__version__ = "2.9.2-dev0"
27+
__version__ = "2.9.2"
2828
version = __version__

astroid/arguments.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
# Copyright (c) 2018 Nick Drozd <[email protected]>
55
# Copyright (c) 2018 Anthony Sottile <[email protected]>
66
# Copyright (c) 2020 hippo91 <[email protected]>
7-
# Copyright (c) 2021 Tushar Sadhwani <[email protected]>
87
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
8+
# Copyright (c) 2021 Tushar Sadhwani <[email protected]>
99
# Copyright (c) 2021 David Liu <[email protected]>
1010
# Copyright (c) 2021 Marc Mueller <[email protected]>
1111

astroid/bases.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
# Copyright (c) 2018 Bryce Guinta <[email protected]>
1414
# Copyright (c) 2018 Daniel Colascione <[email protected]>
1515
# Copyright (c) 2019 Hugo van Kemenade <[email protected]>
16-
# Copyright (c) 2021 Tushar Sadhwani <[email protected]>
1716
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
17+
# Copyright (c) 2021 Tushar Sadhwani <[email protected]>
1818
# Copyright (c) 2021 pre-commit-ci[bot] <[email protected]>
1919
# Copyright (c) 2021 Daniël van Noord <[email protected]>
2020
# Copyright (c) 2021 David Liu <[email protected]>

astroid/brain/brain_collections.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
# Copyright (c) 2018 Ioana Tagirta <[email protected]>
55
# Copyright (c) 2019 Hugo van Kemenade <[email protected]>
66
# Copyright (c) 2020-2021 hippo91 <[email protected]>
7-
# Copyright (c) 2021 John Belmonte <[email protected]>
87
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
8+
# Copyright (c) 2021 John Belmonte <[email protected]>
99
# Copyright (c) 2021 Marc Mueller <[email protected]>
1010

1111
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html

astroid/brain/brain_namedtuple_enum.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
# Copyright (c) 2019 Ashley Whetter <[email protected]>
1515
# Copyright (c) 2020 hippo91 <[email protected]>
1616
# Copyright (c) 2020 Ram Rachum <[email protected]>
17-
# Copyright (c) 2021 Daniël van Noord <[email protected]>
1817
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
18+
# Copyright (c) 2021 Daniël van Noord <[email protected]>
1919
# Copyright (c) 2021 Dimitri Prybysh <[email protected]>
2020
# Copyright (c) 2021 David Liu <[email protected]>
2121
# Copyright (c) 2021 pre-commit-ci[bot] <[email protected]>

astroid/brain/brain_numpy_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (c) 2019-2021 hippo91 <[email protected]>
22
# Copyright (c) 2019-2020 Claudiu Popa <[email protected]>
3-
# Copyright (c) 2021 Nick Drozd <[email protected]>
43
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
4+
# Copyright (c) 2021 Nick Drozd <[email protected]>
55
# Copyright (c) 2021 Marc Mueller <[email protected]>
66

77
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html

astroid/brain/brain_typing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
# Copyright (c) 2017 Łukasz Rogalski <[email protected]>
66
# Copyright (c) 2017 David Euresti <[email protected]>
77
# Copyright (c) 2018 Bryce Guinta <[email protected]>
8-
# Copyright (c) 2021 Daniël van Noord <[email protected]>
98
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
9+
# Copyright (c) 2021 Daniël van Noord <[email protected]>
1010
# Copyright (c) 2021 Redoubts <[email protected]>
1111
# Copyright (c) 2021 Marc Mueller <[email protected]>
1212
# Copyright (c) 2021 Tim Martin <[email protected]>

astroid/builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
# Copyright (c) 2017 Łukasz Rogalski <[email protected]>
99
# Copyright (c) 2018 Anthony Sottile <[email protected]>
1010
# Copyright (c) 2020-2021 hippo91 <[email protected]>
11+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
1112
# Copyright (c) 2021 Tushar Sadhwani <[email protected]>
1213
# Copyright (c) 2021 Daniël van Noord <[email protected]>
1314
# Copyright (c) 2021 Gregory P. Smith <[email protected]>
1415
# Copyright (c) 2021 Kian Meng, Ang <[email protected]>
15-
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
1616
# Copyright (c) 2021 Marc Mueller <[email protected]>
1717
# Copyright (c) 2021 Andrew Haigh <[email protected]>
1818

astroid/context.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
# Copyright (c) 2018 Nick Drozd <[email protected]>
55
# Copyright (c) 2019-2021 hippo91 <[email protected]>
66
# Copyright (c) 2020 Bryce Guinta <[email protected]>
7-
# Copyright (c) 2021 Kian Meng, Ang <[email protected]>
87
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
8+
# Copyright (c) 2021 Kian Meng, Ang <[email protected]>
99
# Copyright (c) 2021 Daniël van Noord <[email protected]>
1010
# Copyright (c) 2021 David Liu <[email protected]>
1111
# Copyright (c) 2021 Marc Mueller <[email protected]>

astroid/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
# Copyright (c) 2020 Simon Hewitt <[email protected]>
66
# Copyright (c) 2020 Bryce Guinta <[email protected]>
77
# Copyright (c) 2020 Ram Rachum <[email protected]>
8-
# Copyright (c) 2021 Tushar Sadhwani <[email protected]>
98
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
9+
# Copyright (c) 2021 Tushar Sadhwani <[email protected]>
1010
# Copyright (c) 2021 Daniël van Noord <[email protected]>
1111
# Copyright (c) 2021 David Liu <[email protected]>
1212
# Copyright (c) 2021 Marc Mueller <[email protected]>

astroid/inference.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
# Copyright (c) 2018 Ashley Whetter <[email protected]>
1717
# Copyright (c) 2018 HoverHell <[email protected]>
1818
# Copyright (c) 2020 Leandro T. C. Melo <[email protected]>
19-
# Copyright (c) 2021 Kian Meng, Ang <[email protected]>
2019
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
20+
# Copyright (c) 2021 Kian Meng, Ang <[email protected]>
2121
# Copyright (c) 2021 Daniël van Noord <[email protected]>
2222
# Copyright (c) 2021 Marc Mueller <[email protected]>
2323
# Copyright (c) 2021 Andrew Haigh <[email protected]>

astroid/interpreter/_import/spec.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
# Copyright (c) 2020-2021 hippo91 <[email protected]>
1111
# Copyright (c) 2020 Peter Kolbus <[email protected]>
1212
# Copyright (c) 2020 Raphael Gaschignard <[email protected]>
13-
# Copyright (c) 2021 Daniël van Noord <[email protected]>
1413
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
14+
# Copyright (c) 2021 Daniël van Noord <[email protected]>
1515
# Copyright (c) 2021 DudeNr33 <[email protected]>
1616
# Copyright (c) 2021 Marc Mueller <[email protected]>
1717

astroid/interpreter/_import/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Copyright (c) 2016, 2018 Claudiu Popa <[email protected]>
2-
# Copyright (c) 2021 Daniël van Noord <[email protected]>
32
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
3+
# Copyright (c) 2021 Daniël van Noord <[email protected]>
44
# Copyright (c) 2021 Neil Girdhar <[email protected]>
55

66
try:

astroid/mixins.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
# Copyright (c) 2015 Florian Bruhin <[email protected]>
77
# Copyright (c) 2016 Jakub Wilk <[email protected]>
88
# Copyright (c) 2018 Nick Drozd <[email protected]>
9-
# Copyright (c) 2021 Daniël van Noord <[email protected]>
109
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
10+
# Copyright (c) 2021 Daniël van Noord <[email protected]>
1111
# Copyright (c) 2021 Marc Mueller <[email protected]>
1212
# Copyright (c) 2021 pre-commit-ci[bot] <[email protected]>
1313

astroid/modutils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
# Copyright (c) 2019 BasPH <[email protected]>
1818
# Copyright (c) 2020-2021 hippo91 <[email protected]>
1919
# Copyright (c) 2020 Peter Kolbus <[email protected]>
20+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
2021
# Copyright (c) 2021 Daniël van Noord <[email protected]>
2122
# Copyright (c) 2021 Keichi Takahashi <[email protected]>
2223
# Copyright (c) 2021 Nick Drozd <[email protected]>
23-
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
2424
# Copyright (c) 2021 Marc Mueller <[email protected]>
2525
# Copyright (c) 2021 DudeNr33 <[email protected]>
2626

astroid/nodes/as_string.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
# Copyright (c) 2018 Nick Drozd <[email protected]>
1414
# Copyright (c) 2019 Alex Hall <[email protected]>
1515
# Copyright (c) 2019 Hugo van Kemenade <[email protected]>
16-
# Copyright (c) 2021 Marc Mueller <[email protected]>
1716
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
17+
# Copyright (c) 2021 Marc Mueller <[email protected]>
1818
# Copyright (c) 2021 Daniël van Noord <[email protected]>
1919
# Copyright (c) 2021 pre-commit-ci[bot] <[email protected]>
2020

astroid/nodes/node_classes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@
2323
# Copyright (c) 2019 kavins14 <[email protected]>
2424
# Copyright (c) 2020 Raphael Gaschignard <[email protected]>
2525
# Copyright (c) 2020 Bryce Guinta <[email protected]>
26+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
2627
# Copyright (c) 2021 Tushar Sadhwani <[email protected]>
2728
# Copyright (c) 2021 Marc Mueller <[email protected]>
2829
# Copyright (c) 2021 Daniël van Noord <[email protected]>
2930
# Copyright (c) 2021 Kian Meng, Ang <[email protected]>
30-
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
3131
# Copyright (c) 2021 David Liu <[email protected]>
3232
# Copyright (c) 2021 Alphadelta14 <[email protected]>
3333
# Copyright (c) 2021 Andrew Haigh <[email protected]>

astroid/nodes/scoped_nodes/scoped_nodes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@
2323
# Copyright (c) 2020 Peter Kolbus <[email protected]>
2424
# Copyright (c) 2020 Tim Martin <[email protected]>
2525
# Copyright (c) 2020 Ram Rachum <[email protected]>
26+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
2627
# Copyright (c) 2021 Tushar Sadhwani <[email protected]>
2728
# Copyright (c) 2021 Marc Mueller <[email protected]>
2829
# Copyright (c) 2021 Daniël van Noord <[email protected]>
2930
# Copyright (c) 2021 Kian Meng, Ang <[email protected]>
3031
# Copyright (c) 2021 Dmitry Shachnev <[email protected]>
31-
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
3232
# Copyright (c) 2021 David Liu <[email protected]>
3333
# Copyright (c) 2021 pre-commit-ci[bot] <[email protected]>
3434
# Copyright (c) 2021 doranid <[email protected]>

astroid/protocols.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
# Copyright (c) 2020-2021 hippo91 <[email protected]>
1717
# Copyright (c) 2020 Vilnis Termanis <[email protected]>
1818
# Copyright (c) 2020 Ram Rachum <[email protected]>
19+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
1920
# Copyright (c) 2021 Tushar Sadhwani <[email protected]>
2021
# Copyright (c) 2021 Daniël van Noord <[email protected]>
21-
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
2222
# Copyright (c) 2021 David Liu <[email protected]>
2323
# Copyright (c) 2021 Marc Mueller <[email protected]>
2424
# Copyright (c) 2021 doranid <[email protected]>

astroid/raw_building.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
# Copyright (c) 2020-2021 hippo91 <[email protected]>
1414
# Copyright (c) 2020 Becker Awqatty <[email protected]>
1515
# Copyright (c) 2020 Robin Jarry <[email protected]>
16-
# Copyright (c) 2021 Daniël van Noord <[email protected]>
1716
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
17+
# Copyright (c) 2021 Daniël van Noord <[email protected]>
1818
# Copyright (c) 2021 Marc Mueller <[email protected]>
1919
# Copyright (c) 2021 Andrew Haigh <[email protected]>
2020

tbump.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
github_url = "https://github.com/PyCQA/astroid"
22

33
[version]
4-
current = "2.9.2-dev0"
4+
current = "2.9.2"
55
regex = '''
66
^(?P<major>0|[1-9]\d*)
77
\.

tests/unittest_brain.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
# Copyright (c) 2019 Grygorii Iermolenko <[email protected]>
2525
# Copyright (c) 2020 David Gilman <[email protected]>
2626
# Copyright (c) 2020 Peter Kolbus <[email protected]>
27-
# Copyright (c) 2021 Kian Meng, Ang <[email protected]>
2827
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
28+
# Copyright (c) 2021 Kian Meng, Ang <[email protected]>
2929
# Copyright (c) 2021 Daniël van Noord <[email protected]>
3030
# Copyright (c) 2021 Joshua Cannon <[email protected]>
3131
# Copyright (c) 2021 Craig Franklin <[email protected]>

tests/unittest_builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
# Copyright (c) 2019 Ashley Whetter <[email protected]>
1313
# Copyright (c) 2019 Hugo van Kemenade <[email protected]>
1414
# Copyright (c) 2020-2021 hippo91 <[email protected]>
15+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
1516
# Copyright (c) 2021 Tushar Sadhwani <[email protected]>
1617
# Copyright (c) 2021 Kian Meng, Ang <[email protected]>
1718
# Copyright (c) 2021 Daniël van Noord <[email protected]>
18-
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
1919
# Copyright (c) 2021 Marc Mueller <[email protected]>
2020
# Copyright (c) 2021 Andrew Haigh <[email protected]>
2121
# Copyright (c) 2021 pre-commit-ci[bot] <[email protected]>

tests/unittest_inference.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@
2626
# Copyright (c) 2020 Peter Kolbus <[email protected]>
2727
# Copyright (c) 2020 Karthikeyan Singaravelan <[email protected]>
2828
# Copyright (c) 2020 Bryce Guinta <[email protected]>
29+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
2930
# Copyright (c) 2021 Tushar Sadhwani <[email protected]>
3031
# Copyright (c) 2021 Kian Meng, Ang <[email protected]>
3132
# Copyright (c) 2021 Jacob Walls <[email protected]>
3233
# Copyright (c) 2021 Nick Drozd <[email protected]>
3334
# Copyright (c) 2021 Dmitry Shachnev <[email protected]>
34-
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
3535
# Copyright (c) 2021 Daniël van Noord <[email protected]>
3636
# Copyright (c) 2021 Marc Mueller <[email protected]>
3737
# Copyright (c) 2021 Andrew Haigh <[email protected]>

tests/unittest_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
# Copyright (c) 2020-2021 hippo91 <[email protected]>
1414
# Copyright (c) 2020 David Gilman <[email protected]>
1515
# Copyright (c) 2020 Anubhav <[email protected]>
16-
# Copyright (c) 2021 Tushar Sadhwani <[email protected]>
1716
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
17+
# Copyright (c) 2021 Tushar Sadhwani <[email protected]>
1818
# Copyright (c) 2021 grayjk <[email protected]>
1919
# Copyright (c) 2021 Marc Mueller <[email protected]>
2020
# Copyright (c) 2021 Andrew Haigh <[email protected]>

tests/unittest_modutils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
# Copyright (c) 2019 markmcclain <[email protected]>
1212
# Copyright (c) 2020-2021 hippo91 <[email protected]>
1313
# Copyright (c) 2020 Peter Kolbus <[email protected]>
14-
# Copyright (c) 2021 Daniël van Noord <[email protected]>
1514
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
15+
# Copyright (c) 2021 Daniël van Noord <[email protected]>
1616
# Copyright (c) 2021 Marc Mueller <[email protected]>
1717
# Copyright (c) 2021 DudeNr33 <[email protected]>
1818
# Copyright (c) 2021 pre-commit-ci[bot] <[email protected]>

tests/unittest_nodes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
# Copyright (c) 2019 Alex Hall <[email protected]>
1717
# Copyright (c) 2019 Hugo van Kemenade <[email protected]>
1818
# Copyright (c) 2020 David Gilman <[email protected]>
19+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
1920
# Copyright (c) 2021 Tushar Sadhwani <[email protected]>
2021
# Copyright (c) 2021 Nick Drozd <[email protected]>
21-
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
2222
# Copyright (c) 2021 Marc Mueller <[email protected]>
2323
# Copyright (c) 2021 Daniël van Noord <[email protected]>
2424
# Copyright (c) 2021 René Fritze <[email protected]>

tests/unittest_protocols.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
# Copyright (c) 2019 Ashley Whetter <[email protected]>
77
# Copyright (c) 2020-2021 hippo91 <[email protected]>
88
# Copyright (c) 2020 David Gilman <[email protected]>
9-
# Copyright (c) 2021 Kian Meng, Ang <[email protected]>
109
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
10+
# Copyright (c) 2021 Kian Meng, Ang <[email protected]>
1111
# Copyright (c) 2021 Daniël van Noord <[email protected]>
1212
# Copyright (c) 2021 Marc Mueller <[email protected]>
1313

tests/unittest_scoped_nodes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
# Copyright (c) 2019 Peter de Blanc <[email protected]>
2121
# Copyright (c) 2020 David Gilman <[email protected]>
2222
# Copyright (c) 2020 Tim Martin <[email protected]>
23+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
2324
# Copyright (c) 2021 Tushar Sadhwani <[email protected]>
2425
# Copyright (c) 2021 Daniël van Noord <[email protected]>
25-
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
2626
# Copyright (c) 2021 doranid <[email protected]>
2727
# Copyright (c) 2021 Marc Mueller <[email protected]>
2828
# Copyright (c) 2021 Andrew Haigh <[email protected]>

0 commit comments

Comments
 (0)