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’
Release files for icall 0.3.4
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| icall-0.3.4.zip | 2.4 kB | Details |
Release files / icall-0.3.4.zip
| Download URL | icall-0.3.4.zip |
|---|---|
| Size | 2.4 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
d0d80c038e5f6cd4fbf4cf5082d0786766f07ebdcd08137c32c5d73f0f74ddba
|
|
BLAKE2b-256 checksum How to use checksums |
51cd4aef2a76124874905b485438fcff36934a2cf4f6b10f2bc992fc28df79cb
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |