]> granicus.if.org Git - python/commitdiff
Move %x test to nonstandard section because it appears to be locale specific.
authorGuido van Rossum <guido@python.org>
Mon, 15 Dec 1997 18:06:19 +0000 (18:06 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 15 Dec 1997 18:06:19 +0000 (18:06 +0000)
Lib/test/test_strftime.py

index 25cf935791d956b4e9d138e36b88230975ad35cb..f1db8df88e138d9ae8e5a044d1b8c513f0a74000 100755 (executable)
@@ -57,8 +57,7 @@ def strftest(now):
        ('%w', '%d' % ((1+now[6]) % 7), 'weekday as a number (Sun 1st)'),
        ('%W', '%02d' % ((now[7] + (jan1[6] - 1)%7)/7),
         'week number of the year (Mon 1st)'),
-       ('%x', '%02d/%02d/%02d' % (now[1], now[2], (now[0]%100)),
-        '%m/%d/%y %H:%M:%S'),
+       # %x see below
        ('%X', '%02d:%02d:%02d' % (now[3], now[4], now[5]), '%H:%M:%S'),
        ('%y', '%02d' % (now[0]%100), 'year without century'),
        ('%Y', '%d' % now[0], 'year with century'),
@@ -69,6 +68,8 @@ def strftest(now):
     nonstandard_expectations = (
        # These are standard but don't have predictable output
        ('%c', fixasctime(time.asctime(now)), 'near-asctime() format'),
+       ('%x', '%02d/%02d/%02d' % (now[1], now[2], (now[0]%100)),
+        '%m/%d/%y %H:%M:%S'),
        ('(%Z)', '(%s)' % tz, 'time zone name'),
 
        # These are some platform specific extensions