summaryrefslogtreecommitdiff
path: root/django/core
AgeCommit message (Expand)Author
2017-01-26Refs #23919, #27778 -- Removed obsolete mentions of unicode.Vytis Banaitis
2017-01-25Refs #23919 -- Removed misc Python 2/3 references.Tim Graham
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand
2017-01-25Refs #23919 -- Replaced errno checking with PEP 3151 exceptions.Tim Graham
2017-01-25Removed unused variables that are overwritten.Mads Jensen
2017-01-22Refs #23919 -- Replaced six.reraise by raiseClaude Paroz
2017-01-21Refs #23919 -- Removed misc references to Python 2.Tim Graham
2017-01-21Refs #23919 -- Removed re.U and re.UNICODE (default on Python 3).Mariusz Felisiak
2017-01-21Refs #23919 -- Removed django.utils.decorators.available_attrs() usage.Tim Graham
2017-01-20Refs #23919 -- Removed unneeded str() callsClaude Paroz
2017-01-20Refs #23919 -- Removed django.utils._os.upath()/npath()/abspathu() usage.Tim Graham
2017-01-20Removed u'' prefx in django/core/signing.py comment.Srinivas Reddy Thatiparthy
2017-01-20Refs #23919 -- Removed unneeded force_str callsClaude Paroz
2017-01-19Fixed #23905, refs #23919 -- Used make_msgid() from stdlib.Tim Graham
2017-01-19Refs #23919 -- Removed str() conversion of type and method __name__.Simon Charette
2017-01-19Refs #23919 -- Removed __nonzero__() methods (for Python 2).Simon Charette
2017-01-19Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette
2017-01-18Refs #23919 -- Replaced io.open() with open().Aymeric Augustin
2017-01-18Refs #23919 -- Removed obsolete __ne__() methods.Aymeric Augustin
2017-01-18Refs #23919 -- Stopped using django.utils.lru_cache().Aymeric Augustin
2017-01-18Refs #23919 -- Removed most of remaining six usageClaude Paroz
2017-01-18Refs #23919 -- Removed six.<various>_types usageClaude Paroz
2017-01-18Refs #23919 -- Removed six.PY2/PY3 usageClaude Paroz
2017-01-18Refs #23919 -- Removed python_2_unicode_compatible decorator usageClaude Paroz
2017-01-18Refs #23919 -- Removed encoding preambles and future importsClaude Paroz
2017-01-17Refs #26601 -- Removed obsolete system check for MIDDLEWARE_CLASSES setting.Tim Graham
2017-01-17Refs #25079 -- Removed obsolete system check for TEMPLATE_* settings.Tim Graham
2017-01-17Refs #26601 -- Removed support for old-style middleware using settings.MIDDLE...Tim Graham
2017-01-17Refs #23832 -- Removed deprecated non-timezone aware Storage API.Tim Graham
2017-01-17Refs #26013 -- Removed deprecated django.core.urlresolvers module.Tim Graham
2017-01-17Refs #25838 -- Removed the deprecated shell --plain option.Tim Graham
2017-01-17Refs #25604 -- Removed makemigrations --exit option per deprecation timeline.Tim Graham
2017-01-17Refs #24733 -- Removed support for error views without the exception parameter.Tim Graham
2017-01-17Fixed #27666 -- Delayed rendering of recursivly related models in migration o...Markus Holtermann
2017-01-12Fixed #27721 -- Added interface name to shell's IPython/bython import error.Peter Inglesby
2017-01-09Fixed #27707 -- Removed shell support for IPython < 1.0.Tim Graham
2017-01-09Fixed #27705 -- Added protocol/server_cls attributes to runserver for extensi...David Sanders
2017-01-06Fixed #27432 -- Made app_label arguments limit showmigrations --plan output.Sebastian Spiegel
2017-01-06Fixed #27696 -- Measured email long lines on encoded contentClaude Paroz
2017-01-02Fixed #27522 -- Fixed runserver autoreload when using staticfile's options.Jeroen van Veen
2016-12-29Fixed #25415 -- Made DiscoverRunner run system checks.Adam Chainz
2016-12-28Fixed #27631 -- Prevented execution of transactional DDL statements when unsu...Simon Charette
2016-12-23Fixed #27626 -- Moved MEDIA_URL/STATIC_URL validation to a system check.Adam Chainz
2016-12-23Refs #26487 -- Removed unneeded ehlo() calls in SMTP backend.Tim Graham
2016-12-21Fixed #27600 -- Suppressed the REPL during shell's reading from stdin.jpic
2016-12-21Fixed #27612 -- Added a check for duplicate URL instance namespaces.Andrew Nester
2016-12-19Fixed #27611 -- Doc'd that CSRF_COOKIE_HTTPONLY setting offers no security.Tim Graham
2016-12-17Refs #16859 -- Disabled CSRF_COOKIE_* checks when using CSRF_USE_SESSIONS.Raphael Michel
2016-12-12Fixed #27588 -- Removed unneeded colon in makemigrations output.Tim Graham
2016-12-01Refs #27505 -- Made Paginator's exception messsages translatable.Anton Bazhanov