summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorTimothy Crosley <timothy.crosley@gmail.com>2013-11-13 22:44:39 -0500
committerTimothy Crosley <timothy.crosley@gmail.com>2013-11-13 22:44:39 -0500
commitba6d10fed43ec9a8a8eec0646e27212a62d81b51 (patch)
tree793b8bb450dac08cadb32d0ca0bc48c07d7449a6 /README.md
parentfa80847aeea4803cdd9ff002d34c6d098668627f (diff)
downloadpies-ba6d10fed43ec9a8a8eec0646e27212a62d81b51.tar.gz
More documentation improvements
Diffstat (limited to 'README.md')
-rw-r--r--README.md5
1 files changed, 2 insertions, 3 deletions
diff --git a/README.md b/README.md
index 03504dc..430585e 100644
--- a/README.md
+++ b/README.md
@@ -33,8 +33,7 @@ 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, as stated above, where possible pies tries to enable you to not have to change syntax at all -
-pass including the import.
+Additionally, as stated above, where possible pies tries to enable you to not have to change syntax at all.
Integrating pies into your diet
======================
@@ -114,7 +113,7 @@ Special Syntax (The Ugly)
Sadly, there is still special syntax that is present for corner cases.
- PY2 - True if running on Python2
-- Py3 - True if running on Python3
+- PY3 - True if running on Python3
- u('text') - should replace u'text' made available for ease of porting code from Python2
- itemsview(collection) - should replace collection.iteritems() where you do not control the collection passed in
- valuesview(collection) - should replace collection.values() where you do not control the collection passed in