Closed
Description
When working with the latest beta (5.4.0 Beta 0), it seems like CP is running a little slower than it was in 5.3.0.
Code to test:
import time
start = time.monotonic()
for _ in range(1000000):
pass
print("Time: {}".format(time.monotonic()-start))
Output (ran on an itsybitsy m4 express):
Version 5.3.0: 4.784 seconds
Version 5.4.0 Beta 0: 9.219 seconds
Can anyone else reproduce this?