Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
django
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
django
Commits
5c412dd8
Kaydet (Commit)
5c412dd8
authored
Nis 29, 2015
tarafından
Antonio Garcia-Dominguez
Kaydeden (comit)
Tim Graham
May 04, 2015
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixes #24727 -- Prevented ClearableFileInput from masking exceptions on Python 2
üst
81f76517
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
0 deletions
+27
-0
widgets.py
django/forms/widgets.py
+8
-0
test_widgets.py
tests/forms_tests/tests/test_widgets.py
+19
-0
No files found.
django/forms/widgets.py
Dosyayı görüntüle @
5c412dd8
...
...
@@ -377,6 +377,14 @@ class ClearableFileInput(FileInput):
"""
Return whether value is considered to be initial value.
"""
# hasattr() masks exceptions on Python 2.
if
six
.
PY2
:
try
:
getattr
(
value
,
'url'
)
except
AttributeError
:
return
False
else
:
return
bool
(
value
)
return
bool
(
value
and
hasattr
(
value
,
'url'
))
def
get_template_substitution_values
(
self
,
value
):
...
...
tests/forms_tests/tests/test_widgets.py
Dosyayı görüntüle @
5c412dd8
...
...
@@ -1345,6 +1345,25 @@ class ClearableFileInputTests(TestCase):
self
.
assertIn
(
'my<div>file'
,
output
)
self
.
assertNotIn
(
'my<div>file'
,
output
)
def
test_html_does_not_mask_exceptions
(
self
):
"""
A ClearableFileInput should not mask exceptions produced while
checking that it has a value.
"""
@python_2_unicode_compatible
class
FailingURLFieldFile
(
object
):
@property
def
url
(
self
):
raise
RuntimeError
(
'Canary'
)
def
__str__
(
self
):
return
'value'
widget
=
ClearableFileInput
()
field
=
FailingURLFieldFile
()
with
self
.
assertRaisesMessage
(
RuntimeError
,
'Canary'
):
widget
.
render
(
'myfile'
,
field
)
def
test_clear_input_renders_only_if_not_required
(
self
):
"""
A ClearableFileInput with is_required=False does not render a clear
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment