rochacbruno-archive / raise_if

one liner `raise Exception if condition` for Python

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status Coverage Status Utility Emacs

forthebadge forthebadge forthebadge

raise_if

Python could have raise conditions like Ruby.

def i_must_have_truth(value)
  raise TypeError, 'You must give me truth' if value == false
end

But the only one line option that works hurts PEP8

def i_must_have_truth(value):
    if not value: raise TypeError('You must give me truth')

So..

$ pip install raise_if

import raise_if

def i_must_have_truth(value):
    raise_if(not value, TypeError, 'You must give me truth')

Pass exception type and arguments

raise_if(not 1 == 2, TypeError, 'Fails', another_arg='foo')

or

raise_if(not 1 == 2, TypeError('Fails', another_arg='foo'))

Why??

Because I am lazy and I do not like extra breaks in a chain of if statements!

:)

About

one liner `raise Exception if condition` for Python


Languages

Language:Python 100.0%