Files
python/exercises/practice/error-handling/error_handling.py

15 lines
244 B
Python
Raw Normal View History

2017-10-13 11:18:33 -05:00
def handle_error_by_throwing_exception():
pass
def handle_error_by_returning_none(input_data):
pass
def handle_error_by_returning_tuple(input_data):
pass
def filelike_objects_are_closed_on_exception(filelike_object):
pass