ealeon
ealeon

Reputation: 12452

Python2.5 to Python2.7 Performance degradation

We have a software that builds and we monitor build times every day

Recently, we have updated our software to use python2.7 from python2.5 and the build times have increased (things got slower).

Without digging in, is this expected outcome?

Python2.7 is generally slower than Python2.5?

Upvotes: 1

Views: 58

Answers (1)

JBiss
JBiss

Reputation: 131

I recently migrated a project from 2.5 to 2.7 and experienced the same.

For me it was that my program was not thread safe. This was an interesting and enlightening read.

Upvotes: 1

Related Questions