Updated header

This commit is contained in:
Hernan Grecco 2014-01-13 19:52:18 -03:00
parent 48b8dab969
commit f4aa0c0535
2 changed files with 4 additions and 4 deletions

View File

@ -3,11 +3,10 @@
pint.compat.chainmap
~~~~~~~~~~~~~~~~~~~~
Taken from the Python 3.3 source code.
From https://code.activestate.com/recipes/578078-py26-and-py30-backport-of-python-33s-lru-cache/
:copyright: 2004, Raymond Hettinger,
:license: MIT License
:copyright: 2013, PSF
:license: PSF License
"""
from __future__ import division, unicode_literals, print_function, absolute_import

View File

@ -3,6 +3,7 @@
pint.compat.lrucache
~~~~~~~~~~~~~~~~~~~~
LRU (least recently used) cache backport.
From https://code.activestate.com/recipes/578078-py26-and-py30-backport-of-python-33s-lru-cache/