(x)
| 772 | 'Advanced Server.') |
| 773 | |
| 774 | def get_round_val(x): |
| 775 | if x < 100000: |
| 776 | return x + 100 - x % 100 |
| 777 | else: |
| 778 | return x + 10000 - x % 10000 |
| 779 | |
| 780 | if get_round_val(src_manager.version) == \ |
| 781 | get_round_val(tar_manager.version): |
no outgoing calls
no test coverage detected