[issue46489] webbrowser crashes Ubuntu kernel

2022-01-29 Thread Danylo
Danylo added the comment: Never mind. I had a crash today with no Python involved. At least, no webbrowser lib was running. Although Python webbrowser lib surely triggers the issue I have with my system. Need to find the origin somewhere else. Please report back if someone else experiences

[issue46489] webbrowser crashes Ubuntu kernel

2022-01-23 Thread Danylo
New submission from Danylo : I've been hunting this problem for half a year already. With other hypotheses rejected - Linux issue, old PC, PyCharm bug, bad luck, - the webbrowser Python lib supposedly makes the Ubuntu kernel panic. Either from a terminal or within PyCharm (happens on

[issue42259] pprint: infinite recursion for saferepr() when using nested objects, but str() works

2020-11-04 Thread Danylo Hlynskyi
New submission from Danylo Hlynskyi : First, here's an example using str(): ``` class NiceObject: def __str__(self): return str(self.__dict__) def __repr__(self): return str(self) s = NiceObject() s.self = s ``` This outputs: ``` >>> s {'self&#

[issue38452] unittest setUpClass missing 1 required positional argument: 'cls'

2019-10-12 Thread Danylo
Danylo added the comment: Sorry, true. You can close the issue. -- stage: -> resolved status: pending -> closed ___ Python tracker <https://bugs.python.org/i

[issue38452] unittest setUpClass missing 1 required positional argument: 'cls'

2019-10-11 Thread Danylo
New submission from Danylo : Currently, unittest setUpClass and tearDownClass methods are incorrectly called from within its core. ``` class TestUltrasonicEnv(unittest.TestCase): def setUpClass(cls): pass def tearDownClass(cls): pass ``` Traceback (the same for