Skip to content

Latest commit

 

History

History
4 lines (3 loc) · 657 Bytes

code_considerations.md

File metadata and controls

4 lines (3 loc) · 657 Bytes

Code Considerations

On going through the test_runner or runner_thread, one might think as to why did we use the a list to store a single value in the testStats[testResult] variable? The reason for doing so is based on how python works and the mutable nature of list object in python. Since, we don't have pointers in python we use the mutable nature of lists to modify the values of list by reference and use it across the functions. For reference, one can checkout this article on pointers-in-python