Move into the 21st century by fixing some pylint warnings.

This commit is contained in:
Avery Pennarun 2018-12-02 23:15:37 -05:00
commit e1327540fb
22 changed files with 797 additions and 388 deletions

View file

@ -1,5 +1,4 @@
import os, errno, fcntl
from atoi import atoi
def join(between, l):
@ -25,5 +24,3 @@ def close_on_exec(fd, yes):
if yes:
fl |= fcntl.FD_CLOEXEC
fcntl.fcntl(fd, fcntl.F_SETFD, fl)