gh-123017: Add Android to the list of platforms where strftime doesn't support negative years (#124467)

Add Android to the list of platforms where `strftime` doesn't support negative years
This commit is contained in:
Malcolm Smith 2024-09-27 15:35:18 +01:00 committed by GitHub
parent 365dffbaad
commit 0a3577bdfc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 9 additions and 3 deletions

View file

@ -654,8 +654,7 @@ class _TestStrftimeYear:
self.test_year('%04d', func=year4d)
def skip_if_not_supported(y):
msg = "strftime() is limited to [1; 9999] with Visual Studio"
# Check that it doesn't crash for year > 9999
msg = f"strftime() does not support year {y} on this platform"
try:
time.strftime('%Y', (y,) + (0,) * 8)
except ValueError: