@@ -231,7 +231,7 @@ def _check_versions():
231
231
232
232
# The decorator ensures this always returns the same handler (and it is only
233
233
# attached once).
234
- @functools .lru_cache ()
234
+ @functools .lru_cache
235
235
def _ensure_handler ():
236
236
"""
237
237
The first time this function is called, attach a `StreamHandler` using the
@@ -321,7 +321,7 @@ class ExecutableNotFoundError(FileNotFoundError):
321
321
pass
322
322
323
323
324
- @functools .lru_cache ()
324
+ @functools .lru_cache
325
325
def _get_executable_info (name ):
326
326
"""
327
327
Get the version of some executable that Matplotlib optionally depends on.
@@ -364,7 +364,7 @@ def impl(args, regex, min_ver=None, ignore_exit_code=False):
364
364
try :
365
365
output = subprocess .check_output (
366
366
args , stderr = subprocess .STDOUT ,
367
- universal_newlines = True , errors = "replace" )
367
+ text = True , errors = "replace" )
368
368
except subprocess .CalledProcessError as _cpe :
369
369
if ignore_exit_code :
370
370
output = _cpe .output
@@ -459,7 +459,7 @@ def impl(args, regex, min_ver=None, ignore_exit_code=False):
459
459
f"version supported by Matplotlib is 3.0" )
460
460
return info
461
461
else :
462
- raise ValueError ("Unknown executable: {!r}" . format ( name ) )
462
+ raise ValueError (f "Unknown executable: { name !r} " )
463
463
464
464
465
465
@_api .deprecated ("3.6" , alternative = "a vendored copy of this function" )
@@ -757,7 +757,7 @@ def __repr__(self):
757
757
repr_split = pprint .pformat (dict (self ), indent = 1 ,
758
758
width = 80 - indent ).split ('\n ' )
759
759
repr_indented = ('\n ' + ' ' * indent ).join (repr_split )
760
- return '{ }({})'. format ( class_name , repr_indented )
760
+ return f' { class_name } ({ repr_indented } )'
761
761
762
762
def __str__ (self ):
763
763
return '\n ' .join (map ('{0[0]}: {0[1]}' .format , sorted (self .items ())))
@@ -799,7 +799,7 @@ def rc_params(fail_on_error=False):
799
799
return rc_params_from_file (matplotlib_fname (), fail_on_error )
800
800
801
801
802
- @functools .lru_cache ()
802
+ @functools .lru_cache
803
803
def _get_ssl_context ():
804
804
try :
805
805
import certifi
@@ -1041,7 +1041,7 @@ def rc(group, **kwargs):
1041
1041
for g in group :
1042
1042
for k , v in kwargs .items ():
1043
1043
name = aliases .get (k ) or k
1044
- key = '%s.%s' % ( g , name )
1044
+ key = f' { g } . { name } '
1045
1045
try :
1046
1046
rcParams [key ] = v
1047
1047
except KeyError as err :
@@ -1430,11 +1430,11 @@ def func(foo, label=None): ...
1430
1430
arg_names = arg_names [1 :] # remove the first "ax" / self arg
1431
1431
1432
1432
assert {* arg_names }.issuperset (replace_names or []) or varkwargs_name , (
1433
- "Matplotlib internal error: invalid replace_names ({!r}) for {!r} "
1434
- . format ( replace_names , func .__name__ ) )
1433
+ "Matplotlib internal error: invalid replace_names "
1434
+ f"( { replace_names !r } ) for { func .__name__ !r } " )
1435
1435
assert label_namer is None or label_namer in arg_names , (
1436
- "Matplotlib internal error: invalid label_namer ({!r}) for {!r} "
1437
- . format ( label_namer , func .__name__ ) )
1436
+ "Matplotlib internal error: invalid label_namer "
1437
+ f"( { label_namer !r } ) for { func .__name__ !r } " )
1438
1438
1439
1439
@functools .wraps (func )
1440
1440
def inner (ax , * args , data = None , ** kwargs ):
0 commit comments