Luflosi 2b095f720e
Use "with suppress()" to suppress python exceptions
Using
```Python
with suppress(OSError):
    os.remove('somefile.tmp')
```
instead of
```Python
try:
    os.remove('somefile.tmp')
except OSError:
    pass
```
makes the code more compact and more readable IMO.

This pattern was recommended by Raymond Hettinger, a Python Core
Developer in his talk "Transforming Code into Beautiful, Idiomatic Python" at https://www.youtube.com/watch?v=OSGv2VnC0go. The transcript is available at https://github.com/JeffPaine/beautiful_idiomatic_python
2019-06-03 12:27:43 +02:00
2019-01-28 01:25:02 +01:00
2019-06-02 20:23:56 +05:30
2018-02-12 10:19:29 +05:30
2018-11-20 16:03:34 +01:00
2018-05-09 11:32:22 +05:30
2019-05-19 16:08:11 +02:00
2019-01-27 09:30:10 +05:30
2018-05-30 12:46:00 +05:30
2018-09-22 20:22:15 +02:00
2019-03-06 13:53:09 +05:30
...
2018-06-02 11:29:07 +05:30
2019-05-18 19:13:56 +02:00
2019-01-27 09:45:36 +05:30
2017-02-08 09:59:36 +05:30
2017-01-09 11:10:41 +05:30
...
2017-12-12 22:23:16 +05:30

= kitty - the fast, featureful, GPU based, terminal emulator

See https://sw.kovidgoyal.net/kitty

image:https://circleci.com/gh/kovidgoyal/kitty.svg?style=svg["Build status", link="https://circleci.com/gh/kovidgoyal/kitty"]
Description
kitty with bold_is_bright patch
Readme 48 MiB
Languages
Python 43.6%
C 28.3%
Go 20%
Objective-C 6%
Shell 1.5%
Other 0.5%