diff options
author | Brian Harring <ferringb@gentoo.org> | 2005-07-13 07:22:08 +0000 |
---|---|---|
committer | Brian Harring <ferringb@gentoo.org> | 2005-07-13 07:22:08 +0000 |
commit | ed13b9b0847db38e6574b7781d560f162cb3c4f3 (patch) | |
tree | 7ae644b5fe8a104d5dfd613b1e3f0c31eadc2901 | |
parent | shifted imports, added some documentation to the class. (diff) | |
download | portage-cvs-ed13b9b0847db38e6574b7781d560f162cb3c4f3.tar.gz portage-cvs-ed13b9b0847db38e6574b7781d560f162cb3c4f3.tar.bz2 portage-cvs-ed13b9b0847db38e6574b7781d560f162cb3c4f3.zip |
header adjustment
-rw-r--r-- | portage/util/currying.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/portage/util/currying.py b/portage/util/currying.py index 0f4d6af..84e5140 100644 --- a/portage/util/currying.py +++ b/portage/util/currying.py @@ -1,5 +1,7 @@ +# Copyright: 2005 Gentoo Foundation # Author(s): Lifted from python cookbook, Scott David Daniels, Ben Wolfson, Nick Perkins, Alex Martelli for curry routine. # License: GPL2 +# $Header: /local/data/ulm/cvs/history/var/cvsroot/gentoo-src/portage/portage/util/currying.py,v 1.2 2005/07/13 07:22:08 ferringb Exp $ def curry(*args, **kargs): def callit(*moreargs, **morekargs): |