Jon Dufresne
|
2c69824e5a
|
Refs #23968 -- Removed unnecessary lists, generators, and tuple calls.
|
2017-06-01 19:08:59 -04:00 |
Tim Graham
|
cde31daf88
|
Sorted imports per isort 4.2.9.
|
2017-06-01 13:23:48 -04:00 |
Derrick Jackson
|
789c290150
|
Fixed #28170 -- Fixed file_move_safe() crash when moving files to a CIFS mount.
|
2017-05-31 14:52:40 -04:00 |
Adam Johnson
|
c61d1361d0
|
DRY'd startapp and startproject management commands.
|
2017-05-30 10:30:32 -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 |
Tom
|
94475aab80
|
Replaced some map() and filter() calls with generators.
|
2017-05-27 13:58:56 -04:00 |
Chris Lamb
|
2f09a28558
|
Fixed #27881 -- Added diffsettings --output option.
Thanks Haris Ibrahim K. V. for writng docs.
|
2017-05-27 09:00:06 -04:00 |
Pavel Kulikov
|
af1fa5e7da
|
Fixed #27978 -- Allowed loaddata to read data from stdin.
Thanks Squareweave for the django-loaddata-stdin project from which this
is adapted.
|
2017-05-26 19:54:21 -04:00 |
Edward D'Souza
|
ed9bc4e576
|
Made RegexValidator's inverse_match logic clearer.
|
2017-05-25 14:09:47 -04:00 |
Ling-Xiao Yang
|
04ab96ec4f
|
Fixed #28015 -- Added makemessages --add-location option.
Thanks François Freitag for review.
|
2017-05-22 09:03:53 -04:00 |
Tim Graham
|
3e9aa29871
|
Refs #16850 -- Removed obsolete simplejson support in JSON serializer.
cpython's json version is 2.0.9 so this line is never used.
|
2017-05-20 22:09:08 -04:00 |
Claude Paroz
|
d4d812cb56
|
Refs #28196 -- Removed mentions of bytestrings for EmailMessage
With Python 3, there are no more reasons to special-case EmailMessage
arguments which should be plain strings.
|
2017-05-14 19:42:32 +02:00 |
Claude Paroz
|
59f8118c86
|
Refs #23919 -- Removed force_text() in Python deserializer needed only on Python 2
|
2017-04-27 14:05:25 +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 |
Josh Schneier
|
9b538badb1
|
Refs #23919 -- Removed File's Python 2 proxied methods.
|
2017-04-26 14:44:07 -04:00 |
Jon Dufresne
|
92bc727271
|
Replaced temporary lists used for passing arguments with iterables.
|
2017-04-26 10:54:20 -04:00 |
Michiel Beijen
|
5e8625ba64
|
Renamed "Mac OS X" to "macOS" in docs.
|
2017-04-24 20:16:09 -04:00 |
Simon Charette
|
c0f12a098c
|
Fixed #28109 -- Corrected the stack level of unordered queryset pagination warnings.
Refs #26290.
Thanks Tim for the review.
|
2017-04-22 14:08:57 -04:00 |
kalombo
|
dd00184892
|
Fixed #28042 -- Fixed crash when using a two-tuple in EmailMessage's attachments arg.
|
2017-04-07 18:02:34 -04:00 |
Ingo Klöcker
|
c4536c4a54
|
Fixed #27777 -- Made File.open() work with the with statement (#8310)
Fixed #27777 -- Made File.open() work with the with statement
|
2017-04-07 14:21:06 +02:00 |
Jon Dufresne
|
7bbb5161ea
|
Removed implicit default store_true/false argparse args.
argparse automatically sets the default value for store_true/false
arguments to its opposite.
|
2017-04-01 20:03:56 -04:00 |
Claude Paroz
|
9a9e228321
|
Fixed #27848 -- Prevented crash when attaching a .eml file to a message
Thanks Sébastien Ramage for the report.
|
2017-04-01 16:19:03 +02:00 |
Paul
|
001cf53280
|
Fixed #27952 -- Added translation hint for RegexValidator error message.
|
2017-03-23 11:11:01 -04:00 |
seanfagan
|
325db2a8c3
|
Fixed #27945 -- Clarified that RegexValidator searches with the regex.
|
2017-03-21 12:27:42 -04:00 |
Claude Paroz
|
8346680e1c
|
Refs #27795 -- Removed unneeded force_text calls
Thanks Tim Graham for the review.
|
2017-03-04 18:18:21 +01:00 |
Tim Graham
|
b23d264046
|
Fixed #27887 -- Fixed URLs check crash with namespaced URLs inside non-namespaced URLs.
|
2017-03-03 10:52:20 -05:00 |
Blake Griffith
|
81957086c1
|
Clarified HMAC usage in signing.dumps() docstring.
|
2017-02-28 09:35:41 -05:00 |
Asif Saifuddin Auvi
|
5f3a689f71
|
Imported django.http classes instead of django.http.
|
2017-02-27 14:47:11 -05:00 |
chillaranand
|
e4025563ea
|
Fixed #27836 -- Allowed FileSystemStorage.delete() to remove directories.
|
2017-02-24 16:02:33 -05:00 |
Chris Lamb
|
8d4885ede5
|
Fixed #27874 -- Fixed URL namespace warning (urls.W005) for nested namespaces.
|
2017-02-24 10:13:48 -05:00 |
Vytis Banaitis
|
3dcc351691
|
Refs #23919 -- Used yield from.
|
2017-02-23 20:06:01 -05:00 |
Claude Paroz
|
30c984b3f9
|
Fixed #27868 -- Filtered locale path subdirectories
Thanks Tim Graham for the review.
|
2017-02-23 09:12:20 +01:00 |
Claude Paroz
|
e6065c7b83
|
Fixed #25619 -- Made runserver serve with HTTP 1.1 protocol
Thanks Tim Graham for the review.
|
2017-02-23 09:04:53 +01:00 |
Phil Bazun
|
cc5c1b7568
|
Fixed #27870 -- Cleaned up ManagementUtility.autocomplete().
|
2017-02-22 09:15:50 -05:00 |
Anton Samarchyan
|
5a6f70b428
|
Refs #27656 -- Updated django.core docstring verbs according to PEP 257.
|
2017-02-21 11:58:42 -05:00 |
amalia
|
2f10216f84
|
Fixed #27820 -- Fixed RequestDataTooBig/TooManyFieldsSent crash.
|
2017-02-13 16:19:03 -05:00 |
Tim Graham
|
0595bca221
|
Fixed #27742 -- Reverted "Fixed #24607 -- Serialized natural keys in multi-table inheritance models."
This reverts commit 74a575eb72 as it causes
unexpected migrations and doesn't seem to be the best solution.
|
2017-02-11 06:34:59 -05:00 |
Claude Paroz
|
d4b00c5c24
|
Removed WSGIServer.server_bind() identical to parent version
The method customization was removed in 2ca00faa91 .
|
2017-02-11 11:16:35 +01:00 |
Nadège Michel
|
bece837829
|
Fixed #20238 -- Added threading support to LiveServerTestCase.
|
2017-02-09 19:08:32 -05:00 |
Tim Graham
|
500532c95d
|
Refs #23919 -- Removed default 'utf-8' argument for str.encode()/decode().
|
2017-02-09 09:03:47 -05:00 |
Claude Paroz
|
3a148f958d
|
Refs #27795 -- Removed force_text from the template layer
Thanks Tim Graham for the review.
|
2017-02-07 17:14:02 +01:00 |
Claude Paroz
|
c651331b34
|
Converted usage of ugettext* functions to their gettext* aliases
Thanks Tim Graham for the review.
|
2017-02-07 09:04:04 +01:00 |
Claude Paroz
|
2757209c9d
|
Refs #27795 -- Removed force_text from templatize function
|
2017-02-06 17:35:03 +01:00 |
Tim Graham
|
29f607927f
|
Fixed spelling of "nonexistent".
|
2017-02-03 08:01:45 -05:00 |
Vytis Banaitis
|
8838d4dd49
|
Refs #23919 -- Replaced kwargs.pop() with keyword-only arguments.
|
2017-02-01 11:41:56 -05:00 |
Claude Paroz
|
277a4dd4b4
|
Fixed #27793 -- Used stdlib's ipaddress module to validate IP addresses
Thanks Tim Graham for the review.
|
2017-01-30 14:22:18 +01:00 |
Claude Paroz
|
068cd60366
|
Removed unneeded parentheses in class definitions
|
2017-01-29 18:06:26 +01:00 |
Srinivas Reddy Thatiparthy
|
a6755b29e9
|
Removed obsolete sentence in ManagementUtility docstring.
|
2017-01-28 08:09:42 -05:00 |
Ed Morley
|
751d77cdd9
|
Refs #27537 -- Added default_addr(_ipv6) attributes to runserver command.
|
2017-01-27 13:30:27 -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 |