data-8 / Gofer-Grader

Small autograding library
http://okgrade.readthedocs.io/en/latest/
BSD 3-Clause "New" or "Revised" License
16 stars 19 forks source link

use cross-platform version of /dev/null #22

Closed gusennan closed 5 years ago

gusennan commented 5 years ago

/dev/null doesn't exist on the Windows operating system but there's an equivalent file. Gofer consequently raises an error on Windows. Python hides this difference under the cross-platform code os.devnull. This PR updates usages of /dev/null to os.devnull, which is compatible with all operating systems.