Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/django/utils/six.py
Commit message (Collapse)AuthorAgeFilesLines
* Updated six to 1.9.0.Tim Graham2015-01-021-25/+83
|
* Removed thread customizations of six which are now built-in.Tim Graham2014-11-131-4/+0
|
* Updated six to 1.8.0.Tim Graham2014-11-051-72/+174
|
* Added django.utils.six.buffer_typesShai Berger2014-06-131-0/+2
| | | | and used it in the Oracle SchemaEditor. Refs #22715.
* Made a test compatible with Python 2 and 3.Aymeric Augustin2014-06-071-0/+6
|
* Use the new implementation of `six.with_metaclass`.Simon Charette2014-04-291-1/+15
| | | | | | No more `NewBase` horrors. Thanks to bendavis78 for his work on merging this into six.
* Updated six to 1.6.1.Tim Graham2014-03-241-11/+25
|
* Fixed many typos in comments and docstrings.Rodolfo Carvalho2014-03-031-1/+1
| | | | Thanks Piotr Kasprzyk for help with the patch.
* Fixed #21823 -- Upgraded six to 1.5.2Tim Graham2014-01-261-39/+90
|
* Correct flake8 E302 violationsRay Ashman Jr2013-11-031-0/+4
|
* Fixed #21298 -- Fixed E301 pep8 warningsAlasdair Nicol2013-10-231-0/+6
|
* Fixed #21268 -- Fixed E303 pep8 warningsAlasdair Nicol2013-10-181-6/+0
|
* Updated six to version 1.4.1.Aymeric Augustin2013-09-041-16/+16
|
* Updated the bundled version of six to 1.4.0.Aymeric Augustin2013-09-021-16/+189
|
* Fixed #20016: worked around Jython not having a buffer.Andreas2013-03-271-2/+6
|
* Updated bundled version of six.Aymeric Augustin2013-03-171-25/+34
|
* Add a BinaryField model fieldClaude Paroz2013-03-021-0/+4
| | | | | Thanks Michael Jung, Charl Botha and Florian Apolloner for review and help on the patch.
* Fixed #19589 -- assertRegexpMatches is deprecated in ↵Aymeric Augustin2013-01-261-0/+6
| | | | Python 3.3.
* Updated our six module to follow upstream changes.Florian Apolloner2013-01-011-2/+24
| | | | | | This includes fixes for the java/jython detection and a new license header. Thanks to Thomas Bartelmess for the report.
* [py3k] Silence many warnings while running the tests.Alex Gaynor2012-09-071-0/+7
|
* [py3] Updated bundled version of sixAymeric Augustin2012-08-281-19/+31
|
* [py3] Added compatibility import of thread/_threadAymeric Augustin2012-08-181-0/+2
| | | | | | This commit fixes the auto-reload of the development server. I should have done that change in ca07fda2.
* [py3] Replaced raw_input by inputClaude Paroz2012-08-081-0/+1
| | | | | The six addition has been borrowed from: https://bitbucket.org/gutworth/six/changeset/733ef740
* [py3] Updated dict-like data structures for Python 3.Aymeric Augustin2012-07-251-0/+9
| | | | | | 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.
* [py3] Switched to Python 3-compatible imports.Aymeric Augustin2012-07-221-0/+5
| | | | | xrange/range will be dealt with in a separate commit due to the huge number of changes.
* [py3] Fixed django.utils.six.moves.Aymeric Augustin2012-07-221-1/+1
| | | | It didn't work because six was inside django.utils.
* [py3] Bundled six for Python 3 compatibility.Aymeric Augustin2012-07-221-0/+353
Refs #18363.