(form, element, value)
| 14857 | ##################################### ----- RESULTS ------ ################################################## |
| 14858 | |
| 14859 | def AddToReturnDictionary(form, element, value): |
| 14860 | form.ReturnValuesDictionary[element.Key] = value |
| 14861 | # if element.Key is None: |
| 14862 | # form.ReturnValuesDictionary[form.DictionaryKeyCounter] = value |
| 14863 | # element.Key = form.DictionaryKeyCounter |
| 14864 | # form.DictionaryKeyCounter += 1 |
| 14865 | # else: |
| 14866 | # form.ReturnValuesDictionary[element.Key] = value |
| 14867 | |
| 14868 | |
| 14869 | def AddToReturnList(form, value): |
no outgoing calls
no test coverage detected