- 12 Haz, 2015 1 kayıt (commit)
-
-
Carson Gee yazdı
-
- 05 Haz, 2015 1 kayıt (commit)
-
-
Shai Berger yazdı
Found cases where testing code was doing try: whatever except (some excption type): self.fail("exception shouldn't be thrown") replaced it with just whatever as this makes the unexpected errors easier to debug, and the tests would fail just as much and aren't rendered less readable. Thanks Markus Holtermann for review
-
- 07 Nis, 2015 1 kayıt (commit)
-
-
steve yazdı
Thanks Steve Kossouho for the report and original patch.
-
- 25 Mar, 2015 1 kayıt (commit)
-
-
Raúl Cumplido yazdı
-
- 23 Şub, 2015 1 kayıt (commit)
-
-
Aymeric Augustin yazdı
Dropped the DJANGO_TEST_TEMP_DIR environment variable. Before this change, proper removal depended on the developer passing dir=os.environ['DJANGO_TEST_TMP_DIR'] to tempfile functions.
-
- 06 Şub, 2015 1 kayıt (commit)
-
-
Tim Graham yazdı
-
- 24 Kas, 2014 1 kayıt (commit)
-
-
Sergey Fedoseev yazdı
-
- 30 Eki, 2014 1 kayıt (commit)
-
-
Jon Dufresne yazdı
The following are recognized as ending a line: the Unix end-of-line convention '\n', the Windows convention '\r\n', and the old Macintosh convention '\r'. http://www.python.org/dev/peps/pep-0278 Thanks tchaumeny for review.
-
- 21 Mar, 2014 2 kayıt (commit)
-
-
Hans Lawrenz yazdı
Added condition to prevent checking the existence of a file name of a file like object when the name attribute is None. This is necessary because a SpooledTemporaryFile won't exist on the file system or have a name until it has reached its max_size. Also added tests.
-
Tim Graham yazdı
refs #19934.
-
- 20 Şub, 2014 1 kayıt (commit)
-
-
Baptiste Mispelon yazdı
Due to a mixup between text and bytes, iteration over a File instance was broken under Python 3. Thanks to trac user pdewacht for the report and patch.
-
- 03 Ock, 2014 1 kayıt (commit)
-
-
Claude Paroz yazdı
-
- 17 Ara, 2013 1 kayıt (commit)
-
-
Aymeric Augustin yazdı
Added comments in the three empty models.py files that are still needed. Adjusted the test runner to add applications corresponding to test labels to INSTALLED_APPS even when they don't have a models module.
-
- 02 Kas, 2013 1 kayıt (commit)
-
-
Tim Graham yazdı
-
- 27 Eki, 2013 1 kayıt (commit)
-
-
Claude Paroz yazdı
Just moving around some tests to be more logically grouped.
-
- 19 Eki, 2013 1 kayıt (commit)
-
-
Tim Graham yazdı
-
- 18 Eki, 2013 1 kayıt (commit)
-
-
Alasdair Nicol yazdı
-
- 14 Eki, 2013 1 kayıt (commit)
-
-
Ramiro Morales yazdı
Avoids failures on Windows. Refs #8918.
-
- 11 Eki, 2013 1 kayıt (commit)
-
-
Tim Graham yazdı
Thanks leahculver for the suggestion and dc and vajrasky for work on the patch.
-
- 02 Eki, 2013 1 kayıt (commit)
-
-
Kevin Christopher Henry yazdı
- Fixed test that didn't close the files it opened - Caught and handled exception when temp directory cannot be removed
-
- 09 Eyl, 2013 2 kayıt (commit)
-
-
homm yazdı
-
Florian Apolloner yazdı
-
- 06 Eyl, 2013 1 kayıt (commit)
-
-
Christopher Adams yazdı
- TemporaryFile now minimally mocks the API of the Python standard library class tempfile.NamedTemporaryFile to avoid AttributeError exceptions. - The symbol django.core.files.NamedTemporaryFile is actually assigned as a different class on different operating systems. - The bug only occurred if Django is running on Windows, hence why it was hard to diagnose.
-
- 29 Tem, 2013 1 kayıt (commit)
-
-
Claude Paroz yazdı
Should be unneeded with Python 2.7 and up. Added some unicode_literals along the way.
-
- 01 Tem, 2013 1 kayıt (commit)
-
-
Aymeric Augustin yazdı
Refs #20680.
-
- 20 Haz, 2013 1 kayıt (commit)
-
-
Russell Keith-Magee yazdı
Thanks to kux for the report, and Russ Webber for the patch.
-
- 26 Şub, 2013 1 kayıt (commit)
-
-
Florian Apolloner yazdı
-