Skip to content

Instantly share code, notes, and snippets.

@roskakori
roskakori / cutplace_htlwrn_notes
Last active August 29, 2015 14:10
Notes for HTLWRN team on improving cutplace
Notes for cutplace
------------------
0.9.0, week 2015/xxx
* Thomas: explain test_sql._assert_is_valid_sqlite_statement
0.9.0, week 2015/13
* Thomas: test that field names with non alphanumeric/_ are rejected
* htlwrn: continue SQL
"""
This source code can act as base for a coding dojo.
It implements and test a function `iter_is_equal()` that take two sequences
as parameters and returns `True` if all there items are equal.
>>> iter_is_equal([1, 2, 3], [1, 2, 3])
True
>>> iter_is_equal([1, 2, 3], [1, 3])
False