faif / python-patterns

A collection of design patterns/idioms in Python

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

assert error? (cm1 == cm2) is True, assert True != cm3, this is useless.

geeknonerd opened this issue · comments

assert (cm1 == cm2) != cm3
assert (cm1 is cm2) is not cm3

Hi,

Thanks for pointing this out. Can you submit a pull request with the fix? I'll be glad to merge it