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 tomaugspurger
Recipients tomaugspurger
Date 2019-08-22.11:18:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1566472719.5.0.285730751371.issue37915@roundup.psfhosted.org>
In-reply-to
Content
The following crashes with Python 3.8b3

```
import sys
import pytz
import datetime

print(sys.version_info)
print(pytz.__version__)
print(datetime.timezone.utc == pytz.utc)
```

When run with `-X faulthandler`, I see

```
sys.version_info(major=3, minor=8, micro=0, releaselevel='beta', serial=3)
2019.2
Fatal Python error: Segmentation fault

Current thread 0x00000001138dc5c0 (most recent call first):
  File "foo.py", line 8 in <module>
Segmentation fault: 11
```
History
Date User Action Args
2019-08-22 11:18:39tomaugspurgersetrecipients: + tomaugspurger
2019-08-22 11:18:39tomaugspurgersetmessageid: <1566472719.5.0.285730751371.issue37915@roundup.psfhosted.org>
2019-08-22 11:18:39tomaugspurgerlinkissue37915 messages
2019-08-22 11:18:39tomaugspurgercreate