浏览代码

Adding links on porting to Python 3

Swaroop C H 12 年之前
父节点
当前提交
84b6605022
共有 1 个文件被更改,包括 8 次插入0 次删除
  1. 8 0
      17-more.md

+ 8 - 0
17-more.md

@@ -221,6 +221,14 @@ The `assert` statement should be used judiciously. Most of the time,
 it is better to catch exceptions, either handle the problem or display
 it is better to catch exceptions, either handle the problem or display
 an error message to the user and then quit.
 an error message to the user and then quit.
 
 
+## Differences between Python 2 and Python 3 ##
+
+Read these articles:
+
+- [Armin's Porting to Python 3 Redux](http://lucumr.pocoo.org/2013/5/21/porting-to-python-3-redux/)
+- [PyDanny's Python 3 experience](http://pydanny.com/experiences-with-django-python3.html)
+- [Official Django Guide to Porting to Python 3](https://docs.djangoproject.com/en/dev/topics/python3/)
+
 ## Summary ##
 ## Summary ##
 
 
 We have covered some more features of Python in this chapter and yet
 We have covered some more features of Python in this chapter and yet