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)
Change Log
----------
0.3.0
- Rename package 'callwith' to 'icall'
-----------------------------
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)
Change Log
----------
0.3.0
- Rename package 'callwith' to 'icall'
Release files for callwith 0.2.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| callwith-0.2.0.zip | 2.0 kB | Details |
Release files / callwith-0.2.0.zip
| Download URL | callwith-0.2.0.zip |
|---|---|
| Size | 2.0 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
7023f334fbd05ee04f3dda81c00f4c71a667fe469800051a0bf3aa2f3ed056bc
|
|
BLAKE2b-256 checksum How to use checksums |
90a51ced0adc1aafc6d39edb0991edf486ad8bf6d73291b5490d59fbb51aa30d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |