This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Issue while passing the parameter
Type: compile error Stage: resolved
Components: Windows Versions: Python 2.7
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: Nosy List: berker.peksag, kameshwar, paul.moore, steve.dower, tim.golden, zach.ware
Priority: normal Keywords:

Created on 2016-08-25 00:13 by kameshwar, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (2)
msg273614 - (view) Author: Kameshwar Singh (kameshwar) Date: 2016-08-25 00:13
Hello Team,

I have one issue while using below function. I am using python 2.7.11 version on both OSX and Windows.

batch_result = SFbulk.get_batch_results(batch, result_id, job, maxfields=1)

If I am using above function on Windows machine, its working fine but on OSX its throwing error for maxfields=1 parameter.
And if I am using below code.
maxfields=1
batch_result = SFbulk.get_batch_results(batch, result_id, job, maxfields)

In this case, this is running fine on OSX but throwing error on Windows.

Please help me on this.
msg273615 - (view) Author: Berker Peksag (berker.peksag) * (Python committer) Date: 2016-08-25 00:17
Please report this to sfbulk developers. sfbuld is not part of the Python standard library.
History
Date User Action Args
2022-04-11 14:58:35adminsetgithub: 72043
2016-08-25 00:17:52berker.peksagsetstatus: open -> closed

nosy: + berker.peksag
messages: + msg273615

resolution: not a bug
stage: resolved
2016-08-25 00:13:13kameshwarcreate