JuliaStats / RDatasets.jl

Julia package for loading many of the data sets available in R
GNU General Public License v3.0
159 stars 56 forks source link

Fix open file handles #65

Closed laborg closed 5 years ago

laborg commented 5 years ago

In the previous PR (https://github.com/johnmyleswhite/RDatasets.jl/pull/62) I was inattentive while writing the IO handling: When providing data from a CSV the file wasn't properly closed, but relied on the finalizer to do so. This PR fixes the behaviour by using a do construct.