Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/django/utils/encoding.py
Commit message (Expand)AuthorAgeFilesLines
* Fixed #25668 -- Misc spelling errorsVille Skyttä2015-11-031-1/+1
* Fixed #24927 -- Used python_2_unicode_compatible from sixMatthew Somerville2015-06-051-16/+2
* Fixed #24836 -- Made force_text() resolve lazy objects.Tim Graham2015-05-271-2/+2
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-2/+3
* Fixed #23968 -- Replaced list comprehension with generato...Jon Dufresne2014-12-081-4/+4
* Fixed #18456 -- Added path escaping to HttpRequest.get_fu...Unai Zalakain2014-11-031-0/+17
* Fixed #19508 -- Implemented uri_to_iri as per RFC.Anubhav Joshi2014-10-151-2/+39
* Optimize is_protected_type slightly (used by force_text, ...Alex Gaynor2014-06-081-2/+5
* Correct flake8 E302 violationsRay Ashman Jr2013-11-031-0/+7
* More attacking E302 violatorsAlex Gaynor2013-11-021-0/+2
* Fixed #21198 -- Prevented invalid use of @python_2_unicod...Aymeric Augustin2013-10-131-0/+4
* Removed a few trailing backslashes.Aymeric Augustin2013-09-221-2/+2
* Fixed #20812 -- Error out if __unicode__/__str__ doesn't ...Florian Apolloner2013-09-061-9/+8
* Fixed #21052 -- Small performance optimization.Aymeric Augustin2013-09-061-4/+4
* Fixed #18719 -- Made force_bytes more consistent with for...Aymeric Augustin2013-09-061-1/+1
* Took advantage of django.utils.six.moves.urllib.*.Aymeric Augustin2013-09-051-4/+1
* Replaced "not PY3" by "PY2", new in six 1.4.0.Aymeric Augustin2013-09-021-1/+1
* Removed django.utils.encoding.StrAndUnicode class, deprec...Ramiro Morales2013-06-291-24/+0
* Fixed #20108 -- Fixed filepath_to_uri decoding errorClaude Paroz2013-03-221-1/+1
* Fixed getting default encoding in get_system_usernameClaude Paroz2013-03-021-8/+14
* Added support for serializing BinaryFieldClaude Paroz2013-03-021-0/+2
* Advanced pending deprecation warnings.Aymeric Augustin2012-12-291-1/+1
* Fixed #18718 - Documented django.utils.encoding.filepath_...Tim Graham2012-12-161-1/+1
* Remove a case that is no longer reachable in encodings.py.Alex Gaynor2012-10-251-18/+6
* Fixed #18902 -- Made force_bytes properly handle exceptio...Claude Paroz2012-09-041-1/+1
* Replaced many smart_bytes by force_bytesClaude Paroz2012-08-291-3/+3
* Introduced force_bytes and force_str.Aymeric Augustin2012-08-181-0/+19
* [py3] Ported django.utils.safestring.Aymeric Augustin2012-08-181-2/+2
* [py3] Fixed staticfiles testsClaude Paroz2012-08-141-1/+1
* [py3] Deprecated StrAndUnicode.Aymeric Augustin2012-08-121-0/+7
* [py3] Added python_2_unicode_compatible decorator.Aymeric Augustin2012-08-121-0/+13
* [py3] Ported django.utils.encoding.Aymeric Augustin2012-08-071-24/+42
* Remove double isinstance check in force_unicodeJeroen Dekkers2012-07-241-1/+1
* [py3] Updated urllib/urllib2/urlparse imports.Aymeric Augustin2012-07-221-5/+8
* [py3] Replaced unicode/str by six.text_type/bytes.Aymeric Augustin2012-07-221-12/+25
* [py3] Replaced basestring by six.string_types.Aymeric Augustin2012-07-221-2/+2
* [py3] Removed longs.Aymeric Augustin2012-07-221-6/+3
* Fixed #18269 -- Applied unicode_literals for Python 3 com...Claude Paroz2012-06-071-2/+4
* Replaced types.NoneType occurrencesClaude Paroz2012-05-231-3/+2
* Marked bytestrings with b prefix. Refs #18269Claude Paroz2012-05-191-2/+2
* Fixed #18013 -- Use the new 'as' syntax for exceptions.Claude Paroz2012-04-291-1/+1
* Change some string literals to be unicode, because:Alex Gaynor2011-10-111-2/+2
* Fixed #15181 -- Ensure that special characters are escape...Russell Keith-Magee2011-02-041-0/+18
* Fixed #14290 -- Made format localization faster by cachin...Jannis Leidel2010-09-271-0/+5
* Fixed #12164 -- Removed the Python 2.3 compatibility impo...Russell Keith-Magee2010-05-041-6/+1
* Fixed #12302: Modified force_unicode to avoid raising uni...Karen Tracey2010-02-281-1/+10
* Fixed #12445 -- Added ' (single quote), @ (at sign), and ...Gary Wilson Jr2010-01-031-4/+13
* Fixed #10335: handle system locals unknown to Python in t...Jacob Kaplan-Moss2009-05-081-0/+11
* Fixed #9522 -- Modified handling of values in base serial...Russell Keith-Magee2009-04-131-1/+14
* Fixed #5903 -- DecimalField.get_default() now correctly r...Brian Rosner2009-02-111-1/+8