@@ -386,20 +386,35 @@ def time_format_exact(self):
386
386
def time_format_no_exact (self ):
387
387
to_datetime (self .s , format = '%d%b%y' , exact = False )
388
388
389
- def time_cache_with_unique_seconds_and_unit (self ):
390
- to_datetime (self .unique_numeric_seconds , unit = 's' )
389
+ def time_cache_true_with_unique_seconds_and_unit (self ):
390
+ to_datetime (self .unique_numeric_seconds , unit = 's' , cache = True )
391
391
392
- def time_cache_with_dup_seconds_and_unit (self ):
393
- to_datetime (self .dup_numeric_seconds , unit = 's' )
392
+ def time_cache_false_with_unique_seconds_and_unit (self ):
393
+ to_datetime (self .unique_numeric_seconds , unit = 's' , cache = False )
394
394
395
- def time_cache_with_dup_string_dates (self ):
396
- to_datetime (self .dup_string_dates )
395
+ def time_cache_true_with_dup_seconds_and_unit (self ):
396
+ to_datetime (self .dup_numeric_seconds , unit = 's' , cache = True )
397
397
398
- def time_cache_with_dup_string_dates_and_format (self ):
399
- to_datetime (self .dup_string_dates , format = '%Y-%m-%d' )
398
+ def time_cache_false_with_dup_seconds_and_unit (self ):
399
+ to_datetime (self .dup_numeric_seconds , unit = 's' , cache = False )
400
400
401
- def time_cache_with_dup_string_tzoffset_dates (self ):
402
- to_datetime (self .dup_string_with_tz )
401
+ def time_cache_true_with_dup_string_dates (self ):
402
+ to_datetime (self .dup_string_dates , cache = True )
403
+
404
+ def time_cache_false_with_dup_string_dates (self ):
405
+ to_datetime (self .dup_string_dates , cache = False )
406
+
407
+ def time_cache_true_with_dup_string_dates_and_format (self ):
408
+ to_datetime (self .dup_string_dates , format = '%Y-%m-%d' , cache = True )
409
+
410
+ def time_cache_false_with_dup_string_dates_and_format (self ):
411
+ to_datetime (self .dup_string_dates , format = '%Y-%m-%d' , cache = False )
412
+
413
+ def time_cache_true_with_dup_string_tzoffset_dates (self ):
414
+ to_datetime (self .dup_string_with_tz , cache = True )
415
+
416
+ def time_cache_false_with_dup_string_tzoffset_dates (self ):
417
+ to_datetime (self .dup_string_with_tz , cache = False )
403
418
404
419
405
420
class Offsets (object ):
0 commit comments