index
:
chango.git
devmain
fix-31295
initial-branch
main
stable/5.2.x
stable/6.0.x
django
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
django
/
test
/
html.py
Age
Commit message (
Expand
)
Author
2017-03-04
Refs #27656 -- Updated remaining docstring verbs according to PEP 257.
Anton Samarchyan
2017-01-25
Refs #23919 -- Replaced super(ClassName, self) with super().
chillaranand
2017-01-19
Refs #23919 -- Stopped inheriting from object to define new style classes.
Simon Charette
2017-01-18
Refs #23919 -- Removed obsolete __ne__() methods.
Aymeric Augustin
2017-01-18
Refs #23919 -- Removed six.<various>_types usage
Claude Paroz
2017-01-18
Refs #23919 -- Removed python_2_unicode_compatible decorator usage
Claude Paroz
2017-01-18
Refs #23919 -- Removed encoding preambles and future imports
Claude Paroz
2016-09-17
Refs #27025 -- Fixed "invalid escape sequence" warnings in Python 3.6.
Tim Graham
2016-08-31
Fixed #24112 -- Fixed assertInHTML()'s counting if needle has no root element.
Adam Zapletal
2016-04-08
Fixed E128 flake8 warnings in django/.
Tim Graham
2015-08-31
Fixed #25331 -- Removed trailing blank lines in docstrings.
Maxime Lorant
2015-02-06
Sorted imports with isort; refs #23860.
Tim Graham
2013-10-26
Fixed all the E203 violations
Alex Gaynor
2013-10-18
Fixed #21287 -- Fixed E123 pep8 warnings
Alasdair Nicol
2013-03-28
Fixed spelling errors
Gavin Wahl
2013-02-25
Fixed #19634 -- Added proper __hash__ methods.
Aymeric Augustin
2012-12-24
Fixed HTML comparisons of class="foo bar" and class="bar foo" in tests
Luke Plant
2012-08-12
[py3] Refactored __unicode__ to __str__.
Aymeric Augustin
2012-08-08
[py3] Made Element instances hashable
Claude Paroz
2012-08-07
[py3] Ported django.utils.encoding.
Aymeric Augustin
2012-07-22
[py3] Switched to Python 3-compatible imports.
Aymeric Augustin
2012-07-22
[py3] Replaced unicode/str by six.text_type/bytes.
Aymeric Augustin
2012-07-22
[py3] Replaced basestring by six.string_types.
Aymeric Augustin
2012-06-07
Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.
Claude Paroz
2012-03-01
Fixed #17730 - Renamed django.utils.htmlparser to django.utils.html_parser to...
Carl Meyer
2012-01-31
Fixed #16921 -- Added assertHTMLEqual and assertHTMLNotEqual assertions, and ...
Carl Meyer