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
c278e56b
Kaydet (Commit)
c278e56b
authored
May 17, 2013
tarafından
Eric Urban
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Corrected documentation on the constructor arguments of MultiPartParser
üst
f54a8880
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
multipartparser.py
django/http/multipartparser.py
+6
-5
No files found.
django/http/multipartparser.py
Dosyayı görüntüle @
c278e56b
...
...
@@ -48,9 +48,9 @@ class MultiPartParser(object):
The standard ``META`` dictionary in Django request objects.
:input_data:
The raw post data, as a file-like object.
:upload_handler:
A
n UploadHandler instance that performs
operations on the uploaded
data.
:upload_handler
s
:
A
list of UploadHandler instances that perform
operations on the uploaded
data.
:encoding:
The encoding with which to treat the incoming data.
"""
...
...
@@ -113,14 +113,15 @@ class MultiPartParser(object):
if
self
.
_content_length
==
0
:
return
QueryDict
(
''
,
encoding
=
self
.
_encoding
),
MultiValueDict
()
# See if
the handler will want to
take care of the parsing.
# This allows overriding everything if
somebody wants it
.
# See if
any of the handlers
take care of the parsing.
# This allows overriding everything if
need be
.
for
handler
in
handlers
:
result
=
handler
.
handle_raw_input
(
self
.
_input_data
,
self
.
_meta
,
self
.
_content_length
,
self
.
_boundary
,
encoding
)
#Check to see if it was handled
if
result
is
not
None
:
return
result
[
0
],
result
[
1
]
...
...
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