Дилян Палаузов
|
d2afa5eb23
|
Fixed #28860 -- Removed unnecessary len() calls.
|
2017-12-04 10:35:23 -05:00 |
Jozef
|
3d94ee8500
|
Simplified django.utils.cache.get_max_age().
|
2017-12-04 08:57:55 -05:00 |
Nicolas Delaby
|
746caf3ef8
|
Fixed #28837 -- Fixed test client crash if an exception with more than one arg is raised.
Also removed usage of the problematic pattern elsewhere.
Regression in 6e55e1d88a .
|
2017-11-28 18:55:23 -05:00 |
Chris Lamb
|
3af305e8b8
|
Fixed #28810 -- Replaced '%' style logging formatting with str.format() style.
|
2017-11-18 19:15:08 -05:00 |
Chris Lamb
|
648957b707
|
Fixed #28798 -- Removed unused django.utils.dates.WEEKDAYS_REV, MONTHS_3_REV.
|
2017-11-17 15:37:58 -05:00 |
Дилян Палаузов
|
c69e4bc691
|
Fixed #28769 -- Replaced 'x if x else y' with 'x or y'.
|
2017-11-07 09:08:46 -05:00 |
Yusuke Miyazaki
|
278d66b94b
|
Fixed #28501 -- Fixed "python -m django runserver" crash.
|
2017-11-06 09:58:15 -05:00 |
Ville Skyttä
|
23e551ce6c
|
Refs #23919 -- Updated references to urllib.quote() to Python 3 location.
|
2017-10-31 12:05:54 -04:00 |
medmunds
|
d1317edad0
|
Fixed #28739 -- Fixed get_fixed_timezone() for negative timedeltas.
|
2017-10-24 21:27:53 -04:00 |
Claude Paroz
|
68407e3545
|
Refs #14807 -- Removed unneeded mark_safe call
|
2017-10-22 12:10:27 +02:00 |
Mads Jensen
|
45d5d2dcaa
|
Removed unnecessary tuple()/list() calls.
|
2017-10-21 09:42:25 -04:00 |
Tim Graham
|
f2868f9739
|
Updated email.Util (Python 2) references to email.utils (Python 3).
|
2017-10-13 15:36:09 -04:00 |
Tim Graham
|
941b0a5b33
|
Fixed #28708 -- Added constants to detect the Python version.
|
2017-10-13 10:11:15 -04:00 |
Tom
|
abb636c1af
|
Improved performance of utils.html.escape().
|
2017-10-13 09:20:13 -04:00 |
François Freitag
|
41be85862d
|
Fixed #28679 -- Fixed urlencode()'s handling of bytes.
Regression in fee42fd99e .
Thanks Claude Paroz, Jon Dufresne, and Tim Graham for the guidance.
|
2017-10-12 09:08:33 -04:00 |
Tom
|
f1c007bbf2
|
Fixed #28642 -- Added caching to parse_accept_lang_header().
|
2017-10-02 14:07:28 -04:00 |
Mariusz Felisiak
|
3fa0a824c2
|
Refs #27067 -- Removed string_concat in django.utils.translation.__all__.
Undefined since 87d2240e6c .
|
2017-09-29 10:32:32 -04:00 |
Mariusz Felisiak
|
fc6528b25a
|
Fixed #28629 -- Made tree.Node instances hashable.
Regression in 508b5debfb which
added Node.__eq__().
|
2017-09-28 12:07:19 -04:00 |
Mads Jensen
|
4508fafe16
|
Simplified various __eq__() methods.
|
2017-09-28 09:18:37 -04:00 |
Tim Graham
|
cfff2af02b
|
Fixed #27857 -- Dropped support for Python 3.4.
|
2017-09-25 17:11:03 -04:00 |
Tim Graham
|
4a461d49c7
|
Advanced deprecation warnings for Django 2.1.
|
2017-09-22 12:51:19 -04:00 |
Tim Graham
|
ba42456c2e
|
Refs #27648 -- Removed support for (iLmsu) regex groups in url() patterns.
Per deprecation timeline.
|
2017-09-22 12:51:18 -04:00 |
Tim Graham
|
48d57788ee
|
Refs #26447 -- Removed the USE_ETAGS setting per deprecation timeline.
|
2017-09-22 12:51:18 -04:00 |
Tim Graham
|
96107e2844
|
Refs #26956 -- Removed the host parameter of django.utils.http.is_safe_url().
Per deprecation timeline.
|
2017-09-22 12:51:18 -04:00 |
Tim Graham
|
87d2240e6c
|
Refs #27067 -- Removed django.utils.translation.string_concat() per deprecation timeline.
|
2017-09-22 12:51:17 -04:00 |
Mariusz Felisiak
|
0ec0e5029c
|
Removed unnecessary parens in various code.
|
2017-09-13 21:20:29 -04:00 |
Tim Graham
|
0c4ac12a7b
|
Fixed #28546 -- Fixed translation's to_locale() with langauge subtags.
Thanks Brent Hand for the initial patch.
|
2017-09-08 13:46:00 -04:00 |
Tim Graham
|
22a5b8891c
|
Removed to_lower parameter for translation's to_locale().
Unused since 2bab9d6d9e .
|
2017-09-08 13:12:43 -04:00 |
Tim Graham
|
6e4c6281db
|
Reverted "Fixed #27818 -- Replaced try/except/pass with contextlib.suppress()."
This reverts commit 550cb3a365
because try/except performs better.
|
2017-09-07 08:16:21 -04:00 |
Sergey Fedoseev
|
fac74b84a3
|
Used OrderedDict.fromkeys() to initialize OrderedDict with None values.
|
2017-08-23 11:40:17 -04:00 |
Sergey Fedoseev
|
59a4b12a23
|
Refs #23919 -- Removed LazyObject.__getstate__() needed only on Python 2.
|
2017-07-12 13:14:49 +05:00 |
Matthew Schinckel
|
493f7e9e1e
|
Fixed #28076 -- Added support for PostgreSQL's interval format to parse_duration().
|
2017-07-03 19:53:19 -04:00 |
Mads Jensen
|
550cb3a365
|
Fixed #27818 -- Replaced try/except/pass with contextlib.suppress().
|
2017-06-28 14:07:55 -04:00 |
Tim Graham
|
bdf20c383f
|
Fixed #28323 -- Removed unneeded normalize() in timezone.localtime() and make_naive().
|
2017-06-20 07:12:41 -04:00 |
Georg Sauthoff
|
d0f59054d0
|
Fixed #28324 -- Made feedgenerators write feeds with deterministically ordered attributes.
|
2017-06-20 05:38:41 -04:00 |
Claude Paroz
|
ceca221b31
|
Fixed #28304 -- Kept SafeData type for pgettext-translated strings
|
2017-06-15 21:00:50 +02:00 |
chillaranand
|
08bda82c23
|
Fixed #27830 -- Used distutils.version.LooseVersion for version parsing.
|
2017-06-13 10:53:39 -04:00 |
Thomas Khyn
|
f6bd00131e
|
Fixed #28241 -- Allowed module_has_submodule()'s module_name arg to be a dotted path.
|
2017-06-08 14:34:20 -04:00 |
Jon Dufresne
|
2c69824e5a
|
Refs #23968 -- Removed unnecessary lists, generators, and tuple calls.
|
2017-06-01 19:08:59 -04:00 |
Jon Dufresne
|
21046e7773
|
Fixed #28249 -- Removed unnecessary dict.keys() calls.
iter(dict) is equivalent to iter(dict.keys()).
|
2017-05-27 19:08:46 -04:00 |
Simon Charette
|
f0d47ab3b6
|
Corrected cached_property.__get__() docstring.
|
2017-05-15 09:25:14 -04:00 |
Adam Alton
|
f9bae845ea
|
Added a docstring to cached_property.__get__().
|
2017-05-15 09:05:42 -04:00 |
UmanShahzad
|
856072dd4a
|
Fixed #28142 -- Fixed is_safe_url() crash on invalid IPv6 URLs.
|
2017-05-10 09:02:20 -04:00 |
Alexander Allakhverdiyev
|
620e9dd31a
|
Replaced django.utils.inspect.getargspec() with inspect.getfullargspec().
|
2017-04-27 20:42:49 -04:00 |
Claude Paroz
|
a8343fe7bf
|
Refs #27795 -- Replaced force_text() with str() in feed generators
|
2017-04-27 09:31:08 +02:00 |
Claude Paroz
|
301de774c2
|
Refs #27795 -- Replaced many force_text() with str()
Thanks Tim Graham for the review.
|
2017-04-27 09:10:02 +02:00 |
petedmarsh
|
14671affc3
|
Fixed #28064 -- Removed double-quoting of key names in MultiValueDictKeyError.
|
2017-04-11 12:44:52 -04:00 |
Jon Dufresne
|
b906c3db63
|
Removed duplicate lines in slugify().
|
2017-04-10 08:12:37 -04:00 |
Daniel F Moisset
|
5d3b322dce
|
Made MultiValueDict.__deepcopy__()'s memo kwarg an arg.
It's always provided.
|
2017-04-07 09:13:57 -04:00 |
Raphael Michel
|
bde814142a
|
Fixed #22654 -- Broken decimal validation
|
2017-04-07 12:45:08 +02:00 |