We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Original report by Kevin Adler (Bitbucket: kadler, GitHub: kadler).
The way to specify keys seems backwards:
#!python itool.add( iPgm('mykey','MYPGM') .addParm(iData('inchara','1a','a')) .addParm( iDS('INDS1') .addData(iData('dscharb','1a','b')) .addData(iData('desdec','12p2','3.33')) ) )
makes more sense to me as:
#!python itool.add('mykey', iPgm('MYPGM') .addParm('inchara', iData('1a','a')) .addParm('INDS1', iDS() .addData('dscharb', iData('1a','b')) .addData('desdec', iData('12p2','3.33')) ) )
The text was updated successfully, but these errors were encountered:
Original comment by Tony Cairns (Bitbucket: rangercairns, GitHub: rangercairns).
This is a low priority, but will be considered in future release.
Sorry, something went wrong.
status
No branches or pull requests
Original report by Kevin Adler (Bitbucket: kadler, GitHub: kadler).
The way to specify keys seems backwards:
makes more sense to me as:
The text was updated successfully, but these errors were encountered: