Преглед изворни кода

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