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 |
Jon Dufresne
|
0d74c41981
|
Replaced dict() usage with dict literals.
Literals are faster and more idiomatic.
|
2017-01-23 19:13:49 -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 |
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 |
Mariusz Felisiak
|
c22212220a
|
Refs #23919 -- Removed re.U and re.UNICODE (default on Python 3).
|
2017-01-21 14:28:16 -05:00 |
Tim Graham
|
8249c5b382
|
Added a missing floatformat test and simplified another.
|
2017-01-21 13:06:52 -05:00 |
Claude Paroz
|
289fc1bfa5
|
Refs #23919 -- Removed str_prefix usage
|
2017-01-20 15:43:28 +01:00 |
Tim Graham
|
7aba69145d
|
Refs #23919 -- Removed django.test.mock Python 2 compatibility shim.
|
2017-01-20 08:17:20 -05:00 |
Claude Paroz
|
042b7350a0
|
Refs #23919 -- Removed unneeded str() calls
|
2017-01-20 14:13:55 +01:00 |
Tim Graham
|
4e729feaa6
|
Refs #23919 -- Removed django.utils._os.upath()/npath()/abspathu() usage.
These functions do nothing on Python 3.
|
2017-01-20 08:01:02 -05:00 |
Tim Graham
|
109b33f64c
|
Refs #23919 -- Simplified assertRaisesRegex()'s that accounted for Python 2.
|
2017-01-20 08:49:47 +01:00 |
Claude Paroz
|
dc8834cad4
|
Refs #23919 -- Removed unneeded force_str calls
|
2017-01-20 08:44:31 +01:00 |
Srinivas Reddy Thatiparthy
|
eb0b921c29
|
Refs #23919 -- Removed SessionBase.iterkeys(), itervalues(), iteritems().
These methods only work on Python 2.
|
2017-01-19 14:15:00 -05:00 |
Tim Graham
|
9ee47ce7b4
|
Refs #23919 -- Removed enum ImportError handling for Python 2.
|
2017-01-19 13:55:20 -05:00 |
Simon Charette
|
9695b14982
|
Refs #23919 -- Removed str() conversion of type and method __name__.
|
2017-01-19 11:31:07 -05:00 |
Simon Charette
|
4c5ed3e683
|
Refs #23919 -- Removed __nonzero__() methods (for Python 2).
Thanks Tim for the review.
|
2017-01-19 11:26:26 -05:00 |
Tim Graham
|
e5c67f0991
|
Refs #23919 -- Removed reset_warning_registry() workaround for Python < 3.4.2.
|
2017-01-19 10:56:00 -05:00 |
Tim Graham
|
5320fa77c3
|
Refs #23919 -- Removed obsolete contextlib.closing() calls (for Python 2).
|
2017-01-19 08:50:28 -05:00 |
james mike dupont
|
7d20094996
|
Fixed spelling mistakes in code and comments.
|
2017-01-19 07:52:41 -05:00 |
Simon Charette
|
cecc079168
|
Refs #23919 -- Stopped inheriting from object to define new style classes.
|
2017-01-19 08:39:46 +01:00 |
Aymeric Augustin
|
a556396339
|
Refs #23919 -- Replaced io.open() with open().
io.open() is an alias for open() on Python 3.
|
2017-01-18 21:45:12 -05:00 |
Claude Paroz
|
2b281cc35e
|
Refs #23919 -- Removed most of remaining six usage
Thanks Tim Graham for the review.
|
2017-01-18 21:33:28 +01:00 |
Claude Paroz
|
7b2f2e74ad
|
Refs #23919 -- Removed six.<various>_types usage
Thanks Tim Graham and Simon Charette for the reviews.
|
2017-01-18 20:18:46 +01:00 |
Claude Paroz
|
c716fe8782
|
Refs #23919 -- Removed six.PY2/PY3 usage
Thanks Tim Graham for the review.
|
2017-01-18 16:21:28 +01:00 |
Claude Paroz
|
f3c43ad1fd
|
Refs #23919 -- Removed python_2_unicode_compatible decorator usage
|
2017-01-18 13:44:34 +01:00 |
Claude Paroz
|
d7b9aaa366
|
Refs #23919 -- Removed encoding preambles and future imports
|
2017-01-18 09:55:19 +01:00 |
Tim Graham
|
6192bffb13
|
Refs #26601 -- Removed obsolete system check for MIDDLEWARE_CLASSES setting.
|
2017-01-17 20:52:05 -05:00 |
Tim Graham
|
98760ab0b2
|
Refs #25079 -- Removed obsolete system check for TEMPLATE_* settings.
|
2017-01-17 20:52:05 -05:00 |
Tim Graham
|
0bf3228eec
|
Increased the default PBKDF2 iterations for the 1.11 release cycle.
|
2017-01-17 20:52:05 -05:00 |
Tim Graham
|
f847308200
|
Advanced deprecation warnings for Django 2.0.
|
2017-01-17 20:52:05 -05:00 |
Tim Graham
|
d334f46b7a
|
Refs #26601 -- Removed support for old-style middleware using settings.MIDDLEWARE_CLASSES.
|
2017-01-17 20:52:04 -05:00 |
Tim Graham
|
631f4ab061
|
Removed Manager.use_for_related_fields and Meta.manager_inheritance_from_future.
Per deprecation timeline. Refs ed0ff913c6 .
|
2017-01-17 20:52:04 -05:00 |
Tim Graham
|
60ca37d2e5
|
Refs #24046 -- Removed mark_for_escaping() per deprecation timeline.
|
2017-01-17 20:52:04 -05:00 |
Tim Graham
|
0dfc5479a8
|
Refs #26058 -- Removed deprecated FileField.get_directory_name()/get_filename().
|
2017-01-17 20:52:04 -05:00 |
Tim Graham
|
9d0e8c1e7f
|
Refs #26320 -- Removed implicit OneToOnField parent_link per deprecation timeline.
|
2017-01-17 20:52:04 -05:00 |
Tim Graham
|
1691782652
|
Refs #26509 -- Removed contrib.gis.utils.precision_wkt() per deprecation timeline.
|
2017-01-17 20:52:04 -05:00 |
Tim Graham
|
2b20e4148f
|
Refs #19567 -- Removed deprecated javascript_catalog() and json_catalog() views.
|
2017-01-17 20:52:03 -05:00 |
Tim Graham
|
eba093e8b0
|
Refs #25847 -- Removed support for User.is_(anonymous|authenticated) as methods.
Per deprecation timeline.
|
2017-01-17 20:52:03 -05:00 |
Tim Graham
|
b70094f040
|
Refs #26226 -- Removed support for related manager classes without a _apply_rel_filters() method.
Per deprecation timeline.
|
2017-01-17 20:52:03 -05:00 |
Tim Graham
|
5139832398
|
Refs #26285 -- Removed MySQL __search lookup per deprecation timeline.
|
2017-01-17 20:52:03 -05:00 |
Tim Graham
|
bfe0d54514
|
Refs #26230 -- Removed support for model name query lookups when using Meta.default_related_name.
Per deprecation timeline.
|
2017-01-17 20:52:03 -05:00 |
Tim Graham
|
2d7fb77987
|
Refs #23832 -- Removed deprecated non-timezone aware Storage API.
|
2017-01-17 20:52:03 -05:00 |
Tim Graham
|
740f63a3df
|
Refs #26263 -- Removed deprecated Context.has_key().
|
2017-01-17 20:52:03 -05:00 |
Tim Graham
|
bcf3532ede
|
Refs #26154 -- Removed deprecated CommaSeparatedIntegerField.
|
2017-01-17 20:52:02 -05:00 |
Tim Graham
|
9d304b26cf
|
Refs #20223 -- Removed deprecated django.utils.functional.allow_lazy().
|
2017-01-17 20:52:02 -05:00 |
Tim Graham
|
7e63e84572
|
Refs #25773 -- Removed deprecated geos.MultiPolygon.cascaded_union property.
|
2017-01-17 20:52:02 -05:00 |
Tim Graham
|
997c9f7099
|
Refs #25665 -- Removed deprecated getter/setter of Point.tuple.
|
2017-01-17 20:52:02 -05:00 |
Tim Graham
|
19d8e64ac3
|
Refs #25665 -- Removed deprecated getters/setters of Point coordinate properties.
|
2017-01-17 20:52:02 -05:00 |