Commit Graph
5 Commits
Author SHA1 Message Date
Lorenzo Bolla e088d13f2f Issue #87 Stub for shelve
Py3's `shelve` is more restrictive, requiring keys to be `str`, whereas
Py2 allows any hashable type.

E.g.:

    s = Shelf({})
    s[1] = 'one'  # raises AttributeError in py3, but it's OK in Py2
2016-02-25 09:41:32 +00:00
Lorenzo Bolla fb4910ed6d Remove Year/Month/Day/Week type aliases 2016-02-24 22:38:32 +00:00
Lorenzo Bolla 12d348fe67 Remove mention to internal variables 2016-02-24 22:19:25 +00:00
Lorenzo Bolla ce938b367b Remove True/False/None optional arguments.
Use Optional[...] when appropriate.
Adhere to PEP-484 styling.
2016-02-24 21:01:41 +00:00
Lorenzo Bolla d872968e32 Issue 88: Stub for calendar module 2016-02-24 12:43:27 +00:00