From 4aa45bfd75fc37ca8ab1fff87f43c83789bc3ed0 Mon Sep 17 00:00:00 2001 From: perey Date: Sat, 9 Sep 2017 22:30:14 +0800 Subject: [PATCH] Re-add Cython to the list. Commit 192305d, which merged the "Implementations" and "High Performance" sections, erroneously merged the CPython and Cython entries into one. --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 871d9b46..5c532447 100644 --- a/README.md +++ b/README.md @@ -690,7 +690,8 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). *Implementations of Python.* * [CLPython](https://github.com/metawilm/cl-python) - Implementation of the Python programming language written in Common Lisp. -* [CPython](https://github.com/python/cpython) - **Default, most widely used implementation of the Python programming language written in C.** Optimizing Static Compiler for Python. Uses type mixins to compile Python into C or C++ modules resulting in large performance gains. +* [CPython](https://github.com/python/cpython) - **Default, most widely used implementation of the Python programming language written in C.** +* [Cython](http://cython.org/) - Optimizing Static Compiler for Python. Uses type mixins to compile Python into C or C++ modules resulting in large performance gains * [Grumpy](http://grump.io) - More compiler than interpreter as more powerful CPython2.7 replacement (alpha). * [IronPython](https://github.com/IronLanguages/ironpython3) - Implementation of the Python programming language written in C# targeting the .NET Framework and Mono. * [Jython](https://hg.python.org/jython) - Implementation of Python programming language written in Java for the Java virtual machine (JVM).