summaryrefslogtreecommitdiff
path: root/bind.py
diff options
context:
space:
mode:
Diffstat (limited to 'bind.py')
-rw-r--r--bind.py25
1 files changed, 6 insertions, 19 deletions
diff --git a/bind.py b/bind.py
index a130c5b..b5f99f8 100644
--- a/bind.py
+++ b/bind.py
@@ -1,29 +1,16 @@
-# This program is free software; you can redistribute it and/or modify it under
-# the terms of the GNU General Public License as published by the Free Software
-# Foundation; either version 2 of the License, or (at your option) any later
-# version.
-#
-# This program is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
-# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License along with
-# this program; if not, write to the Free Software Foundation, Inc.,
-# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+"""Optimize globals in certain functions by binding their names to values
+provided in a dictionnary.
-""" Copyright (c) 2002-2003 LOGILAB S.A. (Paris, FRANCE).
- http://www.logilab.fr/ -- mailto:contact@logilab.fr
-
- This module provides a way to optimize globals in certain functions by binding
- their names to values provided in a dictionnary
+:copyright: 2002-2008 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
+:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
+:license: General Public License version 2 - http://www.gnu.org/licenses
"""
+__docformat__ = "restructuredtext en"
from warnings import warn
warn('logilab.common.bind module is deprecated and will disappear in a near release',
DeprecationWarning, stacklevel=2)
-__revision__ = '$Id: bind.py,v 1.8 2005-11-22 13:12:59 syt Exp $'
-
# TODO: unit tests
# * this module provide a function bind(func,vars) which replaces every
# global variable 'm' by the value vars['m'] if such value exists in dict