Lichen

Change of lib/__builtins__/exception/io.py

6:f551873980e5
lib/__builtins__/exception/io.py
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/lib/__builtins__/exception/io.py	Tue Aug 30 21:55:58 2016 +0200
     1.3 @@ -0,0 +1,26 @@
     1.4 +#!/usr/bin/env python
     1.5 +
     1.6 +"""
     1.7 +Input/output exception objects.
     1.8 +
     1.9 +Copyright (C) 2015 Paul Boddie <paul@boddie.org.uk>
    1.10 +
    1.11 +This program is free software; you can redistribute it and/or modify it under
    1.12 +the terms of the GNU General Public License as published by the Free Software
    1.13 +Foundation; either version 3 of the License, or (at your option) any later
    1.14 +version.
    1.15 +
    1.16 +This program is distributed in the hope that it will be useful, but WITHOUT
    1.17 +ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
    1.18 +FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
    1.19 +details.
    1.20 +
    1.21 +You should have received a copy of the GNU General Public License along with
    1.22 +this program.  If not, see <http://www.gnu.org/licenses/>.
    1.23 +"""
    1.24 +
    1.25 +class EOFError(Exception): pass
    1.26 +class IOError(Exception): pass
    1.27 +class KeyboardInterrupt(Exception): pass
    1.28 +
    1.29 +# vim: tabstop=4 expandtab shiftwidth=4