Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fengsp/faster-python
Write Faster Python Programs
https://github.com/fengsp/faster-python
Last synced: about 2 months ago
JSON representation
Write Faster Python Programs
- Host: GitHub
- URL: https://github.com/fengsp/faster-python
- Owner: fengsp
- License: other
- Created: 2014-04-15T08:14:37.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-10-16T14:49:13.000Z (about 10 years ago)
- Last Synced: 2023-08-01T06:21:45.242Z (over 1 year ago)
- Language: Python
- Size: 164 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
##Write Faster Python Programs
> Premature optimization is the root of all evil. ----C.A.R.Hoare
##guide
* Never optimize before the program produces the desired results.
* Think twice if it is really worth before you make your code less readable for a speed gain.
* Find out bottlenecks before doing anything.
* Do not optimize with bugs.