]> git.phdru.name Git - m_lib.git/blob - m_lib/hash/test/test-mk1.py
Use print function for Py3 compatibility
[m_lib.git] / m_lib / hash / test / test-mk1.py
1 #! /usr/bin/env python
2
3
4 from __future__ import print_function
5 from m_lib.hash import MKhash
6
7
8 print("Making...")
9 db = MKhash.open("db", 'c')
10 db["test"] = "Test Ok!"
11 db.close()