Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(venv) root@ha-dev:~/python-zeroconf# python3 -m timeit -s 'result=""' -u usec 'result = "".join((result, "thisisaname" + "."))' 20000 loops, best of 5: 16.4 usec per loop (venv) root@ha-dev:~/python-zeroconf# python3 -m timeit -s 'result=""' -u usec 'result += "thisisaname" + "."' 2000000 loops, best of 5: 0.105 usec per loop
- Loading branch information