summaryrefslogtreecommitdiff
path: root/docs/topics/python3.txt
AgeCommit message (Collapse)Author
2015-06-09[1.8.x] Fixed typos in docs/topics/python3.txtNik Nyby
Backport of f67127e0af396e9039038a9e5539425851cf95c4 from master
2015-01-02Updated six to 1.9.0.Tim Graham
2014-12-19Used https for most *.python.org linksClaude Paroz
2014-12-13Updated advice on six.moves.range/xrange; refs #23812.Tim Graham
2014-11-13Removed thread customizations of six which are now built-in.Tim Graham
2014-10-16Fixed some intersphinx references.Tim Graham
2014-08-05Fixed broken links in docs.Tim Graham
2014-04-26Updated doc links to point to Python 3 documentationClaude Paroz
2013-12-08Updated a bunch of hyperlinks in documentationClaude Paroz
2013-09-23Removed implication that six is part of Python stdlib.Tim Graham
2013-09-23Fixed #20830 -- Clarified that Django uses a customized version of six.Daley Chetwynd
Thanks glarrain for the suggestion.
2013-09-05Took advantage of django.utils.six.moves.urllib.*.Aymeric Augustin
2013-09-02Replaced "not PY3" by "PY2", new in six 1.4.0.Aymeric Augustin
2013-05-18Fixed #20004 -- Moved non DB-related assertions to SimpleTestCase.Ramiro Morales
Thanks zalew for the suggestion and work on a patch. Also updated, tweaked and fixed testing documentation.
2013-04-19Explained the pattern for special methods compatibility.Aymeric Augustin
2013-03-17Minor docs fix for e11ccc76.Aymeric Augustin
2013-03-17Updated bundled version of six.Aymeric Augustin
2013-02-26[py3] str.decode does not exist; str.encode was intendedMarti Raudsepp
2013-01-26Fixed #19589 -- assertRegexpMatches is deprecated in Python 3.3.Aymeric Augustin
2013-01-02Fixed #19516 - Fixed remaining broken links.Tim Graham
Added -n to sphinx builds to catch issues going forward.
2012-12-26Fixed broken links, round 3. refs #19516Tim Graham
2012-11-03Fixed #18963 -- Used a subclass-friendly patternAymeric Augustin
for Python 2 object model compatibility methods.
2012-09-08Fixed a typo in the Python 3 compatibility docs.Michal Petrucha
2012-09-07Document ``six.assertRaisesRegex``.Alex Gaynor
2012-09-07[py3] Documented forwards-compatible aliasesAymeric Augustin
that will be available as of version 1.4.2.
2012-08-28Indexing bytes is the problem not slicing.Benjamin Peterson
2012-08-19Clarified a sentence in the Python 3 docs.Aymeric Augustin
Thanks dstufft for the report.
2012-08-19Fixed indentation in the Python3 docsMarc Tamlyn
2012-08-19[py3] Wrote Django-specific porting tipsAymeric Augustin
and extended the existing Python 3 documentation.
2012-08-18[py3] Added compatibility import of thread/_threadAymeric Augustin
This commit fixes the auto-reload of the development server. I should have done that change in ca07fda2.
2012-08-12[py3] Explained @python_2_unicode_compatible usageAymeric Augustin
2012-08-03Documented the trick used in 9908201d7f.Aymeric Augustin
2012-07-25[py3] Updated dict-like data structures for Python 3.Aymeric Augustin
The keys/items/values methods return iterators in Python 3, and the iterkeys/items/values methods don't exist in Python 3. The behavior under Python 2 is unchanged.
2012-07-22Fixed a broken link in the Python 3 docs.Aymeric Augustin
Thanks ptone for the report.
2012-07-22[py3] Documented coding guidelines for Python 3.Aymeric Augustin
2012-07-22[py3] Bundled six for Python 3 compatibility.Aymeric Augustin
Refs #18363.
2012-07-10typo in "django/docs/topics/python3.txt"Stefan Kjartansson
2012-06-07Fixed #18363 -- Added Python 3 compatibility layer.Claude Paroz
Thanks Vinay Sajip for the support of his django3 branch and Alex Gaynor, kezabelle, YorikSar for the review.