Metadata-Version: 1.1
Name: icall
Version: 0.3.4
Summary: Parameters call function, :-)
Home-page: https://github.com/huyx/icall
Author: huyx
Author-email: ycyuxin@gmail.com
License: UNKNOWN
Description: Parameters call function, :-)
        =============================
        
        You can do::
        
            from __future__ import print_function
        
            print('x', 'y', sep=',')
        
        But I can not do::
        
            from __future__ import print_function
        
            parameters = ('x', 'y', sep=',')
            print(parameters)
        
        With icall, I can do similar thing::
        
            from __future__ import print_function
            from icall import ICall
        
            parameters = ICall('x', 'y', sep=',')
            parameters(print)
        
        Sometimes, you may use Parameters(similar to ICall)::
        
            from __future__ import print_function
            from icall import Parameters
        
            parameters = Parameters('x', 'y', sep=',')
            parameters(format)

        

        

        Changes
        =======
        
        0.3.3(2014-09-16)
        -----------------
        
        - Use reStructedText in text files. 
        
        0.3.0
        -----
        
        - Rename package 'callwith' to 'icall'
Keywords: functools,function,call
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
