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 |
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
|
990ce6386c
|
Refs #5748 -- Removed obsolete Python/Windows workarounds in floatformat filter.
|
2017-01-21 13:53:35 -05:00 |
Tim Graham
|
9e6e32bf5d
|
Refs #23919 -- Removed django.utils.decorators.available_attrs() usage.
It's only needed to workaround a bug on Python 2.
|
2017-01-21 13:20:17 -05:00 |
Tim Graham
|
8249c5b382
|
Added a missing floatformat test and simplified another.
|
2017-01-21 13:06:52 -05:00 |
Arkadiusz Adamski
|
a76d12ceb4
|
Removed unused imports in example migrations.
|
2017-01-21 07:40:33 -05:00 |
Alasdair Nicol
|
503e944ac7
|
Refs #16859 -- Updated CSRF FAQ to mention CSRF_USE_SESSIONS setting.
|
2017-01-20 18:56:48 -05:00 |
Tim Graham
|
1b06d5e6f6
|
Refs #23919 -- Removed pysqlite support (it's Python 2 only).
|
2017-01-20 18:21:15 -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 |
Srinivas Reddy Thatiparthy
|
ec4c1d6717
|
Removed u'' prefx in django/core/signing.py comment.
|
2017-01-20 07:38:17 -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 |
Mariusz Felisiak
|
bf1c957027
|
Refs #23919 -- Removed Python 2 workaround for hashing Oracle params (refs #27632).
|
2017-01-19 22:20:14 -05:00 |
Tim Graham
|
fedda6d9bd
|
Refs #23919 -- Removed Python 2 version check in django.http.cookie.
|
2017-01-19 20:06:03 -05: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 |
Tim Graham
|
d29fd3f9a6
|
Fixed django/utils/http.py comment typo.
|
2017-01-19 13:21:54 -05:00 |
Tim Graham
|
9d27478958
|
Refs #23919 -- Removed docs references to long integers.
|
2017-01-19 13:19:26 -05:00 |
Tim Graham
|
9e917cc291
|
Fixed #23905, refs #23919 -- Used make_msgid() from stdlib.
|
2017-01-19 12:58:19 -05:00 |
Tim Graham
|
d4bb37593e
|
Refs #23919 -- Removed obsolete compare_digest() and pbkdf2() implementations.
|
2017-01-19 11:55:23 -05:00 |
Simon Charette
|
9695b14982
|
Refs #23919 -- Removed str() conversion of type and method __name__.
|
2017-01-19 11:31:07 -05:00 |
Chillar Anand
|
41e0033caf
|
Refs #23919 -- Removed usage of django.utils.decorators.ContextDecorator.
|
2017-01-19 11:28:30 -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 |
Claude Paroz
|
53f3d53ed4
|
Updated translation catalogs
Forward port of 518693bef5 from stable/1.11.x
|
2017-01-19 17:09:37 +01: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
|
56aee8d59f
|
Removed xmlrunner from flake8 exclude.
This is an obsolete thing that Jenkins builds needed.
|
2017-01-19 09:10:35 -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 |
Aymeric Augustin
|
eb422e476f
|
Refs #23919 -- Removed obsolete __ne__() methods.
__ne__() defaults to the opposite of __eq__() on Python 3
when it doesn't return NotImplemented.
|
2017-01-18 21:44:00 -05:00 |
Aymeric Augustin
|
3cc5f01d9b
|
Refs #23919 -- Stopped using django.utils.lru_cache().
|
2017-01-18 21:42:40 -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 |