Message360137
This is a relatively simple repro of the underlying problem:
import _struct
s = _struct.Struct('i')
class C:
def __del__(self):
s.pack(42, 100)
_struct.x = C()
It's a little bit different in that it is actually causing the module to attempt to throw an exception instead of do a type check. |
|
| Date |
User |
Action |
Args |
| 2020-01-16 19:40:37 | dino.viehland | set | recipients:
+ dino.viehland, twouters, vstinner, eric.snow, pablogsal, eelizondo |
| 2020-01-16 19:40:37 | dino.viehland | set | messageid: <[email protected]> |
| 2020-01-16 19:40:37 | dino.viehland | link | issue38076 messages |
| 2020-01-16 19:40:37 | dino.viehland | create | |
|