File tree Expand file tree Collapse file tree 3 files changed +140
-67
lines changed
Expand file tree Collapse file tree 3 files changed +140
-67
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,8 @@ XXXX-XX-XX
2020 not properly handle UNC paths. Paths such as ``\\??\\C:\\Windows\\Temp `` and
2121 ``'\\Device\\HarddiskVolume1\\Windows\\Temp' `` are now converted to
2222 ``C:\\Windows\\Temp ``. (patch by Ben Peddell)
23+ - 2506 _, [Windows]: Windows service APIs had issues with unicode services using
24+ special characters in their name.
2325- 2514 _, [Linux]: `Process.cwd() `_ sometimes fail with `FileNotFoundError ` due
2426 to a race condition.
2527- 2526 _, [Linux]: `Process.create_time() `_, which is used to univocally
Original file line number Diff line number Diff line change @@ -408,7 +408,7 @@ def wrapper(*args, **kwargs):
408408 except KeyError :
409409 try :
410410 ret = cache [key ] = fun (* args , ** kwargs )
411- except Exception as err : # noqa: BLE001
411+ except Exception as err :
412412 raise err from None
413413 return ret
414414
@@ -457,14 +457,14 @@ def wrapper(self):
457457 # case 2: we never entered oneshot() ctx
458458 try :
459459 return fun (self )
460- except Exception as err : # noqa: BLE001
460+ except Exception as err :
461461 raise err from None
462462 except KeyError :
463463 # case 3: we entered oneshot() ctx but there's no cache
464464 # for this entry yet
465465 try :
466466 ret = fun (self )
467- except Exception as err : # noqa: BLE001
467+ except Exception as err :
468468 raise err from None
469469 try :
470470 self ._cache [fun ] = ret
You can’t perform that action at this time.
0 commit comments