Claude Paroz
|
068cd60366
|
Removed unneeded parentheses in class definitions
|
2017-01-29 18:06:26 +01:00 |
Subhrajyoti Sen
|
f5bf11c72b
|
Fixed #26708 -- Updated the contributing tutorial to use a GitHub workflow.
|
2017-01-28 11:45:04 -05:00 |
Tim Graham
|
7d50d2bcb8
|
Refs #27790 -- Reverted "Removed available_apps on TestCase subclasses."
This reverts commit 91023d79ec as it
increases memory usage for the test suite.
|
2017-01-28 10:01:13 -05:00 |
Thom Wiggers
|
d5b573d872
|
Fixed #26993 -- Increased User.last_name max_length to 150 characters.
|
2017-01-28 09:29:00 -05:00 |
Tim Graham
|
0de0699d94
|
Fixed #27788 -- Dropped support for Oracle < 12.1.
|
2017-01-28 08:19:47 -05:00 |
Srinivas Reddy Thatiparthy
|
a6755b29e9
|
Removed obsolete sentence in ManagementUtility docstring.
|
2017-01-28 08:09:42 -05:00 |
Claude Paroz
|
e34f4e6f87
|
Made ugettext* functions aliases of gettext*
Thanks Tim Graham for the review.
|
2017-01-28 12:01:30 +01:00 |
Tim Graham
|
9e9e73735e
|
Refs #23919 -- Removed an obsolete test for a Python 2 code path (refs #15662).
Fixed #21628 by removing the last usage of the imp module.
|
2017-01-27 17:39:49 -05:00 |
Dmitry Gladkov
|
b09faa497e
|
Fixed #27748 -- Switched HTTP error handlers to reference callables instead of strings.
|
2017-01-27 16:13:40 -05:00 |
Andrew Nester
|
c8d21f3351
|
Fixed #27769 -- Documented option naming differences between django-admin and call_command().
|
2017-01-27 16:12:45 -05:00 |
Anton Samarchyan
|
56ea394dfd
|
Improved test coverage for conf.urls.static.
|
2017-01-27 16:12:09 -05:00 |
Ed Morley
|
751d77cdd9
|
Refs #27537 -- Added default_addr(_ipv6) attributes to runserver command.
|
2017-01-27 13:30:27 -05:00 |
Anton Samarchyan
|
0cbfc844a3
|
Improved test coverage and error messages for conf.urls.__init__.
|
2017-01-27 13:16:55 -05:00 |
Tim Graham
|
e07e743e0c
|
Refs #23919 -- Used DeclarativeFieldsMetaclass.__prepare__() for tracking form field order.
|
2017-01-27 12:46:21 -05:00 |
andrewnester
|
d2e40dd8c2
|
Fixed #27678 -- Warned that the template system isn't safe against untrusted authors.
|
2017-01-27 10:36:19 -05:00 |
Anton Samarchyan
|
110f4bb6a2
|
Tested AppConfig.__repr__().
|
2017-01-27 09:55:08 -05:00 |
chillaranand
|
d9aeee205d
|
Fixed #27501 -- Documented lazy evaluation of ModelChoiceField.queryset.
|
2017-01-26 18:54:55 -05:00 |
Anton Samarchyan
|
8ae90c58ac
|
Slightly simplified django.conf.urls.static.static().
|
2017-01-26 18:45:07 -05:00 |
Mariusz Felisiak
|
c37ec5a659
|
Fixed #27781 -- Made simplify_regex() remove outstanding '?' characters.
Regression in f0ef0c49e9 .
|
2017-01-26 18:36:34 -05:00 |
Chillar Anand
|
6478e07a62
|
Refs #23919 -- Replaced tempfile.mkdtemp() with TemporaryDirectory() context manager.
|
2017-01-26 13:54:16 -05:00 |
Claude Paroz
|
fee42fd99e
|
Refs #23919 -- Replaced usage of django.utils.http utilities with Python equivalents
Thanks Tim Graham for the review.
|
2017-01-26 19:49:03 +01:00 |
Tim Graham
|
af598187ec
|
Removed unnecessary force_text() in BaseTemporalField.to_python().
This seems unneeded since its introduction in
da3aa22d04 .
|
2017-01-26 13:35:39 -05:00 |
Vytis Banaitis
|
d1bab24e01
|
Refs #23919, #27778 -- Removed obsolete mentions of unicode.
|
2017-01-26 08:19:27 -05:00 |
Tim Graham
|
888c1e9bfe
|
Fixed #27776 -- Merged tests/requirements/base.txt into py3.txt.
|
2017-01-25 16:26:59 -05:00 |
Tim Graham
|
1c466994d9
|
Refs #23919 -- Removed misc Python 2/3 references.
|
2017-01-25 13:59:25 -05:00 |
Tim Graham
|
11856ea44e
|
Refs #27741 -- Fixed staticfiles_tests.test_views when run in isolation.
|
2017-01-25 13:53:38 -05:00 |
Ed Morley
|
bfd42392ab
|
Simplified tests with assertDoesNotOptimize().
|
2017-01-25 13:52:44 -05:00 |
Tim Graham
|
90db4bb0d7
|
Corrected http.multipartparser.exhaust() docstring.
MultiPartParserError was removed in
ebf34c3cdc .
|
2017-01-25 13:00:00 -05:00 |
chillaranand
|
d6eaf7c018
|
Refs #23919 -- Replaced super(ClassName, self) with super().
|
2017-01-25 12:23:46 -05:00 |
chillaranand
|
dc165ec8e5
|
Refs #23919 -- Replaced super(ClassName, self) with super() in docs.
|
2017-01-25 11:53:05 -05:00 |
Tim Graham
|
2d96c027f5
|
Refs #23919 -- Removed obsolete MySQLdb references.
|
2017-01-25 10:16:10 -05:00 |
Tim Graham
|
632c4ffd9c
|
Refs #23919 -- Replaced errno checking with PEP 3151 exceptions.
|
2017-01-25 10:13:08 -05:00 |
Tim Graham
|
3f0c4fe18f
|
Refs #25175 -- Deprecated db.backends.postgresql_psycopg2 module.
|
2017-01-25 09:23:04 -05:00 |
Mads Jensen
|
ebf34c3cdc
|
Removed unused variables that are overwritten.
|
2017-01-25 09:14:05 -05:00 |
Paolo Melchiorre
|
5890d6ab03
|
Fixed typo in docs/ref/models/expressions.txt.
|
2017-01-25 07:46:18 -05:00 |
Claude Paroz
|
2366100872
|
Removed unneeded force_text calls in the test suite
|
2017-01-24 18:45:54 +01:00 |
Tim Graham
|
5b95d421f7
|
Refs #23919 -- Removed a MySQLdb workaround (refs #6052) for Python 2.
|
2017-01-24 08:35:06 -05:00 |
Tim Graham
|
a87d6b69a7
|
Tidied djang.db.utils.load_backend().
Removed an unneeded EnvironmentError catching and used
"raise from exc" syntax.
|
2017-01-24 08:33:26 -05:00 |
Tim Graham
|
435e4bf38e
|
Refs #23919 -- Removed __traceback__ setting needed for Python 2.
Partially reverted refs #25761 and refs #16245.
|
2017-01-24 08:31:58 -05:00 |
Nick Mavrakis
|
e5c2e43cc8
|
Fixed #27743 -- Prevented admin's "+" button icon from overlapping its label.
|
2017-01-23 19:24:47 -05:00 |
Jon Dufresne
|
0d74c41981
|
Replaced dict() usage with dict literals.
Literals are faster and more idiomatic.
|
2017-01-23 19:13:49 -05:00 |
Claude Paroz
|
d2e7d15b4c
|
Assumed iri_to_uri always returns a string
Thanks Tim Graham for the review.
|
2017-01-23 19:59:33 +01:00 |
Jon Dufresne
|
f0573aad4b
|
Replaced "not var is ..." with "is not" in attrs.html.
|
2017-01-23 13:14:00 -05:00 |
Tim Graham
|
248d54569e
|
Removed MySQL decimal casting.
Added in Django 1.0: 92c35a0617
Unknown when it became obsolete.
|
2017-01-23 10:44:02 -05:00 |
Jon Dufresne
|
5fa390ee81
|
Fixed #27759 -- Prevented forms attrs.html template from rendering False attrs.
Regression in b52c73008a .
|
2017-01-23 08:49:00 -05:00 |
Jon Dufresne
|
88183117c2
|
Fixed #27761 -- Fixed quote location in multiple_input.html forms templates.
|
2017-01-23 07:44:57 -05:00 |
Jon Dufresne
|
ecd5944666
|
Removed ChoiceWidget.render() as it duplicates parent implementation.
|
2017-01-23 07:33:27 -05:00 |
Claude Paroz
|
8377a98ca5
|
Removed obsolete force_text_recursive
|
2017-01-22 21:13:00 +01:00 |
Claude Paroz
|
6e55e1d88a
|
Refs #23919 -- Replaced six.reraise by raise
|
2017-01-22 20:08:04 +01:00 |
Tim Graham
|
d170c63351
|
Refs #23919 -- Removed misc references to Python 2.
|
2017-01-21 20:02:00 -05:00 |