This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Eric Wieser
Recipients Eric Wieser, ZackerySpytz
Date 2019-06-07.06:41:33
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1559889694.06.0.92762632537.issue37188@roundup.psfhosted.org>
In-reply-to
Content
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
History
Date User Action Args
2019-06-07 06:41:34Eric Wiesersetrecipients: + Eric Wieser, ZackerySpytz
2019-06-07 06:41:34Eric Wiesersetmessageid: <1559889694.06.0.92762632537.issue37188@roundup.psfhosted.org>
2019-06-07 06:41:34Eric Wieserlinkissue37188 messages
2019-06-07 06:41:33Eric Wiesercreate