summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorTimothy Crosley <timothy.crosley@gmail.com>2013-09-01 20:55:45 -0400
committerTimothy Crosley <timothy.crosley@gmail.com>2013-09-01 20:55:45 -0400
commit3cfb6d7b934284bb8f11ef9278d01ec3bb4b24c9 (patch)
tree0f9c9226b51140624fde0bceb4d5560e92c99e6f /README.md
parentcb683a4f01e3f8c886184ecc8a9c2db411227c96 (diff)
downloadpies-3cfb6d7b934284bb8f11ef9278d01ec3bb4b24c9.tar.gz
Imporved readme, import py 2.6+ futures
Diffstat (limited to 'README.md')
-rw-r--r--README.md13
1 files changed, 12 insertions, 1 deletions
diff --git a/README.md b/README.md
index 98ac9c2..5daedd4 100644
--- a/README.md
+++ b/README.md
@@ -4,6 +4,17 @@ pies!
The simplest (and tastiest) way to write one program that runs on both Python 2.6+ and Python 3.
+How does pies differ from six?
+====================
+
+Pies is significantly smaller and simpler then six because it assumes for
+everything possible the developer is using the Python 3 compatible versions included with Python 2.6+,
+whereas six tries to maintain compatibility with Python 2.4 -
+leading to many more overrides and further into different language territory.
+Additionally where possible pies tries to enable you to not have to change syntax at all -
+pass including the import.
+
+
Let's eat some pies!
======================
@@ -41,5 +52,5 @@ The following will work unchanged in Python 3 after import (using the Python 2 s
- urllib.unquote_plus
- urllib.urlencode
-pies will also automatically install and include the most optimal version of OrderedDict for the python environment
+pies will also automatically install and include the most optimal version of OrderedDict for the Python environment
in use, so you should remove any other explicit imports of OrderedDict.