New submission from Eric Wieser <wieser.e...@gmail.com>:

Introduced in the fix to bpo-36504, GH-12660.

```python
>>> (ctypes.c_uint8 * 0 * 2)()
Fatal Python error: Floating point exception

>>> struct Empty(ctypes.Structure): _fields_ = []
>>> (Empty * 2)()
Fatal Python error: Floating point exception
```

This used to work just fine

----------
messages: 344901
nosy: Eric Wieser, ZackerySpytz
priority: normal
severity: normal
status: open
title: Creating a ctypes array of an element with size zero causes "Fatal 
Python error: Floating point exception"
type: crash
versions: Python 2.7, Python 3.7, Python 3.8

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue37188>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to